base
loaders._base ¶
Base class for loaders.
Loader ¶
Bases: ABC
Abstract class for loaders.
load ¶
abstractmethod
Load data for a given area.
PARAMETER | DESCRIPTION |
---|---|
*args
|
Positional arguments dependating on a specific loader.
TYPE:
|
**kwargs
|
Keyword arguments dependating on a specific loader.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
GeoDataFrame
|
GeoDataFrame with the downloaded data. |
Source code in srai/loaders/_base.py
prepare_area_gdf_for_loader ¶
prepare_area_gdf_for_loader(
area: Union[
BaseGeometry, Iterable[BaseGeometry], gpd.GeoSeries, gpd.GeoDataFrame
],
) -> gpd.GeoDataFrame
Prepare an area for the loader.
Loader expects a GeoDataFrame input, but users shouldn't be limited by this requirement. All Shapely geometries will by transformed into GeoDataFrame with proper CRS.
PARAMETER | DESCRIPTION |
---|---|
area
|
Area to be parsed into GeoDataFrame.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
GeoDataFrame
|
gpd.GeoDataFrame: Sanitized GeoDataFrame. |