Skip to content

Commit e529992

Browse files
committed
update docs
1 parent 5d2331f commit e529992

File tree

4 files changed

+68
-21
lines changed

4 files changed

+68
-21
lines changed

docs/changelog.rst

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Release Notes
33
===============
44

5+
Version 0.0.3
6+
---------------
7+
8+
* **Release date:** 23-Oct-2024.
9+
10+
* **Features:** Introduced enhanced functionality for GIS file operations. The :class:`GeoAnalyze.File` class has now reached a stable and mature stage.
11+
12+
513
Version 0.0.2
614
---------------
715

docs/conf.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
import sys
3-
import sphinx_rtd_theme
3+
44
if os.path.abspath('..') in sys.path:
55
pass
66
else:
@@ -37,10 +37,6 @@
3737

3838
html_theme = 'sphinx_rtd_theme'
3939

40-
html_theme_path = [
41-
sphinx_rtd_theme.get_html_theme_path()
42-
]
43-
4440
html_static_path = [
4541
'_static'
4642
]

docs/introduction.rst

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
1-
=============
1+
==============
22
Introduction
3-
=============
3+
==============
4+
5+
GeoAnalyze is a Python package designed to streamline geoprocessing by handling internal complexities and intermediate steps. Conceptualized and launched on October 10, 2024, this package is tailored for users with limited geospatial processing experience, allowing them to focus on desired outputs. The package is still in the planning stage, but active development is ongoing, with exciting new features planned for future releases.
46

7+
Leveraging open-source geospatial Python modules, GeoAnalyze aims to empower users by providing high-level geoprocessing tools with fewer lines of code.
58

6-
GeoAnalyze is a Python package designed to streamline geoprocessing by handling internal complexities and intermediate steps. Conceptualized and launched on October 10, 2024, this package is tailored for users with limited geocoding experience, focusing on desired outputs. Active development is ongoing, with exciting new features planned for future releases. Leveraging open-source geospatial modules of Python, the goal of GeoAnalyze is to empower users by providing high-level geoprocessing tools with fewer lines of code. Currently, the package is in the planning stage and offers the following file operation features for testing purposes:
79

10+
File Operations (Irrespective of Extensions)
11+
----------------------------------------------
812

9-
* **File operations**
13+
When managing GIS files, each main file is often associated with several auxiliary files. For example, a `.shp` file (shapefile) is commonly accompanied by `.cpg`, `.dbf`, `.prj`, and `.shx` files, which are necessary for the shapefile to function correctly. In geospatial processing, these associated files must be handled together to prevent errors or data loss. GeoAnalyze simplifies this process by ensuring that any operation performed on a main file automatically includes its associated auxiliary files, making file management seamless and error-free. The package offers the following file operation features:
1014

11-
- Deleting files of the same name in a folder, irrespective of extensions.
12-
- Transferring files of the same name, irrespective of extensions, from the source folder to the destination folder.
15+
* Deleting files in a folder.
16+
* Transferring files from the source folder to the destination folder.
17+
* Renaming files in a folder.
18+
* Copying files from the source folder and renames them in the destination folder.
19+
* Extracting files with the same extension from a folder.

docs/quickstart.rst

+46-10
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,70 @@
22
Quickstart
33
============
44

5-
This guide provides a quick overview to get started with :mod:`GeoAnalyze`.
5+
This guide provides a quick overview to help you get started with the :mod:`GeoAnalyze`.
66

77

88
Verify Installation
99
---------------------
10-
Ensure successful installation by running the following commands:
10+
11+
To verify installation, import the module and initialize the :class:`GeoAnalyze.File` class using the following code. If no errors are raised, the installation has been successful.
12+
1113

1214
.. code-block:: python
1315
1416
import GeoAnalyze
1517
file = GeoAnalyze.file()
1618
1719
18-
Delete File
19-
-------------
20-
Deleting files with the same name in a folder, irrespective of extensions, if the file exists.
20+
Performing File Operations
21+
----------------------------
22+
23+
In geospatial processing, a shapefile such as `original.shp` typically has associated files like `original.cpg`, `original.dbf`, `original.prj`, and `original.shx`. These files are critical for the shapefile to function properly. Below are examples of common file operations that can be performed on a shapefile and its associated files.
24+
25+
26+
Renaming Files
27+
^^^^^^^^^^^^^^^^
28+
29+
To rename `original.shp` and its associated files, you can use the following code. This ensures that all related files are renamed consistently.
2130

2231
.. code-block:: python
2332
24-
file.delete_by_name(
33+
file.name_change(
2534
folder_path=r"C:\Users\Username\Folder",
26-
file_names=['test']
35+
rename_map={'original': 'rename'}
2736
)
2837
29-
Expected output:
38+
39+
40+
Transferring Files
41+
^^^^^^^^^^^^^^^^^^^^
42+
43+
To move the renamed shapefile `rename.shp` and its associated files from the source folder to the destination folder, the following code can be used. This will ensure the specified files are transferred correctly based on the provided names.
3044

31-
.. code-block:: text
45+
.. code-block:: python
46+
47+
file.transfer_by_name(
48+
src_folder=r"C:\Users\Username\SRC_Folder",
49+
dst_folder=r"C:\Users\Username\DST_Folder",
50+
file_names=['rename']
51+
)
52+
53+
54+
Deleting files
55+
^^^^^^^^^^^^^^^^^
56+
57+
To delete the shapefile `rename.shp` and all its associated files from a folder, use the following code.
58+
59+
.. code-block:: python
60+
61+
file.delete_by_name(
62+
folder_path=r"C:\Users\Username\DST_Folder",
63+
file_names=['rename']
64+
)
65+
66+
67+
68+
3269
33-
"List of deleted files: ['test.cpg', 'test.dbf', 'test.prj', 'test.shp', 'test.shx']."
3470
3571

0 commit comments

Comments
 (0)