You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -190,11 +190,12 @@ The tool works in two stages. First, it calculates the full set of sheets that n
190
190
In the second stage, it retiles the affected area. It uses the pull list to create a temporary virtual raster (`.vrt`), generates new base tiles for the affected region, and then reconstructs the upper-level tiles by pulling existing, unaffected tiles from the PMTiles source.
-`--retile-list-file`: File containing the list of sheets to retile. (Required)
197
197
-`--bounds-file`: GeoJSON file containing the list of available sheets and their geographic bounds. (Required)
198
+
-`--dummy-bounds-file`: GeoJSON file containing geographic bounds of areas that need to be updated. These areas might not have any new sheets. (Optional)
198
199
-`--max-zoom`: Maximum zoom level to create tiles for. Defaults to the max zoom from the source if `--from-source` is provided, otherwise it is required.
199
200
-`--tiffs-dir`: Directory where the GeoTIFFs are located. (Required if not in pull-list generation mode)
200
201
-`--tiles-dir`: Directory where the tiles will be created. (Required if not in pull-list generation mode)
parser.add_argument('--retile-list-file', required=True, help='File containing list of sheets to retile')
383
416
parser.add_argument('--bounds-file', required=True, help='Geojson file containing list of available sheets and their georaphic bounds')
417
+
parser.add_argument('--dummy-bounds-file', required=False, help='Geojson file containing georaphic bounds of areas that need to be updated, these areas might not have any new sheets')
384
418
parser.add_argument('--max-zoom', type=int, help='Maximum zoom level to create tiles for, needed only when --from-source is not provided')
0 commit comments