Getting started#
Installation#
..The latest shxarray is hosted on pypi and can be installed through pip:
..``pip install shxarray``
..Part of the module is written is Cython, which means that a c compiler is needed to build the package. A binary wheel is currently not offered, but this may be offered in the future.
Import and usage#
For most operations, a simple import will expose the xarray extensions. For example:
import xinv
import xarray as xr
#Initialize a zero'd normal equation system
dsneqzero=xr.Dataset.xi.neqzeros(rhsdims=["unknownpara","auxdim"],coords={"unknownpara":[0,1,2,3],"auxdim":["name1","name2"]})