Skip to article frontmatterSkip to article content

XArray Stack

CSIC
UCM
IGEO

Remote Sensing

rioxarray

regionmask

GeoWombat


Geoscience

xcdat


Linear Algebra

xarray_einstats

General Array Operations

ds: XRDataset["T X Y"] = ...
# combine dimensions
ds: XRDataset["N"] = rearange(ds, "(T X Y)=N")
ds: XRDataset["N T"] = rearange(ds, "(X Y)=Samples")
# Creating Patches
ds: XRDataset["N"] = rearange(ds, "T X Y -> ")
# aggregate dimensions
# options: mean, min, max, sum, prod
ds: XRDataset["T"] = reduce(ds, "X Y", "mean")
ds: XRDataset["X Y"] = reduce(ds, "T", "mean")
# pooling (max, average)

Linear Algebra (TODO)