Zarr، سائنسی ڈیٹا کے لیے ایک کثیر الجہتی صف ذخیرہ فارمیٹ ہے۔ یہ ٹکڑوں میں ذخیرہ، کمپریشن اور متوازی رسائی کی حمایت کرتا ہے۔ موسمیاتی ڈیٹا، سیٹلائٹ وقتی سلسلوں اور جغرافیائی ڈیٹا کے لیے بہترین۔
اہم خصوصیات

Zarr فارمیٹ کے بارے میں
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.
کون سا پروگرام Zarr فائلیں کھولتا ہے
درج ذیل پروگرام اور ایپلیکیشنز OSM2CDR سے برآمد کردہ Zarr (beta) (.zarr.zip) فائلوں کو کھول، ترمیم اور ان کے ساتھ کام کر سکتے ہیں:
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+.
Zarr نقشے کون استعمال کرتا ہے
Zarr کیسے برآمد کریں
ایکسپورٹ کے بعد کیسے کھولیں
- 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.
Zarr میں مقبول نقشے
Zarr (beta) نقشہ برآمدات حاصل کریں
OpenStreetMap سے پیشہ ورانہ Zarr نقشے ڈاؤن لوڈ کریں۔ فوری تخلیق، کوئی بھی علاقہ۔
اکثر پوچھے جانے والے سوالات
متعلقہ فارمیٹس
اکثر ایک ساتھ برآمد کیے جاتے ہیں
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.