Utils
Module containing different utility functions.
Those are either used internally by other modules, or can be used to simplify spatial data processing.
download_file
Download a file with progress bar.
PARAMETER | DESCRIPTION |
---|---|
url |
URL to download.
TYPE:
|
fname |
File name.
TYPE:
|
chunk_size |
Chunk size.
TYPE:
|
Source: https://gist.github.com/yanqd0/c13ed29e29432e3cf3e7c38467f42f51
Source code in srai/utils/download.py
geocode_to_region_gdf
Geocode a query to the regions_gdf
unified format.
This functions is a wrapper around the ox.geocode_to_gdf
[1] function from the osmnx
library.
For parameters description look into the source documentation.
Source code in srai/utils/geocode.py
buffer_geometry
Buffer geometry by a given radius in meters.
Projects geometry into azimuthal projection before applying buffer and then changes values back to WGS84 coordinates.
Doesn't work with polygons covering the whole earth (from -180 to 180 longitude).
PARAMETER | DESCRIPTION |
---|---|
geometry |
Geometry to buffer.
TYPE:
|
meters |
Radius distance in meters.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
BaseGeometry
|
Buffered geometry.
TYPE:
|
Source code in srai/utils/geometry.py
flatten_geometry
Flatten all geometries into a list of BaseGeometries.
Source code in srai/utils/geometry.py
flatten_geometry_series
Flatten all geometries from a series into a list of BaseGeometries.
Source code in srai/utils/geometry.py
remove_interiors
Close polygon holes by limitation to the exterior ring.
PARAMETER | DESCRIPTION |
---|---|
polygon |
Polygon to close.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Polygon
|
Closed polygon.
TYPE:
|
Source code in srai/utils/geometry.py
merge_disjointed_gdf_geometries
Merges geometries from a GeoDataFrame into a single MultiPolygon.
Input geometries are expected to be disjointed.
PARAMETER | DESCRIPTION |
---|---|
gdf |
GeoDataFrame with geometries to merge.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
MultiPolygon
|
Merged polygon
TYPE:
|
Source code in srai/utils/merge.py
merge_disjointed_polygons
Merges all polygons into a single MultiPolygon.
Input polygons are expected to be disjointed.
PARAMETER | DESCRIPTION |
---|---|
polygons |
List of polygons to merge
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
MultiPolygon
|
Merged polygon
TYPE:
|