An Xarray backend for GRASS raster data.
Project description
xarray-grass
A GRASS backend for Xarray. Explore all your GRASS rasters with Xarray.
Installation
Install the package using uv or pip:
uv add xarray-grass
You need to install GRASS independently.
Loading GRASS data as an Xarray Dataset
>>> import xarray as xr
>>> test_ds = xr.open_dataset("/home/lc/grassdata/nc_spm_08_grass7/PERMANENT/", raster=["boundary_county_500m", "elevation"])
>>> test_ds
<xarray.Dataset> Size: 244kB
Dimensions: (y: 150, x: 135)
Coordinates:
* y (y) float32 600B 2.2e+05 2.2e+05 ... 2.207e+05
* x (x) float32 540B 6.383e+05 6.383e+05 ... 6.39e+05
Data variables:
boundary_county_500m (y, x) float64 162kB ...
elevation (y, x) float32 81kB ...
Attributes:
crs_wkt: PROJCRS["NAD83(HARN) / North Carolina",BASEGEOGCRS["NAD83(HARN...
You can choose which maps you want to load with the raster, raster_3d, strds and str3ds parameters to open_dataset.
Those accept either a single string or an iterable.
If none of those are specified, the whole mapset will be loaded, ignoring single maps that are already registered in either a strds or str3ds;
those maps will be loaded into the Xarray Dataset for being part of the GRASS Space Time Dataset.
As of version 0.2.0, any time-stamp associated to a single map not registered in a stds is ignored.
The extent and resolution of the resulting Dataset is defined by the region setting of GRASS, set with the g.region GRASS tool.
Note that in GRASS the 3D resolution is independent from the 2D resolution.
Therefore, 2D and 3D maps loaded in Xarray will not share the same dimensions and coordinates.
The coordinates in the Xarray Dataset correspond to the center of the GRASS cell.
If run from outside a GRASS session, xarray-grass will automatically create a session in the requested project and mapset.
If run from within GRASS, only maps from accessible mapsets could be loaded.
In GRASS, you can list the accessible mapsets with g.mapsets.
CF conventions attributes mapping
DataArray attributes
| CF name | Origin in GRASS |
|---|---|
| long_name | The "title" field from "r.info", "r3.info", or "t.info" |
| source | Concatenation of "source1" and "source2" from "r.info" or "r3.info". In case of STDS, taken from the first map. |
| units | The "unit" field from "r.info" or "r3.info". In case of STDS, taken from the first map. |
| comment | The "comments" field from "r.info" or "r3.info". In case of STDS, taken from the first map. |
The attributes of the coordinates are in line with CF Conventions.
Dataset attributes
The only attributes set at the dataset level are crs_wkt and Conventions.
Writing an Xarray Dataset or DataArray to GRASS
TODO.
Roadmap
Goals for version 1.0
- Load a single raster map
- Load a single Space-time Raster Dataset (strds)
- Load a single raster_3d map
- Load a single str3ds
- Load a combination of all the above
- Load a full mapset
- Support for the
drop_variablesparameter - Write from xarray to GRASS
- Write to a 2D raster
- Write to STRDS
- Write to 3D raster
- Write to STR3DS
- Honour the
dimsargument: transpose if dimensions are not in the expected order - Support time units for relative time
- Support
end_time - Accept writing into a specific mapset (GRASS 8.5)
- Accept non homogeneous 3D resolution in NS and EW dimensions (GRASS 8.5)
- Lazy loading of all raster types
- Properly test with lat-lon location
Stretch goals
- Load all mapsets from a GRASS project (ex location)
- Read CRS definitions from CF compatible fields
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file xarray_grass-0.3.0.tar.gz.
File metadata
- Download URL: xarray_grass-0.3.0.tar.gz
- Upload date:
- Size: 36.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
997a0fc40ca73e87d271e7e820da5e5cd665c2320666b5a549c5cb22a22e6386
|
|
| MD5 |
22b00e8e3600824eeca35ede8746a86c
|
|
| BLAKE2b-256 |
b04d2a1dca7daf0fccd4a71b68491632c18f17efc381f95df0732691a3ba810e
|
File details
Details for the file xarray_grass-0.3.0-py3-none-any.whl.
File metadata
- Download URL: xarray_grass-0.3.0-py3-none-any.whl
- Upload date:
- Size: 25.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8eb2737347d87072b1b7d03f999fdd48bbd4f022d5485ff1604b58fe4659224
|
|
| MD5 |
0d1b94a2e3161d919af772c5be1af3f0
|
|
| BLAKE2b-256 |
b0ee82f1873f73a6e86787f8217d1e546e7ddc5e3a92236198fc0f36e7274664
|