dissolve

eolab.georastertools.processing.vector.dissolve(geoms: GeoDataFrame | Path | str, output: Path | str | None = None, driver: str = 'GeoJSON') GeoDataFrame[source]

Dissolves all geometries in one

Parameters:
  • geoms (str or Path or gpd.GeoDataFrame) – Filename of the vector data (if str) or GeoDataFrame

  • output (str or Path, optional, default=None) – File where to save the dissolved geoms If None, nothing written to disk (only in memory)

  • driver (str, optional, default=GeoJSON) – Driver to write the output

Returns:

The dissolved geometries

Return type:

gpd.GeoDataFrame