Introduction to xarray
xarray Python library is great for analysing multi-dimensional arrays of data with labelled dimensions, which is a common situation in geosciences.
According to the docs, xarray has two core data structures. Both are fundamentally N-dimensional:
DataArrayis our implementation of a labeled, N-dimensional array. It is an N-D generalization of …