OSMTileLoader
OSM Tile Loader.
Download raster tiles from user specified tile server, like listed in [1]. Loader finds x, y coordinates [2] for specified area and downloads tiles. Address is built with schema {tile_server_url}/{zoom}/{x}/{y}.{resource_type}
References
Source code in srai/loaders/osm_loaders/osm_tile_loader.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
|
__init__
__init__(tile_server_url: str, zoom: int, verbose: bool = False, resource_type: str = 'png', auth_token: Optional[str] = None, data_collector: Optional[Union[str, DataCollector]] = None, storage_path: Optional[Union[str, Path]] = None) -> None
Initialize TileLoader.
PARAMETER | DESCRIPTION |
---|---|
tile_server_url |
url of tile server, without z, x, y parameters
TYPE:
|
zoom |
zoom level [1]
TYPE:
|
verbose |
should print logs. Defaults to False.
TYPE:
|
resource_type |
file extension. Added to the end of url. Defaults to "png".
TYPE:
|
auth_token |
auth token. Added as access_token parameter to request. Defaults to None.
TYPE:
|
data_collector |
DataCollector object or
TYPE:
|
storage_path |
path to save data, used with SavingDataCollector. Defaults to None.
TYPE:
|
Source code in srai/loaders/osm_loaders/osm_tile_loader.py
get_tile_by_x_y
Download single tile from tile server. Return tile processed by DataCollector.
PARAMETER | DESCRIPTION |
---|---|
x(int) |
x tile coordinate
|
y(int) |
y tile coordinate
|
idx |
id of tile, if non created as x_y_self.zoom
TYPE:
|
Source code in srai/loaders/osm_loaders/osm_tile_loader.py
load
load(area: Union[BaseGeometry, Iterable[BaseGeometry], gpd.GeoSeries, gpd.GeoDataFrame]) -> gpd.GeoDataFrame
Return all tiles of region.
PARAMETER | DESCRIPTION |
---|---|
area |
Area for which to download objects.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
gpd.GeoDataFrame
|
gpd.GeoDataFrame: Pandas of tiles for each region in area transformed by DataCollector |