py-ewr 2.1.5__tar.gz → 2.1.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {py_ewr-2.1.5 → py_ewr-2.1.6}/PKG-INFO +4 -4
- {py_ewr-2.1.5 → py_ewr-2.1.6}/README.md +3 -3
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/parameter_metadata/ewr_calc_config.json +3 -1
- py_ewr-2.1.6/py_ewr/parameter_metadata/parameter_sheet.csv +3431 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/scenario_handling.py +12 -7
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr.egg-info/PKG-INFO +4 -4
- {py_ewr-2.1.5 → py_ewr-2.1.6}/setup.py +1 -1
- {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_scenario_handling.py +1 -2
- py_ewr-2.1.5/py_ewr/parameter_metadata/parameter_sheet.csv +0 -3415
- {py_ewr-2.1.5 → py_ewr-2.1.6}/LICENSE +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/__init__.py +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/data_inputs.py +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/evaluate_EWRs.py +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/model_metadata/SiteID_MDBA.csv +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/model_metadata/SiteID_NSW.csv +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/observed_handling.py +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/summarise_results.py +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr.egg-info/SOURCES.txt +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr.egg-info/dependency_links.txt +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr.egg-info/requires.txt +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr.egg-info/top_level.txt +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/pyproject.toml +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/setup.cfg +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_data_inputs.py +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_evaluate_ewr_rest.py +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_evaluate_ewrs.py +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_observed_handling.py +0 -0
- {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_summarise_results.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: py_ewr
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.6
|
|
4
4
|
Summary: Environmental Water Requirement calculator
|
|
5
5
|
Home-page: https://github.com/MDBAuth/EWR_tool
|
|
6
6
|
Author: Martin Job
|
|
@@ -32,11 +32,11 @@ Requires-Dist: cachetools==5.2.0
|
|
|
32
32
|
[](https://pypi.org/project/py-ewr/)
|
|
33
33
|
[](https://zenodo.org/badge/latestdoi/342122359)
|
|
34
34
|
|
|
35
|
-
### **EWR tool version 2.1.
|
|
35
|
+
### **EWR tool version 2.1.6 README**
|
|
36
36
|
|
|
37
37
|
### **Notes on recent version update**
|
|
38
38
|
- Standard time-series handling added - each column needs a gauge, followed by and underscore, followed by either flow or level (e.g. 409025_flow). This handling also has missing date filling - so any missing dates will be filled with NaN values in all columns.
|
|
39
|
-
- ten thousand year handling -
|
|
39
|
+
- ten thousand year handling - This has been briefly taken offline for this version.
|
|
40
40
|
- bug fixes: spells of length equal to the minimum required spell length were getting filtered out of the successful events table and successful interevents table.
|
|
41
41
|
|
|
42
42
|
### **Installation**
|
|
@@ -103,7 +103,7 @@ all_successful_interEvents = ewr_oh.get_all_successful_interEvents()
|
|
|
103
103
|
### Option 2: Running model scenarios through the EWR tool
|
|
104
104
|
|
|
105
105
|
1. Tell the tool where the model files are (can either be local or in a remote location)
|
|
106
|
-
2. Tell the tool what format the model files are in (Current model format options: 'Bigmod - MDBA', 'Source - NSW (res.csv)', '
|
|
106
|
+
2. Tell the tool what format the model files are in (Current model format options: 'Bigmod - MDBA', 'Source - NSW (res.csv)', 'Standard time-series' - see manual for formatting requirements)
|
|
107
107
|
|
|
108
108
|
```python
|
|
109
109
|
#USER INPUT REQUIRED>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
[](https://pypi.org/project/py-ewr/)
|
|
4
4
|
[](https://zenodo.org/badge/latestdoi/342122359)
|
|
5
5
|
|
|
6
|
-
### **EWR tool version 2.1.
|
|
6
|
+
### **EWR tool version 2.1.6 README**
|
|
7
7
|
|
|
8
8
|
### **Notes on recent version update**
|
|
9
9
|
- Standard time-series handling added - each column needs a gauge, followed by and underscore, followed by either flow or level (e.g. 409025_flow). This handling also has missing date filling - so any missing dates will be filled with NaN values in all columns.
|
|
10
|
-
- ten thousand year handling -
|
|
10
|
+
- ten thousand year handling - This has been briefly taken offline for this version.
|
|
11
11
|
- bug fixes: spells of length equal to the minimum required spell length were getting filtered out of the successful events table and successful interevents table.
|
|
12
12
|
|
|
13
13
|
### **Installation**
|
|
@@ -74,7 +74,7 @@ all_successful_interEvents = ewr_oh.get_all_successful_interEvents()
|
|
|
74
74
|
### Option 2: Running model scenarios through the EWR tool
|
|
75
75
|
|
|
76
76
|
1. Tell the tool where the model files are (can either be local or in a remote location)
|
|
77
|
-
2. Tell the tool what format the model files are in (Current model format options: 'Bigmod - MDBA', 'Source - NSW (res.csv)', '
|
|
77
|
+
2. Tell the tool what format the model files are in (Current model format options: 'Bigmod - MDBA', 'Source - NSW (res.csv)', 'Standard time-series' - see manual for formatting requirements)
|
|
78
78
|
|
|
79
79
|
```python
|
|
80
80
|
#USER INPUT REQUIRED>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
|