Hello - Thanks for the excellent package!
I believe I have the google colab dependencies worked out for those who may be inclined to go that route. First, you need to get miniconda env for esmpy. This cell will automatically restart your notebook.
!pip install -q condacolab
import condacolab
condacolab.install()
Next, install the dependencies (not 100% sure on rtree or pygeos...so I just installed them both).
%%capture
!conda install -c conda-forge esmpy
!pip install rtree pygeos
!pip install xesmf
!pip install geopandas
!pip install xagg
Restart the notebook 1 more time... and you are good to import your packages and start aggregating!
Hello - Thanks for the excellent package!
I believe I have the google colab dependencies worked out for those who may be inclined to go that route. First, you need to get miniconda env for esmpy. This cell will automatically restart your notebook.
Next, install the dependencies (not 100% sure on
rtreeorpygeos...so I just installed them both).Restart the notebook 1 more time... and you are good to import your packages and start aggregating!