Skip to content

Commit

Permalink
Clean up for v0.2.4 (#53)
Browse files Browse the repository at this point in the history
* Updated whats-new and bumped version umber to v0.2.4

Closes #46
  • Loading branch information
cchwala committed Mar 11, 2019
1 parent 7933668 commit 9202b06
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -10,3 +10,6 @@ docs/_templates/
build/
__pycache__/
*.py~
.DS_Store
.cache/
.pytest_cache/
22 changes: 22 additions & 0 deletions docs/whats-new.rst
@@ -1,6 +1,28 @@
What's New
==========

v0.2.4
------

* Added WAA calculation and test for method proposed by Leijnse et al 2008

* Added function to calculate WAA directly from A_obs for Leijnse et al 2008
method.

* Added WAA example notebook

* Added function to derive attenuation value `A_min_max` from min/max CML
measurements (these measurements periodically provide the min and max
value over a defined time period, typically 15 minutes).
(by DanSereb in PR #37 and #45)

* Added function to derive rain rate `R` from `A_min_max`
(by DanSereb in PR #37 and #45)

* Added example notebook with simple comparison of processing of
"instantaneous" and "min-max" CML data (by DanSereb in PR #37 and #45)


v0.2.3
------

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -17,15 +17,15 @@ def read(fname):

setup(
name = "pycomlink",
version = "0.2.3",
version = "0.2.4",
author = "Christian Chwala",
author_email = "christian.chwala@kit.edu",
description = ("Python tools for MW link data processing"),
license = "BSD",
keywords = "microwave links precipitation radar",
url = "https://github.com/pycomlink/pycomlink",
download_url = (
"https://github.com/pycomlink/pycomlink/archive/0.2.3.tar.gz"),
"https://github.com/pycomlink/pycomlink/archive/0.2.4.tar.gz"),
packages=find_packages(exclude=['test']),
include_package_data=True,
long_description=read('README.md'),
Expand Down

0 comments on commit 9202b06

Please sign in to comment.