basemapper.py¶
Thread to handle downloads for Queue.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dest
|
str
|
The filespec of the tile cache. |
required |
mirrors
|
list
|
The list of mirrors to get imagery. |
required |
tiles
|
list
|
The list of tiles to download. |
required |
Source code in osm_merge/fieldwork/basemapper.py
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 |
|
options: show_source: false heading_level: 3
Bases: object
Basemapper parent class.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
boundary
|
Union[str, BytesIO]
|
A BBOX string or GeoJSON provided as BytesIO object of the AOI. The GeoJSON can contain multiple geometries. |
required |
base
|
str
|
The base directory to cache map tile in |
required |
source
|
str
|
The upstream data source for map tiles |
required |
Returns:
Type | Description |
---|---|
BaseMapper
|
An instance of this class |
Source code in osm_merge/fieldwork/basemapper.py
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 |
|
customTMS ¶
customTMS(url, is_oam=False, is_xy=False)
Add a custom TMS URL to the list of sources.
The url must end in %s to be replaced with the tile xyz values.
Format examples: https://basemap.nationalmap.gov/ArcGIS/rest/services/USGSTopo/MapServer/tile/{z}/{y}/{x} https://maps.nyc.gov/xyz/1.0.0/carto/basemap/%s https://maps.nyc.gov/xyz/1.0.0/carto/basemap/{z}/{x}/{y}.jpg
The method will replace {z}/{x}/{y}.jpg with %s
Parameters:
Name | Type | Description | Default |
---|---|---|---|
url
|
str
|
The URL string |
required |
is_oam
|
bool
|
Is a URL for OAM |
False
|
is_xy
|
bool
|
Swap the x and y for the provider --> 'zxy' |
False
|
Source code in osm_merge/fieldwork/basemapper.py
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 |
|
getFormat ¶
getFormat()
Get the image format of the map tiles.
Returns:
Type | Description |
---|---|
str
|
the upstream source for map tiles. |
Source code in osm_merge/fieldwork/basemapper.py
350 351 352 353 354 355 356 |
|
getTiles ¶
getTiles(zoom)
Get a list of tiles for the specified zoom level.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
zoom
|
int
|
The Zoom level of the desired map tiles. |
required |
Returns:
Name | Type | Description |
---|---|---|
int |
int
|
The total number of map tiles downloaded. |
Source code in osm_merge/fieldwork/basemapper.py
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 |
|
tileExists ¶
tileExists(tile)
See if a map tile already exists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tile
|
MapTile
|
The map tile to check for the existence of |
required |
Returns:
Type | Description |
---|---|
bool
|
Whether the tile exists in the map tile cache |
Source code in osm_merge/fieldwork/basemapper.py
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
|
options: show_source: false heading_level: 3
Create a basemap with given parameters.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
boundary
|
str | BytesIO
|
The boundary for the area you want. |
None
|
tms
|
str
|
Custom TMS URL. |
None
|
xy
|
bool
|
Swap the X & Y coordinates when using a custom TMS if True. |
False
|
outfile
|
str
|
Output file name for the basemap. |
None
|
zooms
|
str
|
The Zoom levels, specified as a range (e.g., "12-17") or comma-separated levels (e.g., "12,13,14"). |
'12-17'
|
outdir
|
str
|
Output directory name for tile cache. |
None
|
source
|
str
|
Imagery source, one of ["esri", "bing", "topo", "usgs", "google", "oam", "custom"] (default is "esri"). |
'esri'
|
append
|
bool
|
Whether to append to an existing file |
False
|
Returns:
Type | Description |
---|---|
None
|
None |
Source code in osm_merge/fieldwork/basemapper.py
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 |
|
options: show_source: false heading_level: 3
Helper function to get the tile id from a tile in xyz (zyx) directory structure.
TMS typically has structure z/y/x.png If the --xy flag was used previously, the TMS was downloaed into directories of z/y/x structure from their z/x/y URL.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filepath
|
Union[Path, str]
|
The path to tile image within the xyz directory. |
required |
Returns:
Name | Type | Description |
---|---|---|
int |
int
|
The globally defined tile id from the xyz definition. |
Source code in osm_merge/fieldwork/basemapper.py
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 |
|
options: show_source: false heading_level: 3