pyreclaim 0.2.0__tar.gz → 0.3.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.2.0 → pyreclaim-0.3.0}/PKG-INFO +17 -2
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/README.md +16 -1
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/pyproject.toml +1 -1
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/setup.py +1 -1
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/pyreclaim.egg-info/PKG-INFO +17 -2
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/LICENSE +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/setup.cfg +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/pyreclaim.egg-info/SOURCES.txt +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/pyreclaim.egg-info/dependency_links.txt +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/pyreclaim.egg-info/requires.txt +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/pyreclaim.egg-info/top_level.txt +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/__init__.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/derived_features/__init__.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/derived_features/feature_engineering_and_transformation.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/dynamic_features/__init__.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/dynamic_features/catchment_dynamic.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/dynamic_features/reservoir_dynamic.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/dynamic_features/utils/__init__.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/dynamic_features/utils/catchment_meteorology.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/dynamic_features/utils/inflow_outflow.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/dynamic_features/utils/rainfall.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/dynamic_features/utils/statistical_metrics.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/dynamic_features/utils/ts_aggregate.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/generate_features.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/reclaim.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/static_features/__init__.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/static_features/catchment_static.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/static_features/reservoir_static.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/static_features/utils/__init__.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/static_features/utils/aec_shape.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/static_features/utils/area_perimeter.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.0}/src/reclaim/static_features/utils/catchment_agreggate.py +0 -0
- {pyreclaim-0.2.0 → pyreclaim-0.3.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.3.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
|
|
@@ -703,7 +703,11 @@ Dynamic: license-file
|
|
|
703
703
|
<div align="center">
|
|
704
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
705
|
</div>
|
|
706
|
-
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
# Reservoir Estimation of Capacity Loss using AI-based Methods (RECLAIM)
|
|
709
|
+
|
|
710
|
+
---
|
|
707
711
|
|
|
708
712
|
**First-of-its-kind globally scalable tool to predict reservoir sedimentation, screen vulnerable reservoirs, and pinpoint those struggling the most.**
|
|
709
713
|
|
|
@@ -727,8 +731,19 @@ Install the package via pip:
|
|
|
727
731
|
```bash
|
|
728
732
|
pip install pyreclaim
|
|
729
733
|
```
|
|
734
|
+
|
|
730
735
|
---
|
|
736
|
+
## Download Data
|
|
731
737
|
|
|
738
|
+
To generate features for reservoirs using the **RECLAIM** framework and the [`pyreclaim`](https://pypi.org/project/pyreclaim/) Python package, you will need the global datasets.
|
|
739
|
+
|
|
740
|
+
You can download all required global datasets from the Open Science Framework (OSF):
|
|
741
|
+
|
|
742
|
+
[Download Global Datasets](https://doi.org/10.5281/zenodo.17230533)
|
|
743
|
+
|
|
744
|
+
These datasets include land cover, soil, terrain/DEM derivatives, and vegetation gain/loss data, which are essential for computing reservoir and catchment features for RECLAIM.
|
|
745
|
+
|
|
746
|
+
---
|
|
732
747
|
## Documentation
|
|
733
748
|
|
|
734
749
|
The documentation is available [here](https://reclaimio.readthedocs.io/en/latest/).
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
<div align="center">
|
|
2
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
3
|
</div>
|
|
4
|
-
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
# Reservoir Estimation of Capacity Loss using AI-based Methods (RECLAIM)
|
|
7
|
+
|
|
8
|
+
---
|
|
5
9
|
|
|
6
10
|
**First-of-its-kind globally scalable tool to predict reservoir sedimentation, screen vulnerable reservoirs, and pinpoint those struggling the most.**
|
|
7
11
|
|
|
@@ -25,8 +29,19 @@ Install the package via pip:
|
|
|
25
29
|
```bash
|
|
26
30
|
pip install pyreclaim
|
|
27
31
|
```
|
|
32
|
+
|
|
28
33
|
---
|
|
34
|
+
## Download Data
|
|
29
35
|
|
|
36
|
+
To generate features for reservoirs using the **RECLAIM** framework and the [`pyreclaim`](https://pypi.org/project/pyreclaim/) Python package, you will need the global datasets.
|
|
37
|
+
|
|
38
|
+
You can download all required global datasets from the Open Science Framework (OSF):
|
|
39
|
+
|
|
40
|
+
[Download Global Datasets](https://doi.org/10.5281/zenodo.17230533)
|
|
41
|
+
|
|
42
|
+
These datasets include land cover, soil, terrain/DEM derivatives, and vegetation gain/loss data, which are essential for computing reservoir and catchment features for RECLAIM.
|
|
43
|
+
|
|
44
|
+
---
|
|
30
45
|
## Documentation
|
|
31
46
|
|
|
32
47
|
The documentation is available [here](https://reclaimio.readthedocs.io/en/latest/).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyreclaim
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.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
|
|
@@ -703,7 +703,11 @@ Dynamic: license-file
|
|
|
703
703
|
<div align="center">
|
|
704
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
705
|
</div>
|
|
706
|
-
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
# Reservoir Estimation of Capacity Loss using AI-based Methods (RECLAIM)
|
|
709
|
+
|
|
710
|
+
---
|
|
707
711
|
|
|
708
712
|
**First-of-its-kind globally scalable tool to predict reservoir sedimentation, screen vulnerable reservoirs, and pinpoint those struggling the most.**
|
|
709
713
|
|
|
@@ -727,8 +731,19 @@ Install the package via pip:
|
|
|
727
731
|
```bash
|
|
728
732
|
pip install pyreclaim
|
|
729
733
|
```
|
|
734
|
+
|
|
730
735
|
---
|
|
736
|
+
## Download Data
|
|
731
737
|
|
|
738
|
+
To generate features for reservoirs using the **RECLAIM** framework and the [`pyreclaim`](https://pypi.org/project/pyreclaim/) Python package, you will need the global datasets.
|
|
739
|
+
|
|
740
|
+
You can download all required global datasets from the Open Science Framework (OSF):
|
|
741
|
+
|
|
742
|
+
[Download Global Datasets](https://doi.org/10.5281/zenodo.17230533)
|
|
743
|
+
|
|
744
|
+
These datasets include land cover, soil, terrain/DEM derivatives, and vegetation gain/loss data, which are essential for computing reservoir and catchment features for RECLAIM.
|
|
745
|
+
|
|
746
|
+
---
|
|
732
747
|
## Documentation
|
|
733
748
|
|
|
734
749
|
The documentation is available [here](https://reclaimio.readthedocs.io/en/latest/).
|
|
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.2.0 → pyreclaim-0.3.0}/src/reclaim/dynamic_features/utils/catchment_meteorology.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pyreclaim-0.2.0 → pyreclaim-0.3.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.2.0 → pyreclaim-0.3.0}/src/reclaim/static_features/utils/catchment_agreggate.py
RENAMED
|
File without changes
|
|
File without changes
|