geokube is an open source Python package for geoscience data analysis that provides the user with a simple application programming interface (API) for performing geospatial operations (e.g., extracting a bounding box or regridding) and temporal operations (e.g., resampling) on different types of scientific feature types like grids, profiles and points, using xarray
data structures and xarray ecosystem frameworks such as xesmf
.
Lead Developers:
You need to install xesmf and cartopy to use geokube. This can be done during the creation of conda virtual environment, as shown below
Add or append conda-forge channel
conda config --add channels conda-forge
or
conda config --append channels conda-forge
Create virtual environment with installing xesmf and cartopy package
conda create -n geokube python=3.9 xesmf=0.6.2 cartopy -y
Activate virtual environment
conda activate geokube
Install geokube framework
python setup.py install