gdal2tils.py: fix zoom placeholders (#12220)

pull/23/head
Vitor Henrique 2024-02-09 10:57:01 -03:00 committed by GitHub
parent d79a1667e3
commit b7ba524f2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -3,10 +3,10 @@
> Generate TMS or XYZ tiles for a raster dataset.
> More information: <https://gdal.org/programs/gdal2tiles.html>.
- Generate TMS tiles for the zoom levels 2-5 of a raster dataset:
- Generate TMS tiles for the zoom levels 2 to 5 of a raster dataset:
`gdal2tiles.py --zoom={{2-5}} {{path/to/input.tif}} {{path/to/output_directory}}`
`gdal2tiles.py --zoom 2-5 {{path/to/input.tif}} {{path/to/output_directory}}`
- Generate XYZ tiles for the zoom levels 2-5 of a raster dataset:
- Generate XYZ tiles for the zoom levels 2 to 5 of a raster dataset:
`gdal2tiles.py --zoom={{2-5}} --xyz {{path/to/input.tif}} {{path/to/output_directory}}`
`gdal2tiles.py --zoom 2-5 --xyz {{path/to/input.tif}} {{path/to/output_directory}}`