-
I'm looking for a way to extract all the raster tiles in the terrarium PMTiles archive to a hierarchical directory structure for processing. I have yet to find a way to accomplish this via the command line. Any suggestions would be greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Answered by
bdon
Jan 14, 2025
Replies: 1 comment 6 replies
-
Maybe try tile-join with the |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Having the tiles all on S3 is one way but you're paying a latency overhead requesting them each at once. If you had to write a custom program for parallel processing you could do something like:
deserialize_directory
to get all tile IDs and offsets in memoryclustered=true
they are contiguous, which will let you batch many tiles into a single network I/O operation.You would then need a single process to merge N output files…