Esri / raster-tiles-compactcache

Compact Cache V2 is used by ArcGIS to store raster tiles. The bundle file structure is very simple and optimized for quick access, resulting in improved performance over alternative formats.
Apache License 2.0
60 stars 27 forks source link

Sample code to extract tiles #7

Open ltbam opened 5 years ago

ltbam commented 5 years ago

Hello, Do you have a python example to do the inverse, read a bundle and write single tiles on disc?

Thank you. Cheers

ThomasHalwax commented 4 years ago

@ltbam We have created a nodejs module compact-cache-bundle that can read bundle files. The ‚how to’ example reads a given bundle and extracts the tiles.

ltbam commented 4 years ago

@ThomasHalwax Thank you for the advice! I've used your doc to translate ESRI Tile GPKG to Tile Geopackages on this fork: https://github.com/geoadmin/geopackage-python

thanks a lot.