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.
The user might want to transform a single
.fgb
file into multiple.mbtiles
files at different zoom levels. Currently, the CLI accepts amin_zoom
and amax_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.