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.
Files changed (28) hide show
  1. {py_ewr-2.1.5 → py_ewr-2.1.6}/PKG-INFO +4 -4
  2. {py_ewr-2.1.5 → py_ewr-2.1.6}/README.md +3 -3
  3. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/parameter_metadata/ewr_calc_config.json +3 -1
  4. py_ewr-2.1.6/py_ewr/parameter_metadata/parameter_sheet.csv +3431 -0
  5. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/scenario_handling.py +12 -7
  6. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr.egg-info/PKG-INFO +4 -4
  7. {py_ewr-2.1.5 → py_ewr-2.1.6}/setup.py +1 -1
  8. {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_scenario_handling.py +1 -2
  9. py_ewr-2.1.5/py_ewr/parameter_metadata/parameter_sheet.csv +0 -3415
  10. {py_ewr-2.1.5 → py_ewr-2.1.6}/LICENSE +0 -0
  11. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/__init__.py +0 -0
  12. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/data_inputs.py +0 -0
  13. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/evaluate_EWRs.py +0 -0
  14. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/model_metadata/SiteID_MDBA.csv +0 -0
  15. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/model_metadata/SiteID_NSW.csv +0 -0
  16. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/observed_handling.py +0 -0
  17. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr/summarise_results.py +0 -0
  18. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr.egg-info/SOURCES.txt +0 -0
  19. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr.egg-info/dependency_links.txt +0 -0
  20. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr.egg-info/requires.txt +0 -0
  21. {py_ewr-2.1.5 → py_ewr-2.1.6}/py_ewr.egg-info/top_level.txt +0 -0
  22. {py_ewr-2.1.5 → py_ewr-2.1.6}/pyproject.toml +0 -0
  23. {py_ewr-2.1.5 → py_ewr-2.1.6}/setup.cfg +0 -0
  24. {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_data_inputs.py +0 -0
  25. {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_evaluate_ewr_rest.py +0 -0
  26. {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_evaluate_ewrs.py +0 -0
  27. {py_ewr-2.1.5 → py_ewr-2.1.6}/tests/test_observed_handling.py +0 -0
  28. {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.5
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
  [![PyPI](https://img.shields.io/pypi/v/py-ewr)](https://pypi.org/project/py-ewr/)
33
33
  [![DOI](https://zenodo.org/badge/342122359.svg)](https://zenodo.org/badge/latestdoi/342122359)
34
34
 
35
- ### **EWR tool version 2.1.5 README**
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 - the same formatting as above is required (gauge_flow OR gauge_level)
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)', 'IQQM - NSW 10,000 years' - see manual for formatting requirements)
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
  [![PyPI](https://img.shields.io/pypi/v/py-ewr)](https://pypi.org/project/py-ewr/)
4
4
  [![DOI](https://zenodo.org/badge/342122359.svg)](https://zenodo.org/badge/latestdoi/342122359)
5
5
 
6
- ### **EWR tool version 2.1.5 README**
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 - the same formatting as above is required (gauge_flow OR gauge_level)
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)', 'IQQM - NSW 10,000 years' - see manual for formatting requirements)
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>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
@@ -515,7 +515,9 @@
515
515
  "BF2_c_P-single-F",
516
516
  "BF2_c_S-single-F",
517
517
  "BF4-single-F",
518
- "BF5-single-F"
518
+ "BF5-single-F",
519
+ "BF_FD1-single-F",
520
+ "BF_FD2-single-F"
519
521
  ],
520
522
  "ctf_handle_multi": [
521
523
  "CF-multigauge-F"