polyclean 0.1.9

Creator: railscoder56

Last updated:

Add to Cart

Description:

polyclean 0.1.9

polyclean
Clean up geospatial polygon datasets.
This package provides utilities for cleaning up messy polygon data in geospatial datasets. It aims to provide solutions to common issues such as holes, gaps, and overlaps. Generally, functions expect a geopandas.GeoDataFrame as input and will return one as well. Polygons are thus always passed around as data frames, making it easy to translate them to and from commonly used geospatial file formats (e.g. OGC GeoPackage, ESRI Shapefile). This has the added benefit of mimicking the way vector workflows are done in QGIS or ArcGIS, making the package more intuitive to use (hopefully).
This package relies heavily on Geopandas and Shapely, so understanding how those packages handle vector data will aid with understanding polyclean utilities.
Installation
UNIX-like (Linux, MacOS)
pip install polyclean
This should install the package and all necessary dependencies.
Windows
Make sure you have the following packages installed first:

Fiona >= 1.8
GDAL >= 3.2

Any recent version (compatible with Shapely >= 1.8) should suffice.
Examples
Fill Holes
Holes in polygons can be filled in based on area. To fill in all holes in a dataset, set the threshold value to a very large value (e.g. 1e6).

Fill Gaps
Gaps between polygons can be identified and eliminated. A new field called gap is created, with gap polygons given a value of 1 and non-gap polygons (i.e. the original polygons) given the value NaN. These gaps can be automatically removed by folding them into the polygon with which they share the longest edge. This mimics the functionality of the the ArcGIS Eliminate tool.

Resolve Overlaps
Overlapping regions between polygons can be identified, extracted, and, optionally, flattened.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.