kylebarron / usgs-topo-tiler

Python package to read Web Mercator map tiles from USGS Historical Topographic Maps
https://kylebarron.dev/usgs-topo-mosaic
MIT License
77 stars 3 forks source link

Still missing quads #7

Closed kylebarron closed 4 years ago

kylebarron commented 4 years ago

https://kylebarron.dev/usgs-topo-mosaic/#11.01/44.4474/-71.6217

image

This is after creating a mosaic with check_exists

kylebarron commented 4 years ago

It turns out that this is because not all historical topo maps are 7.5'x7.5'.

In this particular case, this is a 7.5'x15' map.

NH_Lancaster_329897_1982_25000

So it wasn't coming up on the metadata search because I was including 7.5'x7.5' as part of the query.

The best way around this might be to use the bulk metadata export: https://s3.console.aws.amazon.com/s3/buckets/prd-tnm/StagedProducts/Maps/Metadata/?region=us-west-2&tab=overview

kylebarron commented 4 years ago

Fixed by opening up to arbitrary map scales, and no longer constricted to 7.5'x7.5' quads.