openforis-whisp 3.0.0a3__tar.gz → 3.0.0a5__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 (20) hide show
  1. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/PKG-INFO +1 -1
  2. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/pyproject.toml +1 -1
  3. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/__init__.py +1 -1
  4. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/advanced_stats.py +523 -218
  5. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/data_checks.py +80 -28
  6. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/datasets.py +14 -0
  7. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/logger.py +15 -3
  8. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/parameters/lookup_context_and_metadata.csv +1 -1
  9. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/parameters/lookup_gee_datasets.csv +3 -2
  10. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/pd_schemas.py +7 -2
  11. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/reformat.py +6 -1
  12. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/stats.py +10 -11
  13. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/utils.py +19 -0
  14. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/LICENSE +0 -0
  15. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/README.md +0 -0
  16. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/data_conversion.py +0 -0
  17. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/parameters/__init__.py +0 -0
  18. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/parameters/config_runtime.py +0 -0
  19. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/parameters/lookup_gaul1_admin.py +0 -0
  20. {openforis_whisp-3.0.0a3 → openforis_whisp-3.0.0a5}/src/openforis_whisp/risk.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: openforis-whisp
3
- Version: 3.0.0a3
3
+ Version: 3.0.0a5
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
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
4
4
 
5
5
  [tool.poetry]
6
6
  name = "openforis-whisp"
7
- version = "3.0.0a3"
7
+ version = "3.0.0a5"
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 <andrew.arnell@fao.org>"]
@@ -102,5 +102,5 @@ from openforis_whisp.utils import (
102
102
  from openforis_whisp.data_checks import (
103
103
  analyze_geojson,
104
104
  validate_geojson_constraints,
105
- suggest_method,
105
+ suggest_processing_mode,
106
106
  )