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
{{ message }}
This repository was archived by the owner on Jun 9, 2018. It is now read-only.
gdal2tiles_parallel.py line 1543-1544 has incorrect values for the bounding box: <BoundingBox minx="%(south).14f" miny="%(west).14f" maxx="%(north).14f" maxy="%(east).14f"/> <Origin x="%(south).14f" y="%(west).14f"/>
Thanks, I will check it out. This isn't an area I changed from the regular gdal2tiles script included with Gdal, so it is possible the same bug exists there as well.
gdal2tiles_parallel.py line 1543-1544 has incorrect values for the bounding box:
<BoundingBox minx="%(south).14f" miny="%(west).14f" maxx="%(north).14f" maxy="%(east).14f"/> <Origin x="%(south).14f" y="%(west).14f"/>
shoudld be:
<BoundingBox minx="%(west).14f" miny="%(south).14f" maxx="%(east).14f" maxy="%(north).14f"/> <Origin x="%(west).14f" y="%(south).14f"/>
The text was updated successfully, but these errors were encountered: