gdal2tilesp icon indicating copy to clipboard operation
gdal2tilesp copied to clipboard

Enhancements to tile cutter for parallelism and image format support

Results 6 gdal2tilesp issues
Sort by recently updated
recently updated
newest added

I found your tool for gdal2tilesp.py from this [Stack Overflow post](http://gis.stackexchange.com/questions/63024/gdal2tiles-maptiles-from-bsb-kap-are-switched), and it immediately helped me. I have used [gdal2tiles.py](https://github.com/OSGeo/gdal/blob/trunk/gdal/swig/python/scripts/gdal2tiles.py) in the past and found the upgrade to using XYZ...

The script works really faster, but for overview tiles there is a problem that not all tiles are being generated - there are holes in preview tiles mosaic: ![holes](https://user-images.githubusercontent.com/16765288/75247822-e3d80800-57e3-11ea-880c-7d05cb0e19c0.jpeg) when...

This repo hasn't been updated in some time so it's possible there will be no fix for this but, when running `gdal2tilesp.py`, I get the following error at the end...

Instead of calling it from the command line I want to call it directly with Python like: ``` import gdal2tilesp args = ['gdal2tiles', '-w', 'none', '-r', 'cubic', '-v', '--zoom', 'my_img.tf',...

This script is great, but it's missing an option for setting the quality of jpeg that's being generated. Also unclear what quality is currently being used. Also, when creating jpegs,...

If two processes are making the same directories, there is a race condition that needs to be handled. The race condition is when the tile directory does not exist: 1)...