openforis-whisp 0.1.0a2__tar.gz → 0.1.0a3__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 (17) hide show
  1. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/PKG-INFO +2 -2
  2. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/README.md +1 -1
  3. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/pyproject.toml +1 -1
  4. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/__init__.py +4 -0
  5. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/LICENSE +0 -0
  6. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/data_conversion.py +0 -0
  7. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/datasets.py +0 -0
  8. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/logger.py +0 -0
  9. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/parameters/__init__.py +0 -0
  10. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/parameters/config_runtime.py +0 -0
  11. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/parameters/lookup_context_and_metadata.csv +0 -0
  12. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/parameters/lookup_gee_datasets.csv +0 -0
  13. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/pd_schemas.py +0 -0
  14. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/reformat.py +0 -0
  15. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/risk.py +0 -0
  16. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/stats.py +0 -0
  17. {openforis_whisp-0.1.0a2 → openforis_whisp-0.1.0a3}/src/openforis_whisp/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: openforis-whisp
3
- Version: 0.1.0a2
3
+ Version: 0.1.0a3
4
4
  Summary: Whisp (What is in that plot) is an open-source solution which helps to produce relevant forest monitoring information and support compliance with deforestation-related regulations.
5
5
  License: MIT
6
6
  Keywords: whisp,geospatial,data-processing
@@ -130,7 +130,7 @@ https://pypi.org/project/openforis-whisp/
130
130
  It can be installed with one line of code:
131
131
 
132
132
  ```
133
- pip install openforis-whisp
133
+ pip install -pre openforis-whisp
134
134
  ```
135
135
 
136
136
  If running locally we recommend a [virtual environment](https://docs.python.org/3/library/venv.html) to keep your main python installation clean.
@@ -93,7 +93,7 @@ https://pypi.org/project/openforis-whisp/
93
93
  It can be installed with one line of code:
94
94
 
95
95
  ```
96
- pip install openforis-whisp
96
+ pip install -pre openforis-whisp
97
97
  ```
98
98
 
99
99
  If running locally we recommend a [virtual environment](https://docs.python.org/3/library/venv.html) to keep your main python installation clean.
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "openforis-whisp"
7
- version = "0.1.0a2"
7
+ version = "0.1.0a3"
8
8
  description = "Whisp (What is in that plot) is an open-source solution which helps to produce relevant forest monitoring information and support compliance with deforestation-related regulations."
9
9
  repository = "https://github.com/forestdatapartnership/whisp"
10
10
  authors = ["Andy Arnell <and.arnell@fao.org>"]
@@ -29,6 +29,10 @@ try:
29
29
  except Exception as e:
30
30
  print("Error in default EE initialization:", e)
31
31
 
32
+ from opebforis_whisp.datasets import (
33
+ combine_datasets,
34
+ )
35
+
32
36
  from openforis_whisp.stats import (
33
37
  whisp_stats_ee_to_ee,
34
38
  whisp_stats_ee_to_df,