0

I want to generate tiles in custom size but can't find a tiler that can do it.
In gdal2tiles I cant find the size option.
TileMapper costs too much.

Is there any opensource utils that can generate tiles in custom sizes?

JGH
  • 41,794
  • 3
  • 43
  • 89
Kliver Max
  • 2,032
  • 2
  • 31
  • 58
  • You could just modify the script - change the init values: https://github.com/OSGeo/gdal/blob/trunk/gdal/swig/python/scripts/gdal2tiles.py – BradHards Sep 11 '17 at 10:26

1 Answers1

3

You can use the gdal_retile.py tool with the option -levels 1:

mkdir image_tiles
gdal_retile.py -v -r bilinear -levels 1 -ps 512 512 -co "TILED=YES"  -targetDir image_tiles big_input_image.tif

For more Information see: http://www.gdal.org/gdal_retile.html

Your can find futher solutions for QGIS, ArcGIS and gdal_translate under the following link: How to split a .tif image into several tiles?

Saleika
  • 1,320
  • 12
  • 18