Calculate geometry
calculate_geometry(geodataframe)
Calculate the length or area of the given geometries.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
geodataframe |
GeoDataFrame
|
Geometries to be calculated. |
required |
Returns:
Name | Type | Description |
---|---|---|
calculated_gdf |
GeoDataFrame
|
Geometries and calculated values. |
Source code in eis_toolkit/vector_processing/calculate_geometry.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
|