openforis-whisp 3.0.0a1__py3-none-any.whl → 3.0.0a3__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 +7 -7
- openforis_whisp/advanced_stats.py +400 -93
- openforis_whisp/data_checks.py +178 -15
- openforis_whisp/data_conversion.py +154 -59
- openforis_whisp/reformat.py +2 -29
- openforis_whisp/stats.py +15 -45
- openforis_whisp/utils.py +449 -80
- {openforis_whisp-3.0.0a1.dist-info → openforis_whisp-3.0.0a3.dist-info}/METADATA +1 -1
- {openforis_whisp-3.0.0a1.dist-info → openforis_whisp-3.0.0a3.dist-info}/RECORD +11 -11
- {openforis_whisp-3.0.0a1.dist-info → openforis_whisp-3.0.0a3.dist-info}/LICENSE +0 -0
- {openforis_whisp-3.0.0a1.dist-info → openforis_whisp-3.0.0a3.dist-info}/WHEEL +0 -0
openforis_whisp/__init__.py
CHANGED
|
@@ -63,10 +63,6 @@ from openforis_whisp.stats import (
|
|
|
63
63
|
)
|
|
64
64
|
|
|
65
65
|
from openforis_whisp.advanced_stats import (
|
|
66
|
-
whisp_stats_geojson_to_df_concurrent,
|
|
67
|
-
whisp_formatted_stats_geojson_to_df_concurrent,
|
|
68
|
-
whisp_stats_geojson_to_df_sequential,
|
|
69
|
-
whisp_formatted_stats_geojson_to_df_sequential,
|
|
70
66
|
whisp_formatted_stats_geojson_to_df_fast,
|
|
71
67
|
)
|
|
72
68
|
|
|
@@ -83,7 +79,6 @@ from openforis_whisp.reformat import (
|
|
|
83
79
|
create_schema_from_dataframe,
|
|
84
80
|
load_schema_if_any_file_changed,
|
|
85
81
|
format_stats_dataframe,
|
|
86
|
-
# log_missing_columns,
|
|
87
82
|
)
|
|
88
83
|
|
|
89
84
|
from openforis_whisp.data_conversion import (
|
|
@@ -96,11 +91,16 @@ from openforis_whisp.data_conversion import (
|
|
|
96
91
|
|
|
97
92
|
from openforis_whisp.risk import whisp_risk, detect_unit_type
|
|
98
93
|
|
|
99
|
-
from openforis_whisp.utils import
|
|
94
|
+
from openforis_whisp.utils import (
|
|
95
|
+
get_example_data_path,
|
|
96
|
+
generate_test_polygons, # to be deprecated
|
|
97
|
+
generate_random_features,
|
|
98
|
+
generate_random_points,
|
|
99
|
+
generate_random_polygons,
|
|
100
|
+
)
|
|
100
101
|
|
|
101
102
|
from openforis_whisp.data_checks import (
|
|
102
103
|
analyze_geojson,
|
|
103
104
|
validate_geojson_constraints,
|
|
104
|
-
_check_metric_constraints,
|
|
105
105
|
suggest_method,
|
|
106
106
|
)
|