Contains archives made with wplace-archiver.
See releases for all archives. Each archive is named <type>-<created>, where <type> is a type of an archive (see below) and <crteated> is an iso-like datetime of when the archive was created (not including time it took to create it).
Not counting downloading everything manually, archives can be downloaded using a task from the wplace-archiver repo. See more in archiver repo.
Tag type: world.
Contains archives of the entire map.
The archives are structured as per Maplibre raster source spec, following {x}/{y}.png directory structure. The zoom level is omited since it's constant at 11.
The archives are tar archives compressed with gzip and split into multiple parts, each up to 2GB in size. Using:
GZIP=-1 tar czf - "<archive_dir>" | split --bytes=2GB - "<archive_dir>.tar.gz."To unzip, first concatenate all parts back into a single archive by using:
cat <archive>.tar.gz.* > archive.tar.gzThen, to unzip, use:
tar -xzf archive.tar.gz