Documentation: gdutils¶
A collection of geodata utility tools.
Available modules:
gdutils.datamine: apythonmodule for mining and listing data sources.gdutils.dataqa: apythonmodule for analyzing and comparing data for QA purposes.gdutils.extract: a script andpythonmodule for extracting tabular data for data science (data wrangling) purposes. A user-friendly, lite wrapper ofgeopandas.
gdutils.datamine¶
- Provides
- A
pythonmodule for mining and listing data sources.
- A
Metadata¶
| Module: | gdutils.datamine |
|---|---|
| Filename: | datamine.py |
| Author: | @KeiferC |
| Date: | 27 July 2020 |
| Version: | 1.1.0 |
| Description: | Module for data mining |
| Contributors: | @InnovativeInventor |
Documentation¶
Documentation for the datamine module can be found as docstrings.
Run import gdutils.datamine; help(gdutils.datamine) to view documentation.
$ python
>>> import gdutils.datamine; help(gdutils.datamine)
Additionally, documentation can be found on Read the Docs.
gdutils.dataqa¶
- Provides
- A
pythonmodule containing data quality assurance functions.
- A
Metadata¶
| Module: |
|
|---|---|
| Filename: | |
| Author: | |
| Date: | 14 August 2020 |
| Version: | 1.0.0 |
| Description: | Module for data quality assurance |
| Dependencies: |
|
Documentation¶
Documentation for the dataqa module can be found as docstrings.
Run import gdutils.dataqa; help(gdutils.dataqa) to view documentation.
$ python
>>> import gdutils.dataqa; help(gdutils.dataqa)
Additionally, documentation can be found on Read the Docs.
gdutils.extract¶
- Provides
A class
ExtractTable(pronounced “extractable”) for extracting subtables from given tabular data. Can manage filetypes.csv,.xlsx,.geojson,.shp, etc.A command-line script that can be used to
- convert input filetype to output filetype (ex.
.shp->.csv); - output tabular data reindexed with a specified column label; or
- output subtables from input tabular data.
- convert input filetype to output filetype (ex.
Metadata¶
| Module: |
|
|---|---|
| Filename: | |
| Author: | |
| Date: | 06 July 2020 |
| Version: | 1.0.0 |
| Description: | Script and module to extract subtables from given tabular data |
| Dependencies: |
|
Documentation¶
Documentation for the extract module can be found as docstrings.
Run import modules.extract; help(modules.extract) to view documentation.
$ python
>>> import gdutils.extract; help(gdutils.extract)
Additionally, documentation can be found on Read the Docs.