openforis-whisp 3.0.0a6__py3-none-any.whl → 3.0.0a8__py3-none-any.whl
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.
- openforis_whisp/__init__.py +3 -1
- openforis_whisp/advanced_stats.py +213 -338
- openforis_whisp/data_checks.py +191 -144
- openforis_whisp/datasets.py +4 -5
- openforis_whisp/reformat.py +8 -6
- openforis_whisp/risk.py +113 -29
- openforis_whisp/stats.py +0 -9
- {openforis_whisp-3.0.0a6.dist-info → openforis_whisp-3.0.0a8.dist-info}/METADATA +37 -120
- {openforis_whisp-3.0.0a6.dist-info → openforis_whisp-3.0.0a8.dist-info}/RECORD +11 -11
- {openforis_whisp-3.0.0a6.dist-info → openforis_whisp-3.0.0a8.dist-info}/LICENSE +0 -0
- {openforis_whisp-3.0.0a6.dist-info → openforis_whisp-3.0.0a8.dist-info}/WHEEL +0 -0
openforis_whisp/__init__.py
CHANGED
|
@@ -101,6 +101,8 @@ from openforis_whisp.utils import (
|
|
|
101
101
|
|
|
102
102
|
from openforis_whisp.data_checks import (
|
|
103
103
|
analyze_geojson,
|
|
104
|
-
|
|
104
|
+
check_geojson_limits,
|
|
105
|
+
screen_geojson, # Backward compatibility alias
|
|
105
106
|
suggest_processing_mode,
|
|
107
|
+
validate_geojson_constraints, # Backward compatibility alias
|
|
106
108
|
)
|