dissolve_gpd
Simplify and merge geospatial features by specified attributes to reduce complexity in GIS datasets. Ideal for integrating overlapping geometries into unified shapes for streamlined analysis.
Instructions
Dissolve geometries by attribute using geopandas.dissolve.
Args:
gdf_path: Path to the geospatial file.
by: Column to dissolve by (optional).
output_path: Optional path to save the result.
Returns:
Dictionary with status, message, and output info.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
by | No | ||
gdf_path | Yes | ||
output_path | No |
Input Schema (JSON Schema)
{
"properties": {
"by": {
"default": null,
"title": "By",
"type": "string"
},
"gdf_path": {
"title": "Gdf Path",
"type": "string"
},
"output_path": {
"default": null,
"title": "Output Path",
"type": "string"
}
},
"required": [
"gdf_path"
],
"title": "dissolve_gpdArguments",
"type": "object"
}