pyreclaim 0.1.0__tar.gz → 0.2.0__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.
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/PKG-INFO +5 -3
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/README.md +4 -2
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/pyproject.toml +1 -1
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/setup.py +1 -1
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/pyreclaim.egg-info/PKG-INFO +5 -3
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/LICENSE +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/setup.cfg +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/pyreclaim.egg-info/SOURCES.txt +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/pyreclaim.egg-info/dependency_links.txt +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/pyreclaim.egg-info/requires.txt +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/pyreclaim.egg-info/top_level.txt +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/__init__.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/derived_features/__init__.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/derived_features/feature_engineering_and_transformation.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/__init__.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/catchment_dynamic.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/reservoir_dynamic.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/utils/__init__.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/utils/catchment_meteorology.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/utils/inflow_outflow.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/utils/rainfall.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/utils/statistical_metrics.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/utils/ts_aggregate.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/generate_features.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/reclaim.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/static_features/__init__.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/static_features/catchment_static.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/static_features/reservoir_static.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/static_features/utils/__init__.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/static_features/utils/aec_shape.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/static_features/utils/area_perimeter.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/static_features/utils/catchment_agreggate.py +0 -0
- {pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/static_features/utils/flow_length.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyreclaim
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Reservoir Estimation of Capacity Loss using AI based Methods
|
|
5
5
|
Author-email: Sanchit Minocha <msanchit@uw.edu>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -700,7 +700,9 @@ Requires-Dist: lightgbm
|
|
|
700
700
|
Requires-Dist: catboost
|
|
701
701
|
Dynamic: license-file
|
|
702
702
|
|
|
703
|
-
|
|
703
|
+
<div align="center">
|
|
704
|
+
<img src="https://github.com/UW-SASWE/RECLAIM/raw/main/docs/_static/Reclaim_logo_clearBG.png" alt="Reservoir Estimation of Capacity Loss using AI-based Methods" width="500"/>
|
|
705
|
+
</div>
|
|
704
706
|
# Reservoir Estimation of Capacity Loss using AI-based Methods - RECLAIM
|
|
705
707
|
|
|
706
708
|
**First-of-its-kind globally scalable tool to predict reservoir sedimentation, screen vulnerable reservoirs, and pinpoint those struggling the most.**
|
|
@@ -723,7 +725,7 @@ It is the **first-of-its-kind tool** to:
|
|
|
723
725
|
Install the package via pip:
|
|
724
726
|
|
|
725
727
|
```bash
|
|
726
|
-
pip install
|
|
728
|
+
pip install pyreclaim
|
|
727
729
|
```
|
|
728
730
|
---
|
|
729
731
|
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="https://github.com/UW-SASWE/RECLAIM/raw/main/docs/_static/Reclaim_logo_clearBG.png" alt="Reservoir Estimation of Capacity Loss using AI-based Methods" width="500"/>
|
|
3
|
+
</div>
|
|
2
4
|
# Reservoir Estimation of Capacity Loss using AI-based Methods - RECLAIM
|
|
3
5
|
|
|
4
6
|
**First-of-its-kind globally scalable tool to predict reservoir sedimentation, screen vulnerable reservoirs, and pinpoint those struggling the most.**
|
|
@@ -21,7 +23,7 @@ It is the **first-of-its-kind tool** to:
|
|
|
21
23
|
Install the package via pip:
|
|
22
24
|
|
|
23
25
|
```bash
|
|
24
|
-
pip install
|
|
26
|
+
pip install pyreclaim
|
|
25
27
|
```
|
|
26
28
|
---
|
|
27
29
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyreclaim
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Reservoir Estimation of Capacity Loss using AI based Methods
|
|
5
5
|
Author-email: Sanchit Minocha <msanchit@uw.edu>
|
|
6
6
|
License: GNU GENERAL PUBLIC LICENSE
|
|
@@ -700,7 +700,9 @@ Requires-Dist: lightgbm
|
|
|
700
700
|
Requires-Dist: catboost
|
|
701
701
|
Dynamic: license-file
|
|
702
702
|
|
|
703
|
-
|
|
703
|
+
<div align="center">
|
|
704
|
+
<img src="https://github.com/UW-SASWE/RECLAIM/raw/main/docs/_static/Reclaim_logo_clearBG.png" alt="Reservoir Estimation of Capacity Loss using AI-based Methods" width="500"/>
|
|
705
|
+
</div>
|
|
704
706
|
# Reservoir Estimation of Capacity Loss using AI-based Methods - RECLAIM
|
|
705
707
|
|
|
706
708
|
**First-of-its-kind globally scalable tool to predict reservoir sedimentation, screen vulnerable reservoirs, and pinpoint those struggling the most.**
|
|
@@ -723,7 +725,7 @@ It is the **first-of-its-kind tool** to:
|
|
|
723
725
|
Install the package via pip:
|
|
724
726
|
|
|
725
727
|
```bash
|
|
726
|
-
pip install
|
|
728
|
+
pip install pyreclaim
|
|
727
729
|
```
|
|
728
730
|
---
|
|
729
731
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/utils/catchment_meteorology.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/dynamic_features/utils/statistical_metrics.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyreclaim-0.1.0 → pyreclaim-0.2.0}/src/reclaim/static_features/utils/catchment_agreggate.py
RENAMED
|
File without changes
|
|
File without changes
|