Zarr is a multi-dimensional array storage format for scientific data. It supports chunked storage, compression, and parallel access. Ideal for climate data, satellite time series, and geospatial data.
Key Features

About Zarr Format
Zarr is a format for storing large multidimensional arrays: the data is cut into chunks, and each chunk is compressed and stored separately. That is why an array is read in pieces, in parallel and straight from the cloud — S3, GCS or plain HTTP. In scientific data it is gradually displacing NetCDF and HDF5 precisely because of that cloud access.
An OpenStreetMap map is vector objects while Zarr is about arrays, so the export rasterizes the selected area into a regular grid. The format is taken when the map is needed not as a drawing but as a data layer next to climate data, satellite series or a computational model in xarray and Dask.
The archive holds a Zarr group of version two with two arrays: feature_count — how many OSM objects fell into the cell, and land_use — the code of the dominant layer in the cell. The group attributes record the coordinate system, the bounding box of the area, the grid step and the list of source layers; the data is split into 256 × 256 chunks and compressed (Blosc with Zstandard by default).
The default grid step is 0.001 degrees, about a hundred meters; over small areas it is refined automatically so that the result does not degenerate into a few cells. The grid size is limited to 10,000 × 10,000 cells. The format is in beta status: this is aggregated density and categories, not vector geometry — for that, go to GeoParquet or FlatGeobuf.
What Program Opens Zarr Files
The following programs and applications can open, edit, and work with Zarr (beta) (.zarr.zip) files exported from OSM2CDR:
Format specifications
- Open standard
- 3D coordinates supported
- Lossless (no quality loss)
- Stores feature attributes
- Output: 32 files in archive
- Zarr v2 chunked N-dimensional array directory. Cloud-native alternative to NetCDF/HDF5. Reads in xarray, GDAL 3.1+.
Who Uses Zarr Maps
How to Export Zarr
How to Open After Export
- Python — zarr.open(zarr.ZipStore('map.zarr.zip'), mode='r') reads the archive without unpacking; the feature_count and land_use arrays then behave like ordinary NumPy arrays.
- xarray and Dask — unpack the directory and open it through open_zarr: the arrays are computed chunk by chunk and do not require holding everything in memory.
- Attributes — the root group attributes hold the coordinate system, the bounding box of the area, the grid step and the list of layers; from them the geographic referencing of the cells is reconstructed.
- GDAL — modern versions open Zarr as a multidimensional raster, after which the set is converted to GeoTIFF with the standard utilities.
- A quick look — matplotlib over the land_use array gives a picture of the categories; if you need a familiar map, take GeoTIFF or PNG.
Popular maps in Zarr
Get Zarr (beta) map exports
Download professional Zarr maps from OpenStreetMap. Instant generation, any area.
Frequently Asked Questions
Related Formats
Frequently Exported Together
Related Articles
Zarr — Cloud-Native Chunked Array Format for N-Dimensional Climate Data
Zarr is a chunked format for N-dimensional arrays: cloud-native HDF5/NetCDF alternative used by Pangeo, CMIP6, NASA ESA
guideZarr: A Multidimensional Format for Geodata
Zarr is a cloud-native format for multidimensional geodata storage. Chunked storage, compression, and Python xarray inte
formatGIS Data Formats in 2026: From Shapefile to Cloud-Native
GIS format overview: Shapefile, GeoPackage, FlatGeobuf, PMTiles, GeoParquet, COG — evolution and choice in 2026.