hestia-earth-models 0.64.7__py3-none-any.whl → 0.64.9__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/animal/milkYield.py +10 -22
- hestia_earth/models/cycle/siteArea.py +2 -1
- hestia_earth/models/cycle/unknownPreSeasonWaterRegime.py +0 -1
- hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandOccupation.py +73 -82
- hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandTransformation.py +168 -0
- hestia_earth/models/environmentalFootprintV3/soilQualityIndexTotalLandUseEffects.py +77 -0
- hestia_earth/models/environmentalFootprintV3/utils.py +1 -1
- hestia_earth/models/faostat2018/landTransformationFromCropland100YearAverage.py +3 -2
- hestia_earth/models/faostat2018/landTransformationFromCropland20YearAverage.py +3 -2
- hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py +69 -37
- hestia_earth/models/hyde32/utils.py +4 -0
- hestia_earth/models/ipcc2019/animal/fatContent.py +38 -0
- hestia_earth/models/ipcc2019/animal/liveweightGain.py +3 -54
- hestia_earth/models/ipcc2019/animal/liveweightPerHead.py +3 -54
- hestia_earth/models/ipcc2019/animal/pastureGrass.py +3 -1
- hestia_earth/models/ipcc2019/animal/pregnancyRateTotal.py +38 -0
- hestia_earth/models/ipcc2019/animal/trueProteinContent.py +38 -0
- hestia_earth/models/ipcc2019/animal/utils.py +87 -3
- hestia_earth/models/ipcc2019/animal/weightAtMaturity.py +4 -10
- hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChangeLandUseChange.py +191 -0
- hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChangeLandUseChange.py +204 -0
- hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py +255 -35
- hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChangeManagementChange.py +63 -149
- hestia_earth/models/ipcc2019/pastureGrass.py +3 -1
- hestia_earth/models/mocking/search-results.json +2026 -26
- hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py +1 -1
- hestia_earth/models/poschEtAl2008/terrestrialAcidificationPotentialAccumulatedExceedance.py +4 -1
- hestia_earth/models/poschEtAl2008/terrestrialEutrophicationPotentialAccumulatedExceedance.py +4 -1
- hestia_earth/models/site/management.py +3 -5
- hestia_earth/models/utils/__init__.py +5 -4
- hestia_earth/models/utils/impact_assessment.py +13 -4
- hestia_earth/models/utils/input.py +5 -2
- hestia_earth/models/utils/site.py +4 -2
- hestia_earth/models/version.py +1 -1
- {hestia_earth_models-0.64.7.dist-info → hestia_earth_models-0.64.9.dist-info}/METADATA +2 -2
- {hestia_earth_models-0.64.7.dist-info → hestia_earth_models-0.64.9.dist-info}/RECORD +58 -44
- tests/models/cycle/animal/test_milkYield.py +1 -14
- tests/models/environmentalFootprintV3/test_soilQualityIndexLandOccupation.py +97 -66
- tests/models/environmentalFootprintV3/test_soilQualityIndexLandTransformation.py +176 -0
- tests/models/environmentalFootprintV3/test_soilQualityIndexTotalLandUseEffects.py +55 -0
- tests/models/frischknechtEtAl2000/test_ionisingRadiationKbqU235Eq.py +67 -44
- tests/models/ipcc2019/animal/test_fatContent.py +22 -0
- tests/models/ipcc2019/animal/test_liveweightGain.py +4 -2
- tests/models/ipcc2019/animal/test_liveweightPerHead.py +4 -2
- tests/models/ipcc2019/animal/test_pregnancyRateTotal.py +22 -0
- tests/models/ipcc2019/animal/test_trueProteinContent.py +22 -0
- tests/models/ipcc2019/animal/test_weightAtMaturity.py +2 -1
- tests/models/ipcc2019/test_co2ToAirAboveGroundBiomassStockChangeLandUseChange.py +83 -0
- tests/models/ipcc2019/test_co2ToAirBelowGroundBiomassStockChangeLandUseChange.py +83 -0
- tests/models/ipcc2019/test_co2ToAirCarbonStockChange_utils.py +6 -6
- tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChangeManagementChange.py +5 -4
- tests/models/poschEtAl2008/test_terrestrialAcidificationPotentialAccumulatedExceedance.py +30 -17
- tests/models/poschEtAl2008/test_terrestrialEutrophicationPotentialAccumulatedExceedance.py +28 -14
- tests/models/site/test_management.py +4 -1
- tests/models/utils/test_input.py +65 -1
- {hestia_earth_models-0.64.7.dist-info → hestia_earth_models-0.64.9.dist-info}/LICENSE +0 -0
- {hestia_earth_models-0.64.7.dist-info → hestia_earth_models-0.64.9.dist-info}/WHEEL +0 -0
- {hestia_earth_models-0.64.7.dist-info → hestia_earth_models-0.64.9.dist-info}/top_level.txt +0 -0
|
@@ -63,7 +63,7 @@ def _should_run(impact_assessment: dict):
|
|
|
63
63
|
land_occupation_kg=land_occupation_m2_kg,
|
|
64
64
|
land_covert_term_id=land_covert_term_id)
|
|
65
65
|
|
|
66
|
-
should_run = all([land_occupation_m2_kg is not None])
|
|
66
|
+
should_run = all([land_covert_term_id, land_occupation_m2_kg is not None])
|
|
67
67
|
logShouldRun(impact_assessment, MODEL, TERM_ID, should_run)
|
|
68
68
|
return should_run, land_occupation_m2_kg, land_covert_term_id
|
|
69
69
|
|
|
@@ -25,6 +25,8 @@ LOOKUPS = {
|
|
|
25
25
|
}
|
|
26
26
|
TERM_ID = 'terrestrialAcidificationPotentialAccumulatedExceedance'
|
|
27
27
|
|
|
28
|
+
LOOKUP = f"{list(LOOKUPS.keys())[0]}.csv"
|
|
29
|
+
|
|
28
30
|
|
|
29
31
|
def _indicator(value: float):
|
|
30
32
|
indicator = _new_indicator(TERM_ID, MODEL)
|
|
@@ -33,7 +35,8 @@ def _indicator(value: float):
|
|
|
33
35
|
|
|
34
36
|
|
|
35
37
|
def run(impact_assessment: dict):
|
|
36
|
-
value = impact_country_value(MODEL, TERM_ID, impact_assessment, f"{list(LOOKUPS.keys())[0]}.csv"
|
|
38
|
+
value = impact_country_value(MODEL, TERM_ID, impact_assessment, f"{list(LOOKUPS.keys())[0]}.csv",
|
|
39
|
+
country_fallback=True, default_no_emissions=0)
|
|
37
40
|
logRequirements(impact_assessment, model=MODEL, term=TERM_ID,
|
|
38
41
|
value=value)
|
|
39
42
|
logShouldRun(impact_assessment, MODEL, TERM_ID, True)
|
hestia_earth/models/poschEtAl2008/terrestrialEutrophicationPotentialAccumulatedExceedance.py
CHANGED
|
@@ -25,6 +25,8 @@ LOOKUPS = {
|
|
|
25
25
|
}
|
|
26
26
|
TERM_ID = 'terrestrialEutrophicationPotentialAccumulatedExceedance'
|
|
27
27
|
|
|
28
|
+
LOOKUP = f"{list(LOOKUPS.keys())[0]}.csv"
|
|
29
|
+
|
|
28
30
|
|
|
29
31
|
def _indicator(value: float):
|
|
30
32
|
indicator = _new_indicator(TERM_ID, MODEL)
|
|
@@ -33,7 +35,8 @@ def _indicator(value: float):
|
|
|
33
35
|
|
|
34
36
|
|
|
35
37
|
def run(impact_assessment: dict):
|
|
36
|
-
value = impact_country_value(MODEL, TERM_ID, impact_assessment, f"{list(LOOKUPS.keys())[0]}.csv"
|
|
38
|
+
value = impact_country_value(MODEL, TERM_ID, impact_assessment, f"{list(LOOKUPS.keys())[0]}.csv",
|
|
39
|
+
country_fallback=True, default_no_emissions=0)
|
|
37
40
|
logRequirements(impact_assessment, model=MODEL, term=TERM_ID,
|
|
38
41
|
value=value)
|
|
39
42
|
logShouldRun(impact_assessment, MODEL, TERM_ID, True)
|
|
@@ -267,10 +267,8 @@ def _should_run_all_products(cycles: list, site_type: str):
|
|
|
267
267
|
dates = sorted(list(set(
|
|
268
268
|
non_empty_list(flatten([[cycle.get('startDate'), cycle.get('endDate')] for cycle in cycles]))
|
|
269
269
|
))) if site_type not in _SKIP_LAND_COVER_SITE_TYPES else []
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
site_type
|
|
273
|
-
]) else None
|
|
270
|
+
site_type_id = get_landCover_term_id_from_site_type(site_type) if site_type else None
|
|
271
|
+
site_type_term = download_hestia(site_type_id) if all([len(dates) >= 2, site_type_id]) else None
|
|
274
272
|
products_site_type = [{
|
|
275
273
|
"term": linked_node(site_type_term),
|
|
276
274
|
"value": 100,
|
|
@@ -286,7 +284,7 @@ def _should_run(site: dict):
|
|
|
286
284
|
|
|
287
285
|
products_animal, products_crop_forage, products_land_cover = _should_run_all_products(
|
|
288
286
|
cycles=cycles,
|
|
289
|
-
site_type=site.get("siteType"
|
|
287
|
+
site_type=site.get("siteType")
|
|
290
288
|
)
|
|
291
289
|
all_products = products_land_cover + products_crop_forage + products_animal
|
|
292
290
|
all_products = condense_nodes(all_products)
|
|
@@ -188,9 +188,10 @@ def full_date_str(date_str: str, is_end: bool = False):
|
|
|
188
188
|
)
|
|
189
189
|
|
|
190
190
|
|
|
191
|
-
def days_to_years(days):
|
|
192
|
-
return days / 365
|
|
191
|
+
def days_to_years(days): return days / 365
|
|
193
192
|
|
|
194
193
|
|
|
195
|
-
def hectar_to_square_meter(value):
|
|
196
|
-
|
|
194
|
+
def hectar_to_square_meter(value): return value * 10000
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
def square_meter_to_hectare(value): return value / 10000
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
from typing import Optional
|
|
2
2
|
|
|
3
|
+
from hestia_earth.utils.lookup import download_lookup
|
|
3
4
|
from hestia_earth.utils.model import find_term_match
|
|
4
5
|
from hestia_earth.utils.tools import list_sum, safe_parse_date
|
|
5
6
|
|
|
6
|
-
from .lookup import factor_value, _term_factor_value, _aware_factor_value
|
|
7
|
+
from .lookup import factor_value, _term_factor_value, _aware_factor_value, fallback_country
|
|
7
8
|
from .product import find_by_product
|
|
8
9
|
from .site import region_level_1_id
|
|
9
10
|
from ..log import logRequirements
|
|
@@ -116,7 +117,8 @@ def impact_lookup_value(model: str, term_id: str, impact: dict, lookup_col: str,
|
|
|
116
117
|
return list_sum(values) if len(values) > 0 else None
|
|
117
118
|
|
|
118
119
|
|
|
119
|
-
def impact_country_value(model: str, term_id: str, impact: dict, lookup: str, group_key: str = None
|
|
120
|
+
def impact_country_value(model: str, term_id: str, impact: dict, lookup: str, group_key: str = None,
|
|
121
|
+
country_fallback: bool = False, default_no_emissions=None) -> float:
|
|
120
122
|
"""
|
|
121
123
|
Calculate the value of the impact based on lookup factors and `site.country.@id`.
|
|
122
124
|
|
|
@@ -126,12 +128,17 @@ def impact_country_value(model: str, term_id: str, impact: dict, lookup: str, gr
|
|
|
126
128
|
The model to display in the logs only.
|
|
127
129
|
term_id : str
|
|
128
130
|
The term to display in the logs only.
|
|
129
|
-
|
|
131
|
+
impact : dict
|
|
130
132
|
The `ImpactAssessment`.
|
|
131
133
|
lookup : str
|
|
132
134
|
The name of the lookup to fetch the factors from.
|
|
133
135
|
group_key : str
|
|
134
136
|
Optional: key to use if the data is a group of values.
|
|
137
|
+
country_fallback : bool
|
|
138
|
+
Optional: if True fallback to default `region-world` country_id if country_id in `ImpactAssessment` not found in
|
|
139
|
+
lookup file containing factors.
|
|
140
|
+
default_no_emissions :
|
|
141
|
+
Optional: if set, will return this value if no contributing terms found in emissionsResourceUse
|
|
135
142
|
|
|
136
143
|
Returns
|
|
137
144
|
-------
|
|
@@ -140,9 +147,11 @@ def impact_country_value(model: str, term_id: str, impact: dict, lookup: str, gr
|
|
|
140
147
|
"""
|
|
141
148
|
nodes = impact.get('emissionsResourceUse', [])
|
|
142
149
|
country_id = get_country_id(impact)
|
|
150
|
+
country_id = fallback_country(country_id, [download_lookup(lookup)]) if country_fallback else country_id
|
|
151
|
+
|
|
143
152
|
factors = list(map(_term_factor_value(model, term_id, lookup, country_id, group_key), nodes))
|
|
144
153
|
values = [value for value in factors if value is not None]
|
|
145
|
-
return list_sum(values) if len(values) > 0 else
|
|
154
|
+
return list_sum(values) if len(values) > 0 else default_no_emissions
|
|
146
155
|
|
|
147
156
|
|
|
148
157
|
def impact_aware_value(model: str, term_id: str, impact: dict, lookup: str, group_key: str = None) -> float:
|
|
@@ -7,7 +7,7 @@ from hestia_earth.utils.lookup import download_lookup, get_table_value, column_n
|
|
|
7
7
|
from ..log import logger
|
|
8
8
|
from . import _term_id, _include_model, _filter_list_term_unit, _load_calculated_node
|
|
9
9
|
from .constant import Units
|
|
10
|
-
from .blank_node import get_total_value, get_total_value_converted
|
|
10
|
+
from .blank_node import get_total_value, get_total_value_converted, get_lookup_value
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
def _new_input(term, model=None):
|
|
@@ -96,7 +96,10 @@ def get_feed_inputs(cycle: dict):
|
|
|
96
96
|
return [input for input in inputs if all([
|
|
97
97
|
list_sum(input.get('value', [])) > 0,
|
|
98
98
|
input.get('term', {}).get('units') == Units.KG.value,
|
|
99
|
-
input.get('isAnimalFeed', False) is True
|
|
99
|
+
input.get('isAnimalFeed', False) is True,
|
|
100
|
+
# handle feed food additives
|
|
101
|
+
input.get('term', {}).get('termType') != TermTermType.FEEDFOODADDITIVE.value or
|
|
102
|
+
bool(get_lookup_value(input.get('term', {}), 'hasEnergyContent'))
|
|
100
103
|
])]
|
|
101
104
|
|
|
102
105
|
|
|
@@ -125,5 +125,7 @@ def region_factor(model: str, region_id: str, term_id: str, termType: TermTermTy
|
|
|
125
125
|
|
|
126
126
|
def get_land_cover_term_id(site_type: str):
|
|
127
127
|
land_cover_terms = get_land_cover_siteTypes()
|
|
128
|
-
term = next((
|
|
129
|
-
|
|
128
|
+
term = next((
|
|
129
|
+
term for term in land_cover_terms if term["name"].lower() == site_type.lower()
|
|
130
|
+
), {}) if site_type else {}
|
|
131
|
+
return term.get('@id')
|
hestia_earth/models/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION = '0.64.
|
|
1
|
+
VERSION = '0.64.9'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: hestia-earth-models
|
|
3
|
-
Version: 0.64.
|
|
3
|
+
Version: 0.64.9
|
|
4
4
|
Summary: HESTIA's set of modules for filling gaps in the activity data using external datasets (e.g. populating soil properties with a geospatial dataset using provided coordinates) and internal lookups (e.g. populating machinery use from fuel use). Includes rules for when gaps should be filled versus not (e.g. never gap fill yield, gap fill crop residue if yield provided etc.).
|
|
5
5
|
Home-page: https://gitlab.com/hestia-earth/hestia-engine-models
|
|
6
6
|
Author: HESTIA Team
|
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.6
|
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
Requires-Dist: hestia-earth.schema==30.*
|
|
15
|
-
Requires-Dist: hestia-earth.utils>=0.13.
|
|
15
|
+
Requires-Dist: hestia-earth.utils>=0.13.5
|
|
16
16
|
Requires-Dist: python-dateutil>=2.8.1
|
|
17
17
|
Requires-Dist: CurrencyConverter==0.16.8
|
|
18
18
|
Requires-Dist: haversine>=2.7.0
|
|
@@ -4,7 +4,7 @@ hestia_earth/models/cache_sites.py,sha256=KQp9cUKE-aIcYJoMWEtKFYS8gBFfsx5LKQhqoW
|
|
|
4
4
|
hestia_earth/models/log.py,sha256=DbfNcGzaC5hzkuMDxQqW6XYoNBI4Uxw4SIoOYoZA6og,3474
|
|
5
5
|
hestia_earth/models/preload_requests.py,sha256=Ibx-YOhR_1yuyFBxsLUbvJHVK7PLyMLoPu5l9jDN_Qk,1342
|
|
6
6
|
hestia_earth/models/requirements.py,sha256=eU4yT443fx7BnaokhrLB_PCizJI7Y6m4auyo8vQauNg,17363
|
|
7
|
-
hestia_earth/models/version.py,sha256=
|
|
7
|
+
hestia_earth/models/version.py,sha256=Jgb2_29ee7rkzvbt06so5Fn_7zQiC2iVFHY9sT85u3c,19
|
|
8
8
|
hestia_earth/models/agribalyse2016/__init__.py,sha256=WvK0qCQbnYtg9oZxrACd1wGormZyXibPtpCnIQeDqbw,415
|
|
9
9
|
hestia_earth/models/agribalyse2016/fuelElectricity.py,sha256=tnGxBmJdPfPFfehLUQcefEqy1lHvzsSpx_s7O8nf3Zs,4412
|
|
10
10
|
hestia_earth/models/agribalyse2016/machineryInfrastructureDepreciatedAmountPerCycle.py,sha256=BPjnWmg73i_OxM2ouCdMTWZtPIqyoUAXrvutntyteE0,3390
|
|
@@ -60,17 +60,17 @@ hestia_earth/models/cycle/residueBurnt.py,sha256=HwU1D9ibiIul-FlXDUcEMDEc_KxpB8u
|
|
|
60
60
|
hestia_earth/models/cycle/residueIncorporated.py,sha256=9_s2RMOy5D20eq9ziDBEA_Y7RiFFMeK0bDJ65CW4qlE,2763
|
|
61
61
|
hestia_earth/models/cycle/residueLeftOnField.py,sha256=qYxKGAdUORN7Vjqj7AZC2VGV_rM3MN0-padDGhgjiNU,2175
|
|
62
62
|
hestia_earth/models/cycle/residueRemoved.py,sha256=jxDu_Jfcyd-rm-qo8ZuRIf-GGxtFBMpmGy1zHOavwy0,2135
|
|
63
|
-
hestia_earth/models/cycle/siteArea.py,sha256=
|
|
63
|
+
hestia_earth/models/cycle/siteArea.py,sha256=K_Vj8lc_HP1WOVm22jlIMfE9fIOc6WkMXe-iDHiTdB4,2748
|
|
64
64
|
hestia_earth/models/cycle/siteDuration.py,sha256=8VCYn608Lw1A6gLOG2bA1Z2tAQbmDg_yXeq6sgkrXac,2342
|
|
65
65
|
hestia_earth/models/cycle/siteUnusedDuration.py,sha256=orYGlbzGMpjuDAtZe7KkCOLWrwUYR1H4A0ccAbutW3s,2189
|
|
66
66
|
hestia_earth/models/cycle/startDate.py,sha256=pbBi55b6uJezPE8EOovOCSwQVrbwpmxwmravOCIh2zg,2683
|
|
67
67
|
hestia_earth/models/cycle/startDateDefinition.py,sha256=6oJmT6XRKYbv2Jer2UJpkOQqHQKjIAEqPz7yv7k-HP4,2187
|
|
68
68
|
hestia_earth/models/cycle/stockingDensityAnimalHousingAverage.py,sha256=f1houLdigq6EGMrG3dL8WqAaGVlpXNJB74VbSxWQUCY,1843
|
|
69
69
|
hestia_earth/models/cycle/transformation.py,sha256=06KTfVubh2I47dfnG9Iv6AbuUBbURM8BAVOkRu7XmHw,1255
|
|
70
|
-
hestia_earth/models/cycle/unknownPreSeasonWaterRegime.py,sha256=
|
|
70
|
+
hestia_earth/models/cycle/unknownPreSeasonWaterRegime.py,sha256=s0vO5-6yNA2I2PbQvoXDO-THxU4k7wveieQFY-q26c0,1453
|
|
71
71
|
hestia_earth/models/cycle/utils.py,sha256=SaJyQEufLlUCeA6P2rgK5nev1D8J1eCthPUwG0ZPvRE,1407
|
|
72
72
|
hestia_earth/models/cycle/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
|
-
hestia_earth/models/cycle/animal/milkYield.py,sha256=
|
|
73
|
+
hestia_earth/models/cycle/animal/milkYield.py,sha256=QIPa3MJLkX0CUdmeAcA3lFOi0UmXqbG3Z0-uKH8thTM,2371
|
|
74
74
|
hestia_earth/models/cycle/animal/properties.py,sha256=OGjRl79w-h439jTkjA8b4V61fMuo0McoUs3JrgK-0Zc,596
|
|
75
75
|
hestia_earth/models/cycle/animal/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
76
|
hestia_earth/models/cycle/animal/input/hestiaAggregatedData.py,sha256=EpJ6qU0jsoSMEuZYIKCn1f-loJ53_nmpnyDhH5sZTuw,2529
|
|
@@ -138,8 +138,10 @@ hestia_earth/models/emepEea2019/utils.py,sha256=oTHjbRRwJZv_tpO9MOlfpyQRmN0a1kvE
|
|
|
138
138
|
hestia_earth/models/emissionNotRelevant/__init__.py,sha256=nIuPIkQR1ghv_T_Ab4Ckq5wmGdWVmgbaOjhtKfIJ-WE,2183
|
|
139
139
|
hestia_earth/models/environmentalFootprintV3/__init__.py,sha256=lzg9qccwd9tbspw0lQ58YPprnvvSLTn3QV5T2-tPcC4,425
|
|
140
140
|
hestia_earth/models/environmentalFootprintV3/freshwaterEcotoxicityPotentialCtue.py,sha256=X62-4v0NJdM_Z5kLK3NuU4GNEeSrXlKlMZQB_o4JZ6c,1018
|
|
141
|
-
hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandOccupation.py,sha256=
|
|
142
|
-
hestia_earth/models/environmentalFootprintV3/
|
|
141
|
+
hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandOccupation.py,sha256=r3GV2pspKWAlKU46TMh_6D_rrXtY_onhk3RnukzJjD8,5095
|
|
142
|
+
hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandTransformation.py,sha256=1vDkm9SifdcNNJX8JGDeuyTNP65D684X7I2kk3H760U,7348
|
|
143
|
+
hestia_earth/models/environmentalFootprintV3/soilQualityIndexTotalLandUseEffects.py,sha256=SIjFYPv4n3mziohW2nlycaMssHQ3ws79hqHa4i3sCVI,2997
|
|
144
|
+
hestia_earth/models/environmentalFootprintV3/utils.py,sha256=fZ99_G0Kh4OUW5wH-LglzCrKp8l2plKuCs4yvUH_3hs,699
|
|
143
145
|
hestia_earth/models/epa2014/__init__.py,sha256=ckGf_6X7CCzI_18OqchEkuJAXKXM1x7V53u480ckknM,408
|
|
144
146
|
hestia_earth/models/epa2014/no3ToGroundwaterExcreta.py,sha256=fN4fOOcjBg3tl0lzNeJ8mzg6mrvQRxilx-R5Gc4l4Nw,1724
|
|
145
147
|
hestia_earth/models/fantkeEtAl2016/__init__.py,sha256=NtOlRmjTA4e8i0nW8erwdm-DDtfYlbLiARqqv82bkU4,415
|
|
@@ -147,8 +149,8 @@ hestia_earth/models/fantkeEtAl2016/damageToHumanHealthParticulateMatterFormation
|
|
|
147
149
|
hestia_earth/models/faostat2018/__init__.py,sha256=ecN-pKF1pkFnzmooBrg1VAxJkG76q9v4piiaKGP_vbo,412
|
|
148
150
|
hestia_earth/models/faostat2018/coldCarcassWeightPerHead.py,sha256=y1ouj5FBrnGWxd4dIC7luG6iQwiMrm1CGgYbXCcKS8E,3139
|
|
149
151
|
hestia_earth/models/faostat2018/coldDressedCarcassWeightPerHead.py,sha256=Aphq7r06Q5-RDer4i1CneOLifVQCKTiVPTIWE3AxLfE,3230
|
|
150
|
-
hestia_earth/models/faostat2018/landTransformationFromCropland100YearAverage.py,sha256=
|
|
151
|
-
hestia_earth/models/faostat2018/landTransformationFromCropland20YearAverage.py,sha256=
|
|
152
|
+
hestia_earth/models/faostat2018/landTransformationFromCropland100YearAverage.py,sha256=M0NblGiHme8yL8CBvZvfgbW52DODq4FO_Y3iThlq3n0,2684
|
|
153
|
+
hestia_earth/models/faostat2018/landTransformationFromCropland20YearAverage.py,sha256=HuFHJDAqNaaJWpaWxD1jGaQsTdsJEVufsPGKwI6iAb0,2677
|
|
152
154
|
hestia_earth/models/faostat2018/liveweightPerHead.py,sha256=flI3_TyG-7xoWp6cU6pZAFiXyHyFkfRz7Lmb7cQAffI,5140
|
|
153
155
|
hestia_earth/models/faostat2018/readyToCookWeightPerHead.py,sha256=b1_GZQ3oFl88w6TY5DqLSqXNaYX6TcRBK4R9M2cWSjM,3165
|
|
154
156
|
hestia_earth/models/faostat2018/seed.py,sha256=ts9PKs9UnZnJ9nPFlL7etL1Qb9uIWIES8Mz8W7FWbOw,2917
|
|
@@ -156,7 +158,7 @@ hestia_earth/models/faostat2018/utils.py,sha256=Ud2vu_8ze5VFfeBFBzUKdJTWRfxVJO4V
|
|
|
156
158
|
hestia_earth/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
159
|
hestia_earth/models/faostat2018/product/price.py,sha256=X7Zxa-rXthzYdgw2lzybbHc-oKGE5nyXpBn-BfZC_7w,7753
|
|
158
160
|
hestia_earth/models/frischknechtEtAl2000/__init__.py,sha256=Fixyy9UwoCGP5-MHyJu_ctS40SQ2imfvZo8a547029U,421
|
|
159
|
-
hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py,sha256=
|
|
161
|
+
hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py,sha256=czZx8DgnDuLOdK0CfiriPbj1BwoiWn4d1nkQOiwkcPA,4472
|
|
160
162
|
hestia_earth/models/geospatialDatabase/__init__.py,sha256=TH-FW3aoL7r1GquRChr7rde7uQonKQRDR00udG8tDrQ,957
|
|
161
163
|
hestia_earth/models/geospatialDatabase/aware.py,sha256=cbxFnShXW8QUCIjU4uuO1DdK9KhYiLf41ZVjS9hSppI,1358
|
|
162
164
|
hestia_earth/models/geospatialDatabase/clayContent.py,sha256=u8SQKx-zu3vhMQ-XOJgqyUn-tlCCIy-VG7zpl5AyjtY,3386
|
|
@@ -203,7 +205,7 @@ hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation100YearAv
|
|
|
203
205
|
hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py,sha256=Yi6Jnh4G4hILUoV2fgkDBNzT9Q7BY5wCUHEB-OUejys,2460
|
|
204
206
|
hestia_earth/models/hyde32/landTransformationFromPermanentPasture100YearAverageDuringCycle.py,sha256=ZkRn4toDe3flLtJG6iptE6cCFEkexVQ4lg2nr779Do8,2442
|
|
205
207
|
hestia_earth/models/hyde32/landTransformationFromPermanentPasture20YearAverageDuringCycle.py,sha256=wz2YMJ_qG1_2BosqsI6TDKAPqvVE6a3Ejuikz-cv-Z0,2433
|
|
206
|
-
hestia_earth/models/hyde32/utils.py,sha256=
|
|
208
|
+
hestia_earth/models/hyde32/utils.py,sha256=38iHv9XBkQpvQn0iht22DP35bh9fC5BRmi3YVppEyGo,3505
|
|
207
209
|
hestia_earth/models/impact_assessment/__init__.py,sha256=gTR_PhWps593fPhm-V826VLLrZVH8CNQTqxExB7GGNI,418
|
|
208
210
|
hestia_earth/models/impact_assessment/allocationMethod.py,sha256=Qz41nTtMpDCcPy7PjhVtafE13dfJLX_D3Rg3yNhdY_Q,1279
|
|
209
211
|
hestia_earth/models/impact_assessment/emissions.py,sha256=mJsTasM-5AFtZeKzQ9Q38SDLcnl_lQwfjQ52ro2Pjmg,3444
|
|
@@ -247,9 +249,11 @@ hestia_earth/models/ipcc2019/ch4ToAirAquacultureSystems.py,sha256=q6yyEiYQhHJ2Vy
|
|
|
247
249
|
hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=7rA9thwYXbJkSFTEl71AbFVQfBz0CaJfblpJpO9s6D8,11611
|
|
248
250
|
hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=eY_yb7ncTb_2HoUUgXZnnRHiybTXYj_DTe3CmDzD3fY,6717
|
|
249
251
|
hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py,sha256=TJ4J7VA5n4RPrJYZQeR3lc3ZoCw7T1E5Cb1XJewr834,7331
|
|
250
|
-
hestia_earth/models/ipcc2019/
|
|
252
|
+
hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChangeLandUseChange.py,sha256=Hw7Nd1L2afLWHS0SbJT60m_YefmgR_izIvOf6mw-mxQ,5752
|
|
253
|
+
hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChangeLandUseChange.py,sha256=x5dvIQ3QfSrEM-VFIC7_owQr-1aC7T6RXGoc5X-q90k,5803
|
|
254
|
+
hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py,sha256=LTISlOz71vTgslkI5c5iqL0lqwDI6rOcwSlNcRMgTxQ,40729
|
|
251
255
|
hestia_earth/models/ipcc2019/co2ToAirLimeHydrolysis.py,sha256=7z0zdqiiWQwkyJCgSNMoK2mft3cJkTRlqwKrMuSKdWI,2454
|
|
252
|
-
hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChangeManagementChange.py,sha256=
|
|
256
|
+
hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChangeManagementChange.py,sha256=QhLVmjFZABdP9uPe5d8X1QLEvhKmrgKW9ywwlDArqY4,5804
|
|
253
257
|
hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py,sha256=Ofld5SuRKndcKB3FFFoUdzSgNq-gc4kmiNyyrPKQ3Io,3580
|
|
254
258
|
hestia_earth/models/ipcc2019/croppingDuration.py,sha256=-CesZ2cNDOQoU3QyVFnSWYO-6-JXxuhRDQoHoxTawDA,3228
|
|
255
259
|
hestia_earth/models/ipcc2019/ligninContent.py,sha256=Qh-UH4lv1TIf7wWlbAPwIZZHxzbbmQgND3m15pt5Si8,7285
|
|
@@ -274,15 +278,18 @@ hestia_earth/models/ipcc2019/organicCarbonPerHa.py,sha256=iRUSVxMpBGgsVDkuBABPKI
|
|
|
274
278
|
hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1_utils.py,sha256=d112vbcbKHHoy0q3ncaI3d9dsAPydSEaWbXWupJe1-c,81908
|
|
275
279
|
hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2_utils.py,sha256=A84r6u45HFk5jEb2nTWGTFTwX1qjq8F6qwkNUuiyH48,63542
|
|
276
280
|
hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=HGJC2zcEvtbkovccAZ5MYm84wBXUZH0Q3UyJOXD0ltA,10157
|
|
277
|
-
hestia_earth/models/ipcc2019/pastureGrass.py,sha256=
|
|
281
|
+
hestia_earth/models/ipcc2019/pastureGrass.py,sha256=Hhm9szzsL3otuo-V6fQ_cNyDbG0dlubr4-1L4WefbDE,10304
|
|
278
282
|
hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=Bzz4yPDdA7YVUhhJhQCCVu0uKONeO3b6a48_ZITZgzU,13889
|
|
279
283
|
hestia_earth/models/ipcc2019/utils.py,sha256=MSDMu15D9DnilFUgi4_6jYXC0FaKso3OODauGTMB6hs,6229
|
|
280
284
|
hestia_earth/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
|
-
hestia_earth/models/ipcc2019/animal/
|
|
282
|
-
hestia_earth/models/ipcc2019/animal/
|
|
283
|
-
hestia_earth/models/ipcc2019/animal/
|
|
284
|
-
hestia_earth/models/ipcc2019/animal/
|
|
285
|
-
hestia_earth/models/ipcc2019/animal/
|
|
285
|
+
hestia_earth/models/ipcc2019/animal/fatContent.py,sha256=iVDMPjuy_-oGhmWaylsoCMw0qdkI5jDdqn4uzbq4D4Q,999
|
|
286
|
+
hestia_earth/models/ipcc2019/animal/liveweightGain.py,sha256=UElmAdB4yQEFAOT5RrURn0Yt7U3gB2qiCWvNXyLk8Hw,971
|
|
287
|
+
hestia_earth/models/ipcc2019/animal/liveweightPerHead.py,sha256=cq88VTxPYVPyEr2NLPb0Zmmppn_eMp9Xtw6Nxnta4-M,984
|
|
288
|
+
hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=4vs-KIlCKQhU1EpX0BFlVAQrh1szm154AnrPDs13oE4,12212
|
|
289
|
+
hestia_earth/models/ipcc2019/animal/pregnancyRateTotal.py,sha256=MWPnuT4WeKJCGjJ_DAJnYelsX2Ld0C5e8eN__0Ws0E0,982
|
|
290
|
+
hestia_earth/models/ipcc2019/animal/trueProteinContent.py,sha256=0VYI2Yg_GF5qvuxazZ3KUa03vAYcbpNLnzCOjUaG5ZI,1019
|
|
291
|
+
hestia_earth/models/ipcc2019/animal/utils.py,sha256=9EyLCOpBGkpa97VVcFbl1tRlDdJHHiy8lI7tLc_y5BE,4439
|
|
292
|
+
hestia_earth/models/ipcc2019/animal/weightAtMaturity.py,sha256=4Pp14_40NYcPqqBUnkqYVkpJLcDzZ70tlM-stte7JsQ,3055
|
|
286
293
|
hestia_earth/models/ipcc2021/__init__.py,sha256=VTgGFKhwMmk_nuI1RRq0in27fHYVPBonlXlPK00K8no,409
|
|
287
294
|
hestia_earth/models/ipcc2021/gwp100.py,sha256=v-DYU-11XnWI1Ns1GEiKrJqL3JafxvhTsLmuBuFcxJU,1021
|
|
288
295
|
hestia_earth/models/jarvisAndPain1994/__init__.py,sha256=ercUwy29sV7oPIESj8UjsGB5lqiBCss9OZcbjxeeG8E,418
|
|
@@ -395,7 +402,7 @@ hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPastur
|
|
|
395
402
|
hestia_earth/models/linkedImpactAssessment/utils.py,sha256=dGwGc2d-8_WQElTpfyPmz5vQtL-LHQRmiZnCTuPXMDs,1876
|
|
396
403
|
hestia_earth/models/mocking/__init__.py,sha256=n3Fkkrvh8zHNWiJZmnfQ7WZ91JRzAO9P6pSG1JpwtXo,687
|
|
397
404
|
hestia_earth/models/mocking/mock_search.py,sha256=qgABw-sZK37XtsALKt8AHF2VJPUrZSnHv5Qj1Dn93oA,2405
|
|
398
|
-
hestia_earth/models/mocking/search-results.json,sha256=
|
|
405
|
+
hestia_earth/models/mocking/search-results.json,sha256=wPdmhIkbqUSSKJ5xoOgnePFVQ49FlumwDJs5-kKSME0,55323
|
|
399
406
|
hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
|
|
400
407
|
hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=Qt-mel4dkhK6N5uUOutNOinCTFjbjtGzITaaI0LvYc4,2396
|
|
401
408
|
hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=JT0RybbvWVlo01FO8K0Yj41HrEaJT3Kj1xfayr2X-xw,2315
|
|
@@ -403,7 +410,7 @@ hestia_earth/models/pooreNemecek2018/ch4ToAirAquacultureSystems.py,sha256=CxjhFi
|
|
|
403
410
|
hestia_earth/models/pooreNemecek2018/excretaKgN.py,sha256=kB4C1mSA9h8uUJXXaf-39ZwhzAmmvapkfA7v0nUN_Qg,6418
|
|
404
411
|
hestia_earth/models/pooreNemecek2018/excretaKgVs.py,sha256=5rK3wfI8JO2feaFRv23-s9bH09DIl4LLLcjHS3cf-Ow,8424
|
|
405
412
|
hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py,sha256=HB_9q5eE6al2Te3v29hC5wqxsYe4P46ZAPwdWNzx3v0,3939
|
|
406
|
-
hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py,sha256=
|
|
413
|
+
hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py,sha256=78N513lNtjol0KKddxmG3Pb9vAmledlrWbfURVdLHBA,3139
|
|
407
414
|
hestia_earth/models/pooreNemecek2018/longFallowDuration.py,sha256=Wdm6QyOttCFP9Y3OjbaYrvdMmivOmMIT-m5Eg9SM9rY,1511
|
|
408
415
|
hestia_earth/models/pooreNemecek2018/n2OToAirAquacultureSystemsDirect.py,sha256=HJ7IstImGyasIKosK2lQZ-v6Lqt3_aEfZhoiC4CY0rM,2586
|
|
409
416
|
hestia_earth/models/pooreNemecek2018/n2ToAirAquacultureSystems.py,sha256=SoZlogDd7_4kq5S9gc8KmVeIXacWWhaUkWlKTuho_OA,2431
|
|
@@ -423,8 +430,8 @@ hestia_earth/models/pooreNemecek2018/rotationDuration.py,sha256=j5hW_NEKYQbeMcds
|
|
|
423
430
|
hestia_earth/models/pooreNemecek2018/saplings.py,sha256=6iJKXIZvw-PIEi4FZfNPdt7dW4tI5sMNPR7LllSTRkM,2495
|
|
424
431
|
hestia_earth/models/pooreNemecek2018/utils.py,sha256=to2vtONKCbuG1gVSDvsUcG7EnlahELfG_57gzIAHlv0,1710
|
|
425
432
|
hestia_earth/models/poschEtAl2008/__init__.py,sha256=nvyyGglxCTV4PpxcOjY7jJb0v8Bjzj435Zt1j6VcryM,414
|
|
426
|
-
hestia_earth/models/poschEtAl2008/terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=
|
|
427
|
-
hestia_earth/models/poschEtAl2008/terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=
|
|
433
|
+
hestia_earth/models/poschEtAl2008/terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=1Vha55V1MAXTw4mfLnar8ltSRZfLOQ5b8qE9bSx6YkQ,1402
|
|
434
|
+
hestia_earth/models/poschEtAl2008/terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=sI69CvgnlTAiEXgbrcz5IUIit53Tg7vpqVYXXGWBjgw,1404
|
|
428
435
|
hestia_earth/models/recipe2016Egalitarian/__init__.py,sha256=OvZoSgfaMe6DWIdqr-Sx3ouzXlp994oro7Mi0Xid18Q,422
|
|
429
436
|
hestia_earth/models/recipe2016Egalitarian/damageToFreshwaterEcosystemsSpeciesYear.py,sha256=b1UZAsy3yGlHYxH2YhBhhSnjm5zzQl8Z32DcQBjgWNE,1123
|
|
430
437
|
hestia_earth/models/recipe2016Egalitarian/damageToHumanHealth.py,sha256=dJ8WinGe52wFQCMKtT_B7c1MFM_GbBo8aqfw0n2pw94,1087
|
|
@@ -497,7 +504,7 @@ hestia_earth/models/site/brackishWater.py,sha256=vLEhIZv5PUKwzwvIuYrWi7K---fq7ZX
|
|
|
497
504
|
hestia_earth/models/site/cationExchangeCapacityPerKgSoil.py,sha256=0eH4A-tXJ0hvIkiYXWxlx8TfrdbIKUGYUDk97-yQJgg,3653
|
|
498
505
|
hestia_earth/models/site/flowingWater.py,sha256=v3g5722GIA4zQAUQI9yGFiZvFvI1QAVZqlQrY-6_B3A,1731
|
|
499
506
|
hestia_earth/models/site/freshWater.py,sha256=FXs3Vt8V4e-wn325_dwSTOKlZtn5ksNUpvYGDeLJShY,1255
|
|
500
|
-
hestia_earth/models/site/management.py,sha256=
|
|
507
|
+
hestia_earth/models/site/management.py,sha256=lFBqe5eW6O_Wb1JfV-X6J8_lLIeVzn64TvGLfF7flgM,11441
|
|
501
508
|
hestia_earth/models/site/netPrimaryProduction.py,sha256=UIIQkYd911qVzrWjxBLrC37e-RARIVgDwLdARY9BuLw,1849
|
|
502
509
|
hestia_earth/models/site/organicCarbonPerHa.py,sha256=F2ShinHf0m9qKa1nCYBspsDkRY6jzOl0wM8mSDre22I,14916
|
|
503
510
|
hestia_earth/models/site/organicCarbonPerKgSoil.py,sha256=t--wAshiAKS-JvEKhLFRadGvgSBv5NFZ68jdyms_wh4,1945
|
|
@@ -555,7 +562,7 @@ hestia_earth/models/transformation/product/__init__.py,sha256=47DEQpj8HBSa-_TImW
|
|
|
555
562
|
hestia_earth/models/transformation/product/excreta.py,sha256=Yj9wMF5if-zivb6qbN3vy1X51ZNYxvoyG9f4KPp3Y18,5700
|
|
556
563
|
hestia_earth/models/usetoxV2/__init__.py,sha256=pK37V3H-KvYcvRKw4Mv8CWrB2N0LFLzmv0jKLdhGGqs,409
|
|
557
564
|
hestia_earth/models/usetoxV2/freshwaterEcotoxicityPotentialCtue.py,sha256=oYNwThnMXjZymif5buyHiczFiOq_61jOdDMOAyy8vwQ,1018
|
|
558
|
-
hestia_earth/models/utils/__init__.py,sha256=
|
|
565
|
+
hestia_earth/models/utils/__init__.py,sha256=lYPDZu-5Uh6hLmQcAx2Yq-Fga1-mcD1uZLI0SNzkTmU,6342
|
|
559
566
|
hestia_earth/models/utils/aggregated.py,sha256=sz6usleZmo_tC_hIvmGgYsX8-H0dulXmmhHK4EkA5Kg,4946
|
|
560
567
|
hestia_earth/models/utils/animalProduct.py,sha256=M5IunAKGY6oZv3j1Ascl34ywyeLWApqOIlBzbtlA2FE,721
|
|
561
568
|
hestia_earth/models/utils/aquacultureManagement.py,sha256=dxrbC1Xf140cohxTbSw6TxLAnAASWTdNZwBBam4yQnw,171
|
|
@@ -575,10 +582,10 @@ hestia_earth/models/utils/excretaManagement.py,sha256=NuWPQjFZxMVt9sYgBjcqhGWCFk
|
|
|
575
582
|
hestia_earth/models/utils/feedipedia.py,sha256=wzzrMbYlda1XCpWiObLz4bFLXbAZejHcxsXJFr4U_AM,3953
|
|
576
583
|
hestia_earth/models/utils/fertiliser.py,sha256=DBO4OBNgnQJ0fCQMDkIk_ZGZX-uKGaTFZCEXfAnJciY,690
|
|
577
584
|
hestia_earth/models/utils/fuel.py,sha256=r1MKMMxg-PYiVlRutP83RuvY2rsdCQ1iN6ekSGGQGpA,1379
|
|
578
|
-
hestia_earth/models/utils/impact_assessment.py,sha256=
|
|
585
|
+
hestia_earth/models/utils/impact_assessment.py,sha256=iQ-M3-oaQi0_gBlzyhQ6BBxfxQjQgDFa1WNO6kR_NvM,7650
|
|
579
586
|
hestia_earth/models/utils/indicator.py,sha256=IFrVIUYpmdVLOR1SKkrTReDbG1Tzq2b6daVvLMYpCs4,537
|
|
580
587
|
hestia_earth/models/utils/inorganicFertiliser.py,sha256=_dLBY-otGkLr8PobR5dQ89bF2uwc2PB4JPrHFSksMEQ,1900
|
|
581
|
-
hestia_earth/models/utils/input.py,sha256=
|
|
588
|
+
hestia_earth/models/utils/input.py,sha256=gsVFKTC9WF8dO6YAg_-H_GAOQTnvAr49Ox5-eTH8zf8,5145
|
|
582
589
|
hestia_earth/models/utils/landCover.py,sha256=8-nfynzCx9gf9YfhpuoH6Cn4kQwWFpYA5RmoGW-0ETE,300
|
|
583
590
|
hestia_earth/models/utils/liveAnimal.py,sha256=GnajBPZw5d94raf80KtLloaOqlfqGAPwUtP9bRlGWeE,1754
|
|
584
591
|
hestia_earth/models/utils/lookup.py,sha256=2UztS6CHpFEsoERm5kwV3qUtzm0VpZQ4Fnmtceb2o18,7293
|
|
@@ -589,7 +596,7 @@ hestia_earth/models/utils/practice.py,sha256=tNadOzsrNlCEt801B815XaruJXzZ5yPASam
|
|
|
589
596
|
hestia_earth/models/utils/product.py,sha256=DhDgiReR8k9n9aaRM2xk3PIY3nfoE1ISKg9pKsBVzVQ,10143
|
|
590
597
|
hestia_earth/models/utils/productivity.py,sha256=rTJX_nemxHpOcPN7jiM2hFHknoLUIW8y-hFxVxIkg70,593
|
|
591
598
|
hestia_earth/models/utils/property.py,sha256=gBy6FidNDhjzokOXOWcIDBMKcdPPBXxIZgdAxgQsmWc,5127
|
|
592
|
-
hestia_earth/models/utils/site.py,sha256=
|
|
599
|
+
hestia_earth/models/utils/site.py,sha256=MyWh_jhY1XbN2EZRdJsHzNJW0PGQqEC1wAmiie4nQy0,3905
|
|
593
600
|
hestia_earth/models/utils/source.py,sha256=Y-CcO5Y3q5Hz4A4RdX35C1EUjL9w1NKnOrzVfOWQ7nU,1748
|
|
594
601
|
hestia_earth/models/utils/stats.py,sha256=-0vvhSDAhp4ZYXD1l6sO2hdok8_HgUM6OjCSYGSTHqU,15291
|
|
595
602
|
hestia_earth/models/utils/temperature.py,sha256=ljlG4-yCgFFb6LRZweb18cZKLrr7K2mqd4E4Hz_D1f8,476
|
|
@@ -670,7 +677,7 @@ tests/models/cycle/test_stockingDensityAnimalHousingAverage.py,sha256=WlnuKxhK_3
|
|
|
670
677
|
tests/models/cycle/test_transformations.py,sha256=Ws_8KhNqeHogGFXTQ4qZXQ5Ph2I3ZUaY0yO1itFUHLk,464
|
|
671
678
|
tests/models/cycle/test_unknownPreSeasonWaterRegime.py,sha256=4JSSpDvBQEQrDoytNVzuIcm9UVio4TzZpZm52iMWBVA,1220
|
|
672
679
|
tests/models/cycle/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
673
|
-
tests/models/cycle/animal/test_milkYield.py,sha256=
|
|
680
|
+
tests/models/cycle/animal/test_milkYield.py,sha256=E6WLhuSRydREyKmqmOuOPB8VH1nwZwUMcUULshIdj7k,873
|
|
674
681
|
tests/models/cycle/animal/test_properties.py,sha256=ND9ltZQie1xXtQvAzoDUkBYGV_N3rw5D5W-irARvO0s,715
|
|
675
682
|
tests/models/cycle/animal/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
676
683
|
tests/models/cycle/animal/input/test_hestiaAggregatedData.py,sha256=19rTpeoktPFMyOSolACMJkSe2p96xLsXAeRVjND0WbY,1229
|
|
@@ -724,7 +731,9 @@ tests/models/emepEea2019/test_tspToAirAnimalHousing.py,sha256=4MNDsxIeUk5_3IvZwE
|
|
|
724
731
|
tests/models/emepEea2019/test_utils.py,sha256=G6z8tEfWM0OPnUBaFCQgQyEi5-kRF_DqsqdYaPnzR_I,8761
|
|
725
732
|
tests/models/environmentalFootprintV3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
726
733
|
tests/models/environmentalFootprintV3/test_freshwaterEcotoxicityPotentialCtue.py,sha256=ZPDKM23qlLMe_ZzeA-QIutSkFlod3BsmjloA9WA8nug,845
|
|
727
|
-
tests/models/environmentalFootprintV3/test_soilQualityIndexLandOccupation.py,sha256=
|
|
734
|
+
tests/models/environmentalFootprintV3/test_soilQualityIndexLandOccupation.py,sha256=pgauGmFl52lQJVPaDHryrUU3LSmjWC-Al_XBqQj33u4,6116
|
|
735
|
+
tests/models/environmentalFootprintV3/test_soilQualityIndexLandTransformation.py,sha256=9be8usvkBqLhDFEaUP5PXEzbZcfFlZcquMoDbtUhpm4,6970
|
|
736
|
+
tests/models/environmentalFootprintV3/test_soilQualityIndexTotalLandUseEffects.py,sha256=j6V2AE1I98hi-Cv_-L5Rc2zzL0au9SWW4XnMkSuV7yo,2314
|
|
728
737
|
tests/models/epa2014/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
729
738
|
tests/models/epa2014/test_no3ToGroundwaterExcreta.py,sha256=ESVz4UURvQfhjGBTxjuAV_bymMBcvGNfLAkYMvNup9U,1217
|
|
730
739
|
tests/models/fantkeEtAl2016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -740,7 +749,7 @@ tests/models/faostat2018/test_seed.py,sha256=tUXoNVveX0m0ed9UXB4zXxIZsPxktXyUXlb
|
|
|
740
749
|
tests/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
741
750
|
tests/models/faostat2018/product/test_price.py,sha256=vUTT-FZVbXnDrwQVOgq8PWTDuFK_gAT6aqJ9ZK6Qcsc,3493
|
|
742
751
|
tests/models/frischknechtEtAl2000/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
743
|
-
tests/models/frischknechtEtAl2000/test_ionisingRadiationKbqU235Eq.py,sha256=
|
|
752
|
+
tests/models/frischknechtEtAl2000/test_ionisingRadiationKbqU235Eq.py,sha256=rT75VNmpUKG6aIQLNgmMzKDyJegTm2_qGLaRHUYlzF8,4416
|
|
744
753
|
tests/models/geospatialDatabase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
745
754
|
tests/models/geospatialDatabase/test_aware.py,sha256=tbBBvXrOqdO0cMPJTa02UfhlwfosH8iNoJLzZNFs1NU,857
|
|
746
755
|
tests/models/geospatialDatabase/test_clayContent.py,sha256=GqFAPIOkXfDpJFkI-vK6l3hK0Ap36lLCWGhXCly-DME,1797
|
|
@@ -831,9 +840,11 @@ tests/models/ipcc2019/test_ch4ToAirAquacultureSystems.py,sha256=o7bHOS4JkwexRrDh
|
|
|
831
840
|
tests/models/ipcc2019/test_ch4ToAirEntericFermentation.py,sha256=3Hv86L4X_Va2mZL4KI-36AV00z-KBbKo0cb2ABg6Rv8,7928
|
|
832
841
|
tests/models/ipcc2019/test_ch4ToAirExcreta.py,sha256=e58NXmBW2SNVLUqQO9A66Xq6jiGTyhdFZDZk51JApF8,2902
|
|
833
842
|
tests/models/ipcc2019/test_ch4ToAirFloodedRice.py,sha256=FAp5b45WdX5Ih4yGUOZ4CmVD8smW1Lw1tnulx9AKVBI,1980
|
|
834
|
-
tests/models/ipcc2019/
|
|
843
|
+
tests/models/ipcc2019/test_co2ToAirAboveGroundBiomassStockChangeLandUseChange.py,sha256=wqkTiQpKPYy-jLdYEpP4pfp56iDUcx_nCD6x2Woefqw,2988
|
|
844
|
+
tests/models/ipcc2019/test_co2ToAirBelowGroundBiomassStockChangeLandUseChange.py,sha256=LwWdnozxdM8TvfOcXbd3iaUDas0ztl6GnLj7oX84UnM,2912
|
|
845
|
+
tests/models/ipcc2019/test_co2ToAirCarbonStockChange_utils.py,sha256=wCEtrbMl6zef8V-n_Ci_rtlQAlfuKm3khUVltr8eAcc,2173
|
|
835
846
|
tests/models/ipcc2019/test_co2ToAirLimeHydrolysis.py,sha256=e5iuZ-kQNEVih0ZRgRPWqaUtXcLpfkoU7sQypbqA9_Y,1345
|
|
836
|
-
tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChangeManagementChange.py,sha256=
|
|
847
|
+
tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChangeManagementChange.py,sha256=C1mK1Zl-541HJD02pSe8uX3h0ZiY64Yfys2_Qnqa7wA,2928
|
|
837
848
|
tests/models/ipcc2019/test_co2ToAirUreaHydrolysis.py,sha256=MmtEME0xjsa3KojFk_fxOLK6RZM_6p5HIpY2DOFHVu4,1530
|
|
838
849
|
tests/models/ipcc2019/test_croppingDuration.py,sha256=gLRXeR6Tqa7ciD9KTRfsIflSeIIWT2iOpZMdcxAQla4,1871
|
|
839
850
|
tests/models/ipcc2019/test_ligninContent.py,sha256=eIKEN__ab-0R52EhlhPSBiHnmTl6xOf1XbI33O-W9A4,4146
|
|
@@ -860,10 +871,13 @@ tests/models/ipcc2019/test_organicCarbonPerHa_tier_2_utils.py,sha256=6YXLqH5wz_c
|
|
|
860
871
|
tests/models/ipcc2019/test_organicCarbonPerHa_utils.py,sha256=Zd2QlN_Q3k9djuByOH62A00tryVzlvNtsd46N79TTeU,1778
|
|
861
872
|
tests/models/ipcc2019/test_pastureGrass.py,sha256=mKx8NnTtMT9TrXxRNLv73wD1TWBaiRZzA1xh2ukb-HI,2667
|
|
862
873
|
tests/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
863
|
-
tests/models/ipcc2019/animal/
|
|
864
|
-
tests/models/ipcc2019/animal/
|
|
874
|
+
tests/models/ipcc2019/animal/test_fatContent.py,sha256=Emp8jGudRGA_dJaLMR5Jxsv3Gc57rMAnP0CDqswrmlM,775
|
|
875
|
+
tests/models/ipcc2019/animal/test_liveweightGain.py,sha256=KmRZyrjrXZcgff1QFtfu1WphNuJW_nHx1GguD8xB2ls,779
|
|
876
|
+
tests/models/ipcc2019/animal/test_liveweightPerHead.py,sha256=nfNAcUEIPQeKyjKYttI5W6hiHBMXLZ9Vbz0nfj81ZvA,782
|
|
865
877
|
tests/models/ipcc2019/animal/test_pastureGrass.py,sha256=vuwd7WPUKIWaYREv_UmEa8m9llZSr0OclDsmnSDtHOQ,1987
|
|
866
|
-
tests/models/ipcc2019/animal/
|
|
878
|
+
tests/models/ipcc2019/animal/test_pregnancyRateTotal.py,sha256=3M4cpH0rM0fLR86bwtBQbkUhuflj0ebaQpPgHtAFZxo,783
|
|
879
|
+
tests/models/ipcc2019/animal/test_trueProteinContent.py,sha256=3O2w_PsVEki_piIHO-Wa6m28f5SAHWHsSk27nYDQDuM,783
|
|
880
|
+
tests/models/ipcc2019/animal/test_weightAtMaturity.py,sha256=-lP4Sx1s11Wyo4Vm1it3SdIpNP43TZWmwOWttrAd_N8,705
|
|
867
881
|
tests/models/ipcc2021/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
868
882
|
tests/models/ipcc2021/test_gwp100.py,sha256=JRklKMSg-OXopb9ZufGgl94deuMuJSsfNXRZDBtOZrE,1119
|
|
869
883
|
tests/models/jarvisAndPain1994/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -999,8 +1013,8 @@ tests/models/pooreNemecek2018/test_plantationProductiveLifespan.py,sha256=ifvjTX
|
|
|
999
1013
|
tests/models/pooreNemecek2018/test_rotationDuration.py,sha256=tD2E91beAXdyT-xf5QSqc7kp5UPDDEaCE-FgsoSGorg,923
|
|
1000
1014
|
tests/models/pooreNemecek2018/test_saplings.py,sha256=S70y9JUplSH9MIrrBUkrGsVsN9ZEBplTugyR-b-n6ZY,1643
|
|
1001
1015
|
tests/models/poschEtAl2008/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1002
|
-
tests/models/poschEtAl2008/test_terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=
|
|
1003
|
-
tests/models/poschEtAl2008/test_terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=
|
|
1016
|
+
tests/models/poschEtAl2008/test_terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=AlDvYqNq8TFPDNtgdSr1dNP-_Rqzbvoxq8ribh8AeEc,1876
|
|
1017
|
+
tests/models/poschEtAl2008/test_terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=0-hn3Ssu5cfJor_Mq5DYzLlgXiw9ulARlBa_ovJGMbg,1875
|
|
1004
1018
|
tests/models/recipe2016Egalitarian/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1005
1019
|
tests/models/recipe2016Egalitarian/test_damageToFreshwaterEcosystemsSpeciesYear.py,sha256=OC8WjzPuyz5fd_E-LxFbOg3sasVc6LMJ9UK-jAKO7LU,697
|
|
1006
1020
|
tests/models/recipe2016Egalitarian/test_damageToHumanHealth.py,sha256=fWjzC9r6itihyW6AdmDkotbhML_0KavXernOpnK1SmY,677
|
|
@@ -1072,7 +1086,7 @@ tests/models/site/test_brackishWater.py,sha256=YGCp4glaWudKklYBSp-50KbfvIRtp3F4Q
|
|
|
1072
1086
|
tests/models/site/test_cationExchangeCapacityPerKgSoil.py,sha256=tNMhN998vcjQ15I-5mNnFh2d7mHzEBIBO6o1VSfQNUE,1075
|
|
1073
1087
|
tests/models/site/test_flowingWater.py,sha256=t_rxvdlmUVDsFBoDF20_zDM-0iiLKkNCV7knO9l1T7o,1370
|
|
1074
1088
|
tests/models/site/test_freshWater.py,sha256=GOeAxHhPW_2E1wQdQRX4W-r7mnb_LgmiAVLImitoApw,982
|
|
1075
|
-
tests/models/site/test_management.py,sha256=
|
|
1089
|
+
tests/models/site/test_management.py,sha256=hNUCwn-eJhoKBqxjfCRytZipPNqqtJQ41G2kcvJquNs,7229
|
|
1076
1090
|
tests/models/site/test_netPrimaryProduction.py,sha256=JCxG0MODbKVvl3hOqmKzh4FjHYn3Xs9KsVod6LvKQII,1108
|
|
1077
1091
|
tests/models/site/test_organicCarbonPerHa.py,sha256=XtGrE7ZqthTF0x8lDxJ1slNd_GvYHEyEydcRgA46jEc,3207
|
|
1078
1092
|
tests/models/site/test_organicCarbonPerKgSoil.py,sha256=0M-NMg_T3UXzGT_VlKOKhSxg4cZ0_zhd3FRgY5Hpj6o,1087
|
|
@@ -1140,7 +1154,7 @@ tests/models/utils/test_emission.py,sha256=3KfhQGV5Vh_WXTPt6McvZ2dBp9TVM7eAUTLgR
|
|
|
1140
1154
|
tests/models/utils/test_feedipedia.py,sha256=S7c1W4bJ5xWXPh42pPbl3R7lDX_iEeaEtFaPXgB7hgE,906
|
|
1141
1155
|
tests/models/utils/test_impact_assessment.py,sha256=qEm4Y5txWnkSJKP1puvwgKFXkv06c7vUKmwDyIJxkdc,1114
|
|
1142
1156
|
tests/models/utils/test_indicator.py,sha256=GwYKV5N_yEPcJWz7FirRnK48rl62ofAn_TkAo0MioIM,639
|
|
1143
|
-
tests/models/utils/test_input.py,sha256=
|
|
1157
|
+
tests/models/utils/test_input.py,sha256=sxNFToFGPv-OjiM_hZSYx_aSWPuAT575hffQ1NhG3L4,2444
|
|
1144
1158
|
tests/models/utils/test_liveAnimal.py,sha256=bntT4vULWsDF2DOigtiMjpS0gJS5ipalPsfrk-JxC-I,986
|
|
1145
1159
|
tests/models/utils/test_lookup.py,sha256=107k7wsqDkxm_HFQ41W6gU1naslx3TXz1yDRQ5OhF10,401
|
|
1146
1160
|
tests/models/utils/test_measurement.py,sha256=KBJobXlBUOwf2KuUduM1oQSR22JX6Pq0h5e3TRbQn-w,3678
|
|
@@ -1154,8 +1168,8 @@ tests/models/utils/test_term.py,sha256=M5Sa26v2gzQYbZ4H_fo7DspnaCx__-WtL-MULGapC
|
|
|
1154
1168
|
tests/models/utils/test_time_series.py,sha256=LMhRPf8rp3nAriKAC-2K3FDkrMWntRTUUCERw7Lt68g,2686
|
|
1155
1169
|
tests/models/webbEtAl2012AndSintermannEtAl2012/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1156
1170
|
tests/models/webbEtAl2012AndSintermannEtAl2012/test_nh3ToAirOrganicFertiliser.py,sha256=qi2FNXS5Af2WDtm7nq_FsprH3BfCF0XxnE0XHmC4aIY,2244
|
|
1157
|
-
hestia_earth_models-0.64.
|
|
1158
|
-
hestia_earth_models-0.64.
|
|
1159
|
-
hestia_earth_models-0.64.
|
|
1160
|
-
hestia_earth_models-0.64.
|
|
1161
|
-
hestia_earth_models-0.64.
|
|
1171
|
+
hestia_earth_models-0.64.9.dist-info/LICENSE,sha256=AC7h7GAgCZGJK_Tzh6LUCrML9gQEfowWwecEw2w54QM,1154
|
|
1172
|
+
hestia_earth_models-0.64.9.dist-info/METADATA,sha256=oM-ufMyDov0e8MyRBXejcGC4lcvzzkR0Hhi0ykZ3TgI,3343
|
|
1173
|
+
hestia_earth_models-0.64.9.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
1174
|
+
hestia_earth_models-0.64.9.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
|
|
1175
|
+
hestia_earth_models-0.64.9.dist-info/RECORD,,
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
from unittest.mock import patch
|
|
2
1
|
import json
|
|
3
2
|
|
|
4
|
-
from tests.utils import fixtures_path
|
|
3
|
+
from tests.utils import fixtures_path
|
|
5
4
|
from hestia_earth.models.cycle.animal.milkYield import MODEL, MODEL_KEY, run, _should_run
|
|
6
5
|
|
|
7
6
|
class_path = f"hestia_earth.models.{MODEL}.animal.{MODEL_KEY}"
|
|
@@ -29,15 +28,3 @@ def test_run():
|
|
|
29
28
|
|
|
30
29
|
value = run(cycle)
|
|
31
30
|
assert value == expected
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
@patch(f"{class_path}._new_practice", side_effect=fake_new_practice)
|
|
35
|
-
def test_run_with_offspring(*args):
|
|
36
|
-
with open(f"{fixtures_folder}/with-offspring/cycle.jsonld", encoding='utf-8') as f:
|
|
37
|
-
cycle = json.load(f)
|
|
38
|
-
|
|
39
|
-
with open(f"{fixtures_folder}/with-offspring/result.jsonld", encoding='utf-8') as f:
|
|
40
|
-
expected = json.load(f)
|
|
41
|
-
|
|
42
|
-
value = run(cycle)
|
|
43
|
-
assert value == expected
|