hestia-earth-models 0.61.6__py3-none-any.whl → 0.61.7__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.
Potentially problematic release.
This version of hestia-earth-models might be problematic. Click here for more details.
- hestia_earth/models/cycle/input/hestiaAggregatedData.py +1 -1
- hestia_earth/models/mocking/search-results.json +293 -193
- hestia_earth/models/schererPfister2015/pToDrainageWaterSoilFlux.py +1 -1
- hestia_earth/models/schererPfister2015/pToGroundwaterSoilFlux.py +1 -1
- hestia_earth/models/site/soilMeasurement.py +11 -29
- hestia_earth/models/utils/aquacultureManagement.py +2 -2
- hestia_earth/models/utils/crop.py +24 -1
- hestia_earth/models/utils/cycle.py +0 -23
- hestia_earth/models/utils/lookup.py +6 -3
- hestia_earth/models/utils/site.py +25 -13
- hestia_earth/models/version.py +1 -1
- {hestia_earth_models-0.61.6.dist-info → hestia_earth_models-0.61.7.dist-info}/METADATA +1 -1
- {hestia_earth_models-0.61.6.dist-info → hestia_earth_models-0.61.7.dist-info}/RECORD +18 -18
- tests/models/site/test_soilMeasurement.py +2 -1
- tests/models/utils/{test_cycle.py → test_crop.py} +2 -2
- {hestia_earth_models-0.61.6.dist-info → hestia_earth_models-0.61.7.dist-info}/LICENSE +0 -0
- {hestia_earth_models-0.61.6.dist-info → hestia_earth_models-0.61.7.dist-info}/WHEEL +0 -0
- {hestia_earth_models-0.61.6.dist-info → hestia_earth_models-0.61.7.dist-info}/top_level.txt +0 -0
|
@@ -10,7 +10,7 @@ from hestia_earth.schema import TermTermType
|
|
|
10
10
|
from hestia_earth.utils.model import find_primary_product, find_term_match, linked_node
|
|
11
11
|
|
|
12
12
|
from hestia_earth.models.log import debugValues, logRequirements, logShouldRun
|
|
13
|
-
from hestia_earth.models.utils.
|
|
13
|
+
from hestia_earth.models.utils.crop import valid_site_type
|
|
14
14
|
from hestia_earth.models.utils.term import get_generic_crop
|
|
15
15
|
from hestia_earth.models.utils.aggregated import (
|
|
16
16
|
should_link_input_to_impact, link_inputs_to_impact, find_closest_impact, aggregated_end_date
|