Skip to content
This repository has been archived by the owner on Apr 11, 2019. It is now read-only.

Update to the waves extremal analysis notebook #139

Merged
merged 7 commits into from
Aug 18, 2014
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,31 @@
## Scenario 2A - Coastal Inundation

### Extreme Value Analysis - Waves
This notebook tries to extract a long time series wave height data sets (10+ years) from NDBC for a return value analysis. In addition there are 2 files included, WIS_extremes.txt and WIS_stations.txt that contain the Wave Information Studies (WIS) hindcast station annual extremes data and station lat/lon data respectively.

#### Requirements

1. Using `pip`
```bash
pip install -r pip-requirements.txt
pip install git+https://github.com/wrobstory/folium.git#egg=folium
pip install git+https://github.com/birdage/folium.git@clustered_markers#egg=folium --upgrade
pip install git+https://github.com/SciTools/cartopy.git@v0.10.0
pip install git+https://github.com/SciTools/iris.git@v1.6.1
```

2. Using `conda`
```bash
conda install --file conda-requirements.txt
conda install -c https://conda.binstar.org/rsignell iris=v1.6.2_RPS
conda install -c https://conda.binstar.org/rsignell iris
```
If you are using environments within conda, be sure to specify it
```bash
conda install -n yourenvname --file conda-requirements.txt
conda install -n yourenvname -c https://conda.binstar.org/rsignell iris=v1.6.2_RPS
conda install -n yourenvname -c https://conda.binstar.org/rsignell iris
```
You will still need to pip install folium
```bash
pip install git+https://github.com/birdage/folium.git@clustered_markers#egg=folium --upgrade
```

#### Helper methods
Expand Down
Loading