AdministrativeBoundaryRegionalizer
Bases: Regionalizer
AdministrativeBoundaryRegionalizer.
Administrative boundary regionalizer allows the given geometries to be divided
into boundaries from OpenStreetMap on a given admin_level
[1].
Downloads those boundaries online using overpass
and osmnx
libraries.
Note: offline .pbf loading will be implemented in the future. Note: option to download historic data will be implemented in the future.
Source code in srai/regionalizers/administrative_boundary_regionalizer.py
23 24 25 26 27 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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 |
|
__init__
__init__(admin_level: int, clip_regions: bool = True, return_empty_region: bool = False, prioritize_english_name: bool = True, toposimplify: Union[bool, float] = True, remove_artefact_regions: bool = True) -> None
Init AdministrativeBoundaryRegionalizer.
PARAMETER | DESCRIPTION |
---|---|
admin_level |
OpenStreetMap admin_level value. See [1] for detailed description of available values.
TYPE:
|
clip_regions |
Whether to clip regions using a provided mask. Turning it off can an be useful when trying to load regions using list a of points. Defaults to True.
TYPE:
|
return_empty_region |
Whether to return an empty region to fill remaining space or not. Defaults to False.
TYPE:
|
prioritize_english_name |
Whether to use english area name if available as a region id first. Defaults to True.
TYPE:
|
toposimplify |
Whether to simplify topology to reduce
geometries size or not. Value is passed to
TYPE:
|
remove_artefact_regions |
Whether to remove small regions barely intersecting queried area. Turning it off can sometimes load unnecessary boundaries that touch on the edge. It removes regions that intersect with an area smaller than 1% of total self. Takes into consideration if provided query GeoDataFrame contains points and then skips calculating area when intersects any point. Defaults to True.
TYPE:
|
RAISES | DESCRIPTION |
---|---|
ValueError
|
If admin_level is outside available range (1-11). See [2] for list of
values with |
References
Source code in srai/regionalizers/administrative_boundary_regionalizer.py
transform
Regionalize a given GeoDataFrame.
Will query Overpass [1] server using overpass
[2] library for closed administrative
boundaries on a given admin_level and then download geometries for each relation using
osmnx
[3] library.
If prioritize_english_name
is set to True
, method will try to extract the name:en
tag
first before resorting to the name
tag. If boundary doesn't have a name
tag, an id
will be used.
Before returning downloaded regions, a topology is built and can be simplified to reduce
size of geometries while keeping neighbouring regions together without introducing gaps.
Topojson
library [4] is used for this operation.
Additionally, an empty region with name EMPTY
can be introduced if returned regions do
not fully cover a clipping mask.
PARAMETER | DESCRIPTION |
---|---|
gdf |
GeoDataFrame to be regionalized. Will use this list of geometries to crop resulting regions.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
gpd.GeoDataFrame
|
gpd.GeoDataFrame: GeoDataFrame with the regionalized data cropped using input GeoDataFrame. |
RAISES | DESCRIPTION |
---|---|
RuntimeError
|
If simplification can't preserve a topology. |
References
Source code in srai/regionalizers/administrative_boundary_regionalizer.py
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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
|