Installation

Thehe library can be installed using pip, or the github link or the setup.py file.

using pip

The most easy way to install aqua-fetch is using pip

pip install aqua-fetch

However, if you are interested in installing all dependencies of AquaFetch, you can choose to install all of them as well.

pip install aqua-fetch[all]

This will install xarray, netCDF4, fiona and easy_mpl libraries. The xarray library is used to save the data in netCDF4 format for faster I/O operations. fiona is used to process shapefiles while easy_mpl is used for plotting purpose.

We can also specify the AquaFetch version that we want to install as below

pip install aqua-fetch==1.0.0

To updated the installation run

pip install --upgrade aqua-fetch

using setup.py file

This involves cloning the respotory, changing directory to the cloned folder and then running the setup.py file.

git clone https://github.com/hyex-research/AquaFetch.git
cd AquaFetch
python setup.py install