explode_gpd
Split multi-part geospatial geometries into individual components to simplify analysis or processing. Input a geospatial file path and optionally save the result to a specified output location.
Instructions
Split multi-part geometries into single parts using geopandas.explode.
Args:
gdf_path: Path to the geospatial file.
output_path: Optional path to save the result.
Returns:
Dictionary with status, message, and output info.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gdf_path | Yes | ||
output_path | No |
Input Schema (JSON Schema)
{
"properties": {
"gdf_path": {
"title": "Gdf Path",
"type": "string"
},
"output_path": {
"default": null,
"title": "Output Path",
"type": "string"
}
},
"required": [
"gdf_path"
],
"title": "explode_gpdArguments",
"type": "object"
}