Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start working on upgrading to Python 3.9 #71

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# iSnoda
iSnobal installation in a local conda environment that allows for editing of:
* [AWSM](https://github.com/USDA-ARS-NWRC/awsm)
* [SMRF](https://github.com/USDA-ARS-NWRC/smrf)
* [AWSM](https://github.com/UofU-Cryosphere/awsm)
* [SMRF](https://github.com/UofU-Cryosphere/smrf)
* [PySnobal](https://github.com/USDA-ARS-NWRC/pysnobal)
* [Weather forecast retrieval](https://github.com/USDA-ARS-NWRC/weather_forecast_retrieval)
* [TopoCalc](https://github.com/USDA-ARS-NWRC/topocalc)

## Conda
Contains `environment.yml` file and de/activation scripts to setup required
Expand All @@ -14,12 +14,6 @@ env variables. Also has an install script to download the above components

Backup of configuration files.

## Docs

Install instructions for:
* [IPW](https://github.com/USDA-ARS-NWRC/ipw) on Mac OS and Linux environments.
* [basin setup](https://github.com/USDA-ARS-NWRC/basin_setup) from source on Linux.

## Notebooks

Collection of Jupyter notebooks for mostly output analysis.
Expand Down
2 changes: 1 addition & 1 deletion conda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The following steps create a new environment to execute the iSnobal model.
./install_isnoda.sh
```
The script takes a user-defined install location as the first argument. The
default location is: `$HOME/isnoda` if none is provided.
default location is: `$HOME/iSnobal` if none is provided.

## Other environments
### Basin Setup
Expand Down
1 change: 0 additions & 1 deletion conda/basin_setup/basin_setup.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: basin_setup
channels:
- conda-forge
- defaults
dependencies:
- colorama
- coloredlogs
Expand Down
1 change: 0 additions & 1 deletion conda/environment.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: isnoda
channels:
- conda-forge
- defaults
dependencies:
- beautifulsoup4
- cfgrib
Expand Down
25 changes: 25 additions & 0 deletions conda/environment_p39.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: isnoda
channels:
- conda-forge
dependencies:
- beautifulsoup4
- cfgrib
- cftime=1.5.2
- coloredlogs
- cython
- dateparser=0.7.2
- make
- netCDF4
- numpy<1.23
- pandas<1.4
- parallel
- pip
- pykrige>1.5
- python=3.9
- pytz
- regex<2021
- scipy<1.12
- siphon
- utm==0.5
- xarray<2023

16 changes: 8 additions & 8 deletions conda/install_isnoda.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
#!/usr/bin/env bash
# Script to install all required components from GitHub repositories.
# Requires to have a fully setup and activated conda environment.
#
# These components are installed with the latest from the master branch:
# The below components are installed with the latest from the master branch:
# - AWSM (University of Utah)
# - SMRF (University of Utah)
# - PySnobal (ARS)
# - Weather Forecast Retrieval (University of Utah)
# - TopoCalc (ARS)
#
# Other packages are installed via the latest available version as pip package.
#
# Install location is given via the first parameter or defaults to $HOME/isnoda
# Install location is given via the first parameter or defaults to $HOME/iSnobal

set -e

Expand All @@ -20,14 +21,14 @@ cd $ISNODA_HOME

######
# GitHub repositories
# Will install from source
# Will install from source and editable
######

declare -a repositories=(
"https://github.com/UofU-Cryosphere/awsm.git"
"https://github.com/UofU-Cryosphere/smrf.git"
"https://github.com/USDA-ARS-NWRC/pysnobal.git"
"https://github.com/UofU-Cryosphere/weather_forecast_retrieval.git"
"https://github.com/USDA-ARS-NWRC/topocalc.git"
)

for repository in "${repositories[@]}"
Expand All @@ -48,16 +49,15 @@ do
done

#######
# ISNOBAL components not available via conda package
# iSnobal components not available via conda package
#######

declare -a packages=(
"inicheck"
"spatialnc"
"topocalc"
)

for package in "${packages[@]}"
do
pip install --no-deps ${package}
pip install ${package}
done