Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 1.4 KB

File metadata and controls

40 lines (24 loc) · 1.4 KB

wplace-archives

Important

NOTICE: The world archives will no longer be uploaded.

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 <created> is an iso-like datetime of when the archive was created (not including time it took to create it).

Downloading archives

Not counting downloading everything manually, archives can be downloaded using a task from the wplace-archiver repo. See more in archiver repo.

Archives

World

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.gz

Then, to unzip, use:

tar -xzf archive.tar.gz