openforis-whisp 0.1.0a4__py3-none-any.whl → 0.1.0a6__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/datasets.py +6 -4
- openforis_whisp/parameters/config_runtime.py +1 -1
- {openforis_whisp-0.1.0a4.dist-info → openforis_whisp-0.1.0a6.dist-info}/METADATA +24 -1
- {openforis_whisp-0.1.0a4.dist-info → openforis_whisp-0.1.0a6.dist-info}/RECORD +6 -6
- {openforis_whisp-0.1.0a4.dist-info → openforis_whisp-0.1.0a6.dist-info}/WHEEL +1 -1
- {openforis_whisp-0.1.0a4.dist-info → openforis_whisp-0.1.0a6.dist-info}/LICENSE +0 -0
openforis_whisp/datasets.py
CHANGED
|
@@ -5,12 +5,14 @@ import ee
|
|
|
5
5
|
|
|
6
6
|
from datetime import datetime
|
|
7
7
|
|
|
8
|
-
from openforis_whisp.parameters.config_runtime import (
|
|
9
|
-
|
|
10
|
-
) # ideally make relative import statement
|
|
8
|
+
# from openforis_whisp.parameters.config_runtime import (
|
|
9
|
+
# geometry_area_column,
|
|
10
|
+
# ) # ideally make relative import statement
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
# defining here instead of importing from config_runtime, to allow functioning as more of a standalone script
|
|
13
|
+
geometry_area_column = "Area"
|
|
13
14
|
|
|
15
|
+
import inspect
|
|
14
16
|
|
|
15
17
|
import logging
|
|
16
18
|
|
|
@@ -5,7 +5,7 @@ percent_or_ha = "ha"
|
|
|
5
5
|
|
|
6
6
|
# output column names
|
|
7
7
|
# The names need to align with whisp/parameters/lookup_context_and_metadata.csv
|
|
8
|
-
geometry_area_column = "Area"
|
|
8
|
+
geometry_area_column = "Area" # Note: datasets.py defines this explicitly as "Area", to allow it to be a standalone script
|
|
9
9
|
|
|
10
10
|
stats_unit_type_column = "Unit"
|
|
11
11
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: openforis-whisp
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a6
|
|
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
|
|
@@ -21,6 +21,7 @@ Requires-Dist: country_converter (>=0.7,<2.0.0)
|
|
|
21
21
|
Requires-Dist: earthengine-api
|
|
22
22
|
Requires-Dist: geemap
|
|
23
23
|
Requires-Dist: geojson (>=2.5.0,<3.0.0)
|
|
24
|
+
Requires-Dist: geopandas (>=1.0.1,<2.0.0)
|
|
24
25
|
Requires-Dist: ipykernel (>=6.17.1,<7.0.0)
|
|
25
26
|
Requires-Dist: numpy (>=1.21.0,<3.0.0)
|
|
26
27
|
Requires-Dist: pandas (>=1.3.0,<3.0.0)
|
|
@@ -162,3 +163,25 @@ You should be able to run the Pytest suite by simple running the `pytest` comman
|
|
|
162
163
|
|
|
163
164
|
Please read the [contributing guidelines](contributing_guidelines.md) for good practice recommendations.
|
|
164
165
|
|
|
166
|
+
|
|
167
|
+
## Code of Conduct <a name="whisp_conduct"></a>
|
|
168
|
+
|
|
169
|
+
**Purpose**
|
|
170
|
+
We are dedicated to maintaining a safe and respectful environment for all users. Harassment or abusive behavior will not be tolerated. <br>
|
|
171
|
+
|
|
172
|
+
**Scope**
|
|
173
|
+
This Code applies to all interactions on the repository and on the app.
|
|
174
|
+
|
|
175
|
+
**Expectations** <br>
|
|
176
|
+
*- Respect others:* Treat all contributors and users with courtesy and kindness. <br>
|
|
177
|
+
*- Constructive communication:* Engage respectfully, even in disagreements. <br>
|
|
178
|
+
*- Protect privacy:* Do not share personal information without consent.
|
|
179
|
+
|
|
180
|
+
**Prohibited Conduct** <br>
|
|
181
|
+
*- Harassment:* Unwanted or abusive communication, stalking, threats, or bullying.<br>
|
|
182
|
+
*- Discrimination:* Any form of hate speech or exclusion based on race, gender, orientation, or other identities.<br>
|
|
183
|
+
*- Inappropriate Content:* Posting offensive, harmful, or explicit material.
|
|
184
|
+
|
|
185
|
+
**Reporting**
|
|
186
|
+
Users can report violations directly to us by emailing the address listed in the "Contact Us" section of the website:
|
|
187
|
+
https://openforis.org/solutions/whisp/
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
openforis_whisp/__init__.py,sha256=ozyJr8a-da-_dIq6gy2sD5U-2CevrgWF6XztqNU1Oew,2373
|
|
2
2
|
openforis_whisp/data_conversion.py,sha256=96en23_ysP7OfOJNGBssDyaX8seuzYGUarqdgnbI4SU,10961
|
|
3
|
-
openforis_whisp/datasets.py,sha256=
|
|
3
|
+
openforis_whisp/datasets.py,sha256=YsPSKzKx62ZpbWvyA9piVnRcwl8R2yW4md68esEb0I0,23470
|
|
4
4
|
openforis_whisp/logger.py,sha256=bcKu82a3njNIBiRghDcO_cC-SOK62cYAYuTaSWq7s9I,1354
|
|
5
5
|
openforis_whisp/parameters/__init__.py,sha256=KL7iORJVjSpZatYjoyWckcmQJnE89_DBC8R6_0_eR6o,349
|
|
6
|
-
openforis_whisp/parameters/config_runtime.py,sha256=
|
|
6
|
+
openforis_whisp/parameters/config_runtime.py,sha256=b1Rk7VSRsfo6ucXeuZgm-jwW0-tL90bgbNqKMcLyV40,1233
|
|
7
7
|
openforis_whisp/parameters/lookup_context_and_metadata.csv,sha256=4eciReFRPRSDeKBiUiODbhFrtZcguxgxc2DOlMB6qG8,1003
|
|
8
8
|
openforis_whisp/parameters/lookup_gee_datasets.csv,sha256=nH_StTYmxY74lYBsWNbK60FhUBmGzXiVyWdJ-sJ9ezA,11627
|
|
9
9
|
openforis_whisp/pd_schemas.py,sha256=W_ocS773LHfc05dJqvWRa-bRdX0wKFoNp0lMxgFx94Y,2681
|
|
@@ -11,7 +11,7 @@ openforis_whisp/reformat.py,sha256=_ByLR5bu_gPecH6W4jxymkcIN5Hph3bRIuRfjZByNBU,1
|
|
|
11
11
|
openforis_whisp/risk.py,sha256=qgrBnioYS_vMPWs_rXFR5k_TacxBACHbeYmPhBmqMrM,13367
|
|
12
12
|
openforis_whisp/stats.py,sha256=Y-IfazrTA_O5wQ8YE0GypXQYopp1V-ym_jPLwtNCw4M,26405
|
|
13
13
|
openforis_whisp/utils.py,sha256=hpeY9aA3BND2m9c15PZ6_nClemsfiVNUEzA4pQXfztA,5330
|
|
14
|
-
openforis_whisp-0.1.
|
|
15
|
-
openforis_whisp-0.1.
|
|
16
|
-
openforis_whisp-0.1.
|
|
17
|
-
openforis_whisp-0.1.
|
|
14
|
+
openforis_whisp-0.1.0a6.dist-info/LICENSE,sha256=nqyqICO95iw_iwzP1t_IIAf7ZX3DPbL_M9WyQfh2q1k,1085
|
|
15
|
+
openforis_whisp-0.1.0a6.dist-info/METADATA,sha256=JEUN5V-L1icTcnlvmEffXjyvEpjOWmNHU6XQyu3tFuc,11442
|
|
16
|
+
openforis_whisp-0.1.0a6.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
17
|
+
openforis_whisp-0.1.0a6.dist-info/RECORD,,
|
|
File without changes
|