Skip to content

Commit

Permalink
Merge pull request #66 from WikiWatershed/SDamiano
Browse files Browse the repository at this point in the history
Updates from Stroud
  • Loading branch information
Alice Rottersman authored Aug 29, 2016
2 parents 4e8137e + e7e205e commit a5b8c62
Show file tree
Hide file tree
Showing 17 changed files with 701 additions and 359 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
env/
*.pyc
*.bak
.idea/*
tr55/wintab32dll.txt
tr55/Results_*.csv
*.bak
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 1.2.0

- Added lots of information into tables.py about all of the data sources for the values
- Improved curve numbers for TR55 (NRCS) for developed lands
- Rewrote Pitt's Small Storm Hydrology model to correctly be soil-type dependent and to use a look-up table for values instead of a polynomial derived from that look-up table
- For the new implementation of the Pitt/SSH model, numpy is now a requirement
- Improved evapotranspiration crop coefficients for all except developed lands. Developed Ki's still need to be sourced and fixed.
- Added a limit to the amount of runoff that can be converted to infiltration for infiltration-type BMP's. This is based on the amount of rainfall that lands on the BMP and an artificial ratio of contributing area to BMP area. Note that this ratio is based only on recommendations by the PA DEP and has nothing to do with the actual contributing areas for the BMPs as drawn.
- Recreated cluster housing as an independent land use rather than using numbers for developed_low.
- Rewrote all test modules to reflect all of the above changes.

## 1.1.3

- Fix bug which elevated the Green Roof BMP type storage capacity. Aligned with provided documentation.
Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,16 @@ $ git flow release publish 0.1.0
$ git flow release finish 0.1.0
```

To kick off the deployment, you'll still need to push the local tags remotely
`git push --tags`
After you've completed the `git flow` steps, you'll need to push the changes from your local `master` and `develop` branches back to the main repository.

```bash
$ git checkout develop
$ git push origin develop
$ git checkout master
$ git push origin master
# Trigger PyPi deployment
$ git push --tags
```

## License

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
nose==1.3.4
numpy==1.11.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='tr55',
version='1.1.3',
version='1.2.0',
description='A Python implementation of TR-55.',
long_description=long_description,
url='https://github.com/azavea/tr-55',
Expand Down
Loading

0 comments on commit a5b8c62

Please sign in to comment.