mansueto-institute / cloudtile

Converting geospatial file formats to vectortile files
GNU General Public License v3.0
2 stars 2 forks source link

Multi-zoom convert from `.fgb` to `.mbtiles` #13

Closed manmartgarc closed 1 year ago

manmartgarc commented 1 year ago

The user might want to transform a single .fgb file into multiple .mbtiles files at different zoom levels. Currently, the CLI accepts a min_zoom and a max_zoom parameters which are used for this conversion. However, it could also take ranges of parameters in the form of tuple pairs as in [(8, 11), (11, 12), (13, 14)] which indicates: from a single .fgb files, create three different .mbtiles files at with zoom levels 8 to 11, 11 to 12, and 13 to 14.

Since these operations are independent, they can be submitted simultaneously to the ECS scheduler without any issues.

manmartgarc commented 1 year ago

Decided to not pursue this