hestia-earth-models 0.65.9__py3-none-any.whl → 0.65.11__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.
- hestia_earth/models/cml2001Baseline/abioticResourceDepletionFossilFuels.py +3 -5
- hestia_earth/models/cml2001Baseline/abioticResourceDepletionMineralsAndMetals.py +1 -1
- hestia_earth/models/config/Cycle.json +9 -9
- hestia_earth/models/config/Site.json +18 -0
- hestia_earth/models/config/__init__.py +6 -0
- hestia_earth/models/cycle/materialAndSubstrate.py +1 -1
- hestia_earth/models/cycle/milkYield.py +9 -6
- hestia_earth/models/cycle/product/economicValueShare.py +8 -4
- hestia_earth/models/cycle/product/revenue.py +11 -7
- hestia_earth/models/faostat2018/product/price.py +1 -1
- hestia_earth/models/geospatialDatabase/utils.py +22 -17
- hestia_earth/models/hestia/landCover.py +15 -5
- hestia_earth/models/hestia/resourceUse_utils.py +24 -12
- hestia_earth/models/hestia/utils.py +1 -2
- hestia_earth/models/ipcc2019/animal/pastureGrass.py +1 -1
- hestia_earth/models/ipcc2019/pastureGrass.py +1 -1
- hestia_earth/models/mocking/search-results.json +914 -914
- hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py +0 -1
- hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py +13 -10
- hestia_earth/models/site/defaultMethodClassification.py +35 -0
- hestia_earth/models/site/defaultMethodClassificationDescription.py +39 -0
- hestia_earth/models/site/management.py +30 -19
- hestia_earth/models/utils/blank_node.py +1 -1
- hestia_earth/models/utils/crop.py +1 -1
- hestia_earth/models/utils/cycle.py +3 -3
- hestia_earth/models/utils/impact_assessment.py +5 -3
- hestia_earth/models/version.py +1 -1
- {hestia_earth_models-0.65.9.dist-info → hestia_earth_models-0.65.11.dist-info}/METADATA +2 -2
- {hestia_earth_models-0.65.9.dist-info → hestia_earth_models-0.65.11.dist-info}/RECORD +45 -41
- tests/models/cml2001Baseline/test_abioticResourceDepletionFossilFuels.py +2 -16
- tests/models/cml2001Baseline/test_abioticResourceDepletionMineralsAndMetals.py +2 -16
- tests/models/edip2003/test_ozoneDepletionPotential.py +0 -13
- tests/models/hestia/test_landCover.py +2 -1
- tests/models/hestia/test_landTransformation20YearAverageDuringCycle.py +2 -1
- tests/models/ipcc2021/test_gwp100.py +0 -9
- tests/models/pooreNemecek2018/test_landOccupationDuringCycle.py +1 -3
- tests/models/poschEtAl2008/test_terrestrialAcidificationPotentialAccumulatedExceedance.py +0 -14
- tests/models/poschEtAl2008/test_terrestrialEutrophicationPotentialAccumulatedExceedance.py +0 -14
- tests/models/site/test_defaultMethodClassification.py +18 -0
- tests/models/site/test_defaultMethodClassificationDescription.py +18 -0
- tests/models/test_config.py +11 -2
- tests/models/utils/test_crop.py +14 -2
- {hestia_earth_models-0.65.9.dist-info → hestia_earth_models-0.65.11.dist-info}/LICENSE +0 -0
- {hestia_earth_models-0.65.9.dist-info → hestia_earth_models-0.65.11.dist-info}/WHEEL +0 -0
- {hestia_earth_models-0.65.9.dist-info → hestia_earth_models-0.65.11.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,8 @@ from hestia_earth.models.log import logRequirements, logShouldRun
|
|
2
2
|
from hestia_earth.models.utils.indicator import _new_indicator
|
3
3
|
from hestia_earth.models.utils.impact_assessment import get_product, get_site
|
4
4
|
from hestia_earth.models.utils.cycle import land_occupation_per_kg
|
5
|
-
from hestia_earth.models.utils.site import get_land_cover_term_id
|
5
|
+
from hestia_earth.models.utils.site import get_land_cover_term_id as get_landCover_term_id_from_site_type
|
6
|
+
from hestia_earth.models.utils.crop import get_landCover_term_id
|
6
7
|
from . import MODEL
|
7
8
|
|
8
9
|
REQUIREMENTS = {
|
@@ -16,7 +17,6 @@ REQUIREMENTS = {
|
|
16
17
|
"cycleDuration": "",
|
17
18
|
"products": [{
|
18
19
|
"@type": "Product",
|
19
|
-
"primary": "True",
|
20
20
|
"value": "> 0",
|
21
21
|
"economicValueShare": "> 0"
|
22
22
|
}],
|
@@ -46,8 +46,8 @@ RETURNS = {
|
|
46
46
|
TERM_ID = 'landOccupationDuringCycle'
|
47
47
|
|
48
48
|
|
49
|
-
def _indicator(term_id: str, value: float,
|
50
|
-
indicator = _new_indicator(term_id, MODEL,
|
49
|
+
def _indicator(term_id: str, value: float, land_cover_term_id: str):
|
50
|
+
indicator = _new_indicator(term_id, MODEL, land_cover_term_id)
|
51
51
|
indicator['value'] = value
|
52
52
|
return indicator
|
53
53
|
|
@@ -56,18 +56,21 @@ def _should_run(impact_assessment: dict):
|
|
56
56
|
product = get_product(impact_assessment)
|
57
57
|
cycle = impact_assessment.get('cycle', {})
|
58
58
|
site = get_site(impact_assessment)
|
59
|
-
|
59
|
+
land_cover_from_product = get_landCover_term_id(product.get('term', {}))
|
60
|
+
land_cover_from_site = get_landCover_term_id_from_site_type(site.get('siteType'))
|
61
|
+
land_cover_term_id = land_cover_from_product or land_cover_from_site
|
60
62
|
land_occupation_m2_kg = land_occupation_per_kg(MODEL, TERM_ID, cycle, site, product)
|
61
63
|
|
62
64
|
logRequirements(impact_assessment, model=MODEL, term=TERM_ID,
|
63
65
|
land_occupation_kg=land_occupation_m2_kg,
|
64
|
-
|
66
|
+
land_cover_from_product=land_cover_from_product,
|
67
|
+
land_cover_from_site=land_cover_from_site)
|
65
68
|
|
66
|
-
should_run = all([
|
69
|
+
should_run = all([land_cover_term_id, land_occupation_m2_kg is not None])
|
67
70
|
logShouldRun(impact_assessment, MODEL, TERM_ID, should_run)
|
68
|
-
return should_run, land_occupation_m2_kg,
|
71
|
+
return should_run, land_occupation_m2_kg, land_cover_term_id
|
69
72
|
|
70
73
|
|
71
74
|
def run(impact_assessment: dict):
|
72
|
-
should_run, land_occupation_kg,
|
73
|
-
return [_indicator(TERM_ID, land_occupation_kg,
|
75
|
+
should_run, land_occupation_kg, land_cover_term_id = _should_run(impact_assessment)
|
76
|
+
return [_indicator(TERM_ID, land_occupation_kg, land_cover_term_id)] if should_run else []
|
@@ -0,0 +1,35 @@
|
|
1
|
+
"""
|
2
|
+
Default Method Classification.
|
3
|
+
|
4
|
+
When gap-filling `management` node on Site, the
|
5
|
+
`defaultMethodClassification` and `defaultMethodClassificationDescription` fields become required.
|
6
|
+
This model will use the first value in the `management` node.
|
7
|
+
"""
|
8
|
+
from hestia_earth.models.log import logRequirements, logShouldRun
|
9
|
+
from . import MODEL
|
10
|
+
|
11
|
+
REQUIREMENTS = {
|
12
|
+
"Site": {
|
13
|
+
"management": [{"@type": "Management", "methodClassification": ""}]
|
14
|
+
}
|
15
|
+
}
|
16
|
+
RETURNS = {
|
17
|
+
"The methodClassification as a `string`": ""
|
18
|
+
}
|
19
|
+
MODEL_KEY = 'defaultMethodClassification'
|
20
|
+
|
21
|
+
|
22
|
+
def _should_run(site: dict):
|
23
|
+
methodClassification = next((n.get('methodClassification') for n in site.get('management', [])), None)
|
24
|
+
|
25
|
+
logRequirements(site, model=MODEL, model_key=MODEL_KEY,
|
26
|
+
methodClassification=methodClassification)
|
27
|
+
|
28
|
+
should_run = all([methodClassification])
|
29
|
+
logShouldRun(site, MODEL, None, should_run, model_key=MODEL_KEY)
|
30
|
+
return should_run, methodClassification
|
31
|
+
|
32
|
+
|
33
|
+
def run(site: dict):
|
34
|
+
should_run, value = _should_run(site)
|
35
|
+
return value
|
@@ -0,0 +1,39 @@
|
|
1
|
+
"""
|
2
|
+
Default Method Classification Description.
|
3
|
+
|
4
|
+
When gap-filling `management` node on Site, the
|
5
|
+
`defaultMethodClassification` and `defaultMethodClassificationDescription` fields become required.
|
6
|
+
This model will use the first value in the `management` node.
|
7
|
+
"""
|
8
|
+
from hestia_earth.models.log import logRequirements, logShouldRun
|
9
|
+
from . import MODEL
|
10
|
+
|
11
|
+
REQUIREMENTS = {
|
12
|
+
"Site": {
|
13
|
+
"management": [{"@type": "Management", "methodClassification": "", "methodClassificationDescription": ""}]
|
14
|
+
}
|
15
|
+
}
|
16
|
+
RETURNS = {
|
17
|
+
"The methodClassification as a `string`": ""
|
18
|
+
}
|
19
|
+
MODEL_KEY = 'defaultMethodClassificationDescription'
|
20
|
+
|
21
|
+
|
22
|
+
def _should_run(site: dict):
|
23
|
+
methodClassificationDescription = next((
|
24
|
+
n.get('methodClassificationDescription')
|
25
|
+
for n in site.get('management', [])
|
26
|
+
if n.get('methodClassification')
|
27
|
+
), None)
|
28
|
+
|
29
|
+
logRequirements(site, model=MODEL, model_key=MODEL_KEY,
|
30
|
+
methodClassificationDescription=methodClassificationDescription)
|
31
|
+
|
32
|
+
should_run = all([methodClassificationDescription])
|
33
|
+
logShouldRun(site, MODEL, None, should_run, model_key=MODEL_KEY)
|
34
|
+
return should_run, methodClassificationDescription
|
35
|
+
|
36
|
+
|
37
|
+
def run(site: dict):
|
38
|
+
should_run, value = _should_run(site)
|
39
|
+
return value
|
@@ -31,11 +31,11 @@ from hestia_earth.models.utils import _include, _omit, group_by
|
|
31
31
|
from hestia_earth.models.utils.management import _new_management
|
32
32
|
from hestia_earth.models.utils.term import get_lookup_value
|
33
33
|
from hestia_earth.models.utils.blank_node import condense_nodes, DatestrFormat, _gapfill_datestr, DatestrGapfillMode
|
34
|
+
from hestia_earth.models.utils.crop import get_landCover_term_id
|
34
35
|
from hestia_earth.models.utils.site import (
|
35
36
|
related_cycles, get_land_cover_term_id as get_landCover_term_id_from_site_type
|
36
37
|
)
|
37
38
|
from . import MODEL
|
38
|
-
from ..utils.crop import get_landCover_term_id
|
39
39
|
|
40
40
|
REQUIREMENTS = {
|
41
41
|
"Site": {
|
@@ -165,15 +165,28 @@ def _gap_filled_date_obj(date_str: str, mode: str = DatestrGapfillMode.END) -> d
|
|
165
165
|
)
|
166
166
|
|
167
167
|
|
168
|
-
def _gap_filled_start_date(land_cover_id: str, end_date: str, cycle: dict) ->
|
168
|
+
def _gap_filled_start_date(land_cover_id: str, end_date: str, cycle: dict) -> dict:
|
169
169
|
"""If possible, gap-fill the startDate based on the endDate - maximumCycleDuration"""
|
170
170
|
maximum_cycle_duration = _get_maximum_cycle_duration(land_cover_id)
|
171
|
-
return
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
171
|
+
return {
|
172
|
+
"startDate": max(
|
173
|
+
_gap_filled_date_obj(end_date) - timedelta(days=maximum_cycle_duration)
|
174
|
+
if maximum_cycle_duration else datetime.fromtimestamp(0),
|
175
|
+
_gap_filled_date_obj(cycle.get("startDate"), mode=DatestrGapfillMode.START)
|
176
|
+
if cycle.get("startDate") else datetime.fromtimestamp(0)
|
177
|
+
)
|
178
|
+
} if any([maximum_cycle_duration, cycle.get("startDate")]) else {}
|
179
|
+
|
180
|
+
|
181
|
+
def _include_with_date_gap_fill(value: dict, keys: list) -> dict:
|
182
|
+
return {
|
183
|
+
k: (
|
184
|
+
_gap_filled_date_only_str(v) if k == "endDate" else
|
185
|
+
_gap_filled_date_only_str(v, mode=DatestrGapfillMode.START) if k == "startDate" else
|
186
|
+
v
|
187
|
+
)
|
188
|
+
for k, v in value.items() if k in keys
|
189
|
+
}
|
177
190
|
|
178
191
|
|
179
192
|
def _should_gap_fill(term: dict):
|
@@ -210,15 +223,13 @@ def _get_relevant_items(cycle: dict, item_name: str, relevant_terms: list):
|
|
210
223
|
Also adds dates from Cycle.
|
211
224
|
"""
|
212
225
|
items = [
|
213
|
-
|
226
|
+
_include_with_date_gap_fill(cycle, ["startDate", "endDate"]) |
|
214
227
|
_include(
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
)
|
221
|
-
} if "startDate" not in item else {},
|
228
|
+
_gap_filled_start_date(
|
229
|
+
land_cover_id=get_landCover_term_id(item.get('term', {})),
|
230
|
+
end_date=item.get("endDate") if "endDate" in item else cycle.get("endDate", ""),
|
231
|
+
cycle=cycle
|
232
|
+
) if "startDate" not in item else {},
|
222
233
|
"startDate"
|
223
234
|
) |
|
224
235
|
item
|
@@ -266,7 +277,7 @@ def _run_from_siteType(site: dict, cycle: dict):
|
|
266
277
|
|
267
278
|
|
268
279
|
def _run_products(cycle: dict, products: list, total_products: int = None, use_cycle_dates: bool = False):
|
269
|
-
default_dates =
|
280
|
+
default_dates = _include_with_date_gap_fill(cycle, ["startDate", "endDate"])
|
270
281
|
return [
|
271
282
|
_map_to_value(default_dates | _copy_item_if_exists(
|
272
283
|
source=product,
|
@@ -289,7 +300,7 @@ def _run_from_landCover(cycle: dict, crop_forage_products: list):
|
|
289
300
|
"""
|
290
301
|
land_cover_products = [
|
291
302
|
_map_to_value(_extract_node_value(
|
292
|
-
|
303
|
+
_include_with_date_gap_fill(
|
293
304
|
value=product,
|
294
305
|
keys=["term", "value", "startDate", "endDate", "properties"]
|
295
306
|
)
|
@@ -354,7 +365,7 @@ def _should_run_practice(practice: dict):
|
|
354
365
|
def _run_from_practices(cycle: dict):
|
355
366
|
practices = [
|
356
367
|
_extract_node_value(
|
357
|
-
|
368
|
+
_include_with_date_gap_fill(
|
358
369
|
value=practice,
|
359
370
|
keys=["term", "value", "startDate", "endDate"]
|
360
371
|
)
|
@@ -73,7 +73,7 @@ def lookups_logs(model: str, blank_nodes: list, lookups_per_termType: dict, **lo
|
|
73
73
|
|
74
74
|
def _reduce_lookups_logs(logs: dict, column: str):
|
75
75
|
lookup_value = get_lookup_value(term, column, model=model, **log_args)
|
76
|
-
return logs | {column: lookup_value}
|
76
|
+
return logs | {column: str(lookup_value).replace(':', '-')}
|
77
77
|
|
78
78
|
return reduce(_reduce_lookups_logs, lookups, {'id': term_id})
|
79
79
|
|
@@ -67,6 +67,6 @@ def get_landCover_term_id(lookup_term: dict, **log_args) -> str:
|
|
67
67
|
value = get_lookup_value(lookup_term, 'landCoverTermId', **log_args)
|
68
68
|
return (
|
69
69
|
lookup_term.get("@id") if lookup_term.get("termType") == TermTermType.LANDCOVER.value else
|
70
|
-
value.split(';')[0] if value else
|
70
|
+
value.split(';')[0] if isinstance(value, str) else
|
71
71
|
None
|
72
72
|
)
|
@@ -291,7 +291,7 @@ def _land_occupation_per_kg(model: str, term_id: str, cycle: dict, product: dict
|
|
291
291
|
return value
|
292
292
|
|
293
293
|
|
294
|
-
def land_occupation_per_kg(model: str, term_id: str, cycle: dict, site: dict,
|
294
|
+
def land_occupation_per_kg(model: str, term_id: str, cycle: dict, site: dict, product: dict):
|
295
295
|
"""
|
296
296
|
Get the land occupation of the cycle per kg in meter square.
|
297
297
|
|
@@ -305,7 +305,7 @@ def land_occupation_per_kg(model: str, term_id: str, cycle: dict, site: dict, pr
|
|
305
305
|
The `Cycle` as defined in the HESTIA Schema.
|
306
306
|
site : dict
|
307
307
|
The `Site` as defined in the HESTIA Schema.
|
308
|
-
|
308
|
+
product : dict
|
309
309
|
The primary `Product` of the `Cycle`.
|
310
310
|
|
311
311
|
Returns
|
@@ -325,7 +325,7 @@ def land_occupation_per_kg(model: str, term_id: str, cycle: dict, site: dict, pr
|
|
325
325
|
SiteSiteType.RIVER_OR_STREAM.value,
|
326
326
|
SiteSiteType.SEA_OR_OCEAN.value
|
327
327
|
] else (
|
328
|
-
_land_occupation_per_kg(model, term_id, cycle,
|
328
|
+
_land_occupation_per_kg(model, term_id, cycle, product, value) if value is not None else None
|
329
329
|
)
|
330
330
|
|
331
331
|
|
@@ -119,7 +119,8 @@ def impact_emission_lookup_value(
|
|
119
119
|
lookup_name='emission.csv',
|
120
120
|
lookup_col=lookup_col,
|
121
121
|
blank_nodes=filter_list_term_type(impact.get('emissionsResourceUse', []), TermTermType.EMISSION),
|
122
|
-
grouped_key=grouped_key
|
122
|
+
grouped_key=grouped_key,
|
123
|
+
default_no_values=None
|
123
124
|
)
|
124
125
|
|
125
126
|
|
@@ -170,7 +171,7 @@ def impact_country_value(
|
|
170
171
|
|
171
172
|
# fail if some factors are missing
|
172
173
|
return None if not all_with_factors else (
|
173
|
-
list_sum(values) if len(values) > 0 else
|
174
|
+
list_sum(values) if len(values) > 0 else None
|
174
175
|
)
|
175
176
|
|
176
177
|
|
@@ -236,7 +237,8 @@ def impact_endpoint_value(model: str, term_id: str, impact: dict, lookup_col: st
|
|
236
237
|
node=impact,
|
237
238
|
lookup_name='characterisedIndicator.csv',
|
238
239
|
lookup_col=lookup_col,
|
239
|
-
blank_nodes=nodes
|
240
|
+
blank_nodes=nodes,
|
241
|
+
default_no_values=None
|
240
242
|
)
|
241
243
|
|
242
244
|
|
hestia_earth/models/version.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
VERSION = '0.65.
|
1
|
+
VERSION = '0.65.11'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: hestia-earth-models
|
3
|
-
Version: 0.65.
|
3
|
+
Version: 0.65.11
|
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.19
|
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=Llo2SH1Lp-R8x1JRxJ2Ta-vw5RbdUj2FHXUP-c
|
|
4
4
|
hestia_earth/models/log.py,sha256=_zAfyOkL_VknEnMFvcpvenSMghadlDfZhiSx28545Gk,3558
|
5
5
|
hestia_earth/models/preload_requests.py,sha256=vK_G1UzhNMhYy7ymnCtHUz_vv3cfApCSKqv29VREEBQ,1943
|
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=6LpNoOHn7BXGQSdeOERwYSNo64BVnj0d53V5FW5wWHY,20
|
8
8
|
hestia_earth/models/agribalyse2016/__init__.py,sha256=WvK0qCQbnYtg9oZxrACd1wGormZyXibPtpCnIQeDqbw,415
|
9
9
|
hestia_earth/models/agribalyse2016/fuelElectricity.py,sha256=rm5ZaRAzJ08m2y4BxkGh-RjudkDWgozmg3XumoRm-fQ,4511
|
10
10
|
hestia_earth/models/agribalyse2016/machineryInfrastructureDepreciatedAmountPerCycle.py,sha256=BPjnWmg73i_OxM2ouCdMTWZtPIqyoUAXrvutntyteE0,3390
|
@@ -27,17 +27,17 @@ hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandTransfo
|
|
27
27
|
hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsTotalLandUseEffects.py,sha256=11H8j9i2h2zChea92CdzPodWZfdegkAnQx6qYC6Ym9A,2623
|
28
28
|
hestia_earth/models/chaudharyBrooks2018/utils.py,sha256=Z0IrvVv-dKsRt09LmT7sc6e1bWnhjZ-WBrO-namIngo,1539
|
29
29
|
hestia_earth/models/cml2001Baseline/__init__.py,sha256=0uGrCKDNUH-MUkpvts9MyPMnZKao-M03gU8uKquUozQ,416
|
30
|
-
hestia_earth/models/cml2001Baseline/abioticResourceDepletionFossilFuels.py,sha256=
|
31
|
-
hestia_earth/models/cml2001Baseline/abioticResourceDepletionMineralsAndMetals.py,sha256=
|
30
|
+
hestia_earth/models/cml2001Baseline/abioticResourceDepletionFossilFuels.py,sha256=K3IfNziLDGvfmHsWBUXCwAl1k2Z6p-02Vi7HG3jZRhI,7708
|
31
|
+
hestia_earth/models/cml2001Baseline/abioticResourceDepletionMineralsAndMetals.py,sha256=yXie6UW0_I4VQcADn7Uvk4n1RmrFAauJ7ZVh7OgBUyA,5952
|
32
32
|
hestia_earth/models/cml2001Baseline/eutrophicationPotentialExcludingFate.py,sha256=nUWKsn3COqAOrYNmiBKnA2rUs88pj4o3k4fHKA0TVbU,1068
|
33
33
|
hestia_earth/models/cml2001Baseline/terrestrialAcidificationPotentialIncludingFateAverageEurope.py,sha256=N8neIISqeTAS7VGTNWbbbozOtfCb816qwwHCnv7Nnpw,1113
|
34
34
|
hestia_earth/models/cml2001NonBaseline/__init__.py,sha256=vI8wp8Og_e8DiJqYYvp33YoI3t4ffAC31LWlnV20JTg,419
|
35
35
|
hestia_earth/models/cml2001NonBaseline/eutrophicationPotentialIncludingFateAverageEurope.py,sha256=lcgyRHY08KCBFPERJNqV4DYGEJCvyHBDnJXD0kEkVqM,1097
|
36
36
|
hestia_earth/models/cml2001NonBaseline/terrestrialAcidificationPotentialExcludingFate.py,sha256=xcrxfs9UoV_EWvV-XzMt35oPWCUsTzqg2SGA3j2MFIw,1091
|
37
|
-
hestia_earth/models/config/Cycle.json,sha256=
|
37
|
+
hestia_earth/models/config/Cycle.json,sha256=b_TTZGQ5QbD6BZ2tYezFlsxBKVwZONRVfA0cXAt1PBQ,56069
|
38
38
|
hestia_earth/models/config/ImpactAssessment.json,sha256=EB8O8_GZ182upCP-Rpko7I48Tdf30ScK-ZZ3rf4DQQI,57585
|
39
|
-
hestia_earth/models/config/Site.json,sha256=
|
40
|
-
hestia_earth/models/config/__init__.py,sha256=
|
39
|
+
hestia_earth/models/config/Site.json,sha256=SyajKMEg03v9_NdiQlfcyF7B60lrBlXZF6tlahnpfZA,13071
|
40
|
+
hestia_earth/models/config/__init__.py,sha256=l1WqL7ezlank86ABP4zUia_hIvM9ba-sOE3z6wNrea8,2333
|
41
41
|
hestia_earth/models/config/run-calculations.json,sha256=e3nJ4M6CP1iFzfv8ou_ZUFbFxYkDxJgwuNDXTm4PBDc,615
|
42
42
|
hestia_earth/models/config/trigger-calculations.json,sha256=3dmn2bRuj6QEtSTOLdIy31ho7thgUXyDsnqZzPV9rAQ,623
|
43
43
|
hestia_earth/models/cycle/__init__.py,sha256=VowO3kOHb0LpURsljNaJsYO7s6vgjhul6bF_85UjUEI,406
|
@@ -57,8 +57,8 @@ hestia_earth/models/cycle/inorganicFertiliser.py,sha256=Yt5NcP9FQEzWwlritrPGbhh2
|
|
57
57
|
hestia_earth/models/cycle/irrigatedTypeUnspecified.py,sha256=KlIa5eDvT47Twz6Q1kpw0rMlRjCK25CExaW58DEvc9w,2125
|
58
58
|
hestia_earth/models/cycle/liveAnimal.py,sha256=5dlvuVAu24hLLOVXsozcVzWyDVzddzoungUBwrBDS-g,3986
|
59
59
|
hestia_earth/models/cycle/longFallowRatio.py,sha256=_h0kub99sACO87IfjMeiu8IgdK2jaeBlgGA9A9-ViZA,1683
|
60
|
-
hestia_earth/models/cycle/materialAndSubstrate.py,sha256=
|
61
|
-
hestia_earth/models/cycle/milkYield.py,sha256=
|
60
|
+
hestia_earth/models/cycle/materialAndSubstrate.py,sha256=euvY_qKmLlwixCoUnagQRZ5oHtTB7VSPjgmEq8fN3Qg,5186
|
61
|
+
hestia_earth/models/cycle/milkYield.py,sha256=ghJXXxVQVYC3xtPgyp6FvbIuheJfeh2zwRBf9IkQi2E,5902
|
62
62
|
hestia_earth/models/cycle/otherSitesArea.py,sha256=Xhi6C1K1v4VXv1Mhkg-b9JCAG-DfTQoEi9ICs71418w,1650
|
63
63
|
hestia_earth/models/cycle/otherSitesUnusedDuration.py,sha256=ZqQaI9FvNVpONmsIiRo1BqSJJKC5Mgi-W6lt18sxTiA,2985
|
64
64
|
hestia_earth/models/cycle/pastureGrass.py,sha256=7PrmDMJPtsbKGa8WIOh_4NXNtbH3Pxb23pmjawQuY9o,1226
|
@@ -114,11 +114,11 @@ hestia_earth/models/cycle/pre_checks/otherSites.py,sha256=MQpf_v4lTIR60zF7slp3LB
|
|
114
114
|
hestia_earth/models/cycle/pre_checks/site.py,sha256=OkrEOxwbo5rzAWQaPt2p9uZ9g7Vc58QweGW5-Pt0jPY,882
|
115
115
|
hestia_earth/models/cycle/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
116
116
|
hestia_earth/models/cycle/product/currency.py,sha256=lB1pCD1747Ke3oFoqjAKEHbIdHPfrHKNaJSni69iMUQ,2150
|
117
|
-
hestia_earth/models/cycle/product/economicValueShare.py,sha256=
|
117
|
+
hestia_earth/models/cycle/product/economicValueShare.py,sha256=HAIg9R-j9CdPdU6Wz1qYmVJDG08DPPVNQMq6pWpXSWg,8815
|
118
118
|
hestia_earth/models/cycle/product/price.py,sha256=BUkY9V2Frg442HEGG7PLmXZFTrBPbBFDTk5LbS40Ajs,1588
|
119
119
|
hestia_earth/models/cycle/product/primary.py,sha256=FYyl-Mv8AmEml1nhDJwU01N4LrszJm6E31eztQDHzdg,1853
|
120
120
|
hestia_earth/models/cycle/product/properties.py,sha256=7iKIAYLi2_11HsizwAdNbEmx-C7CH_tTrgBFEePTcWs,1547
|
121
|
-
hestia_earth/models/cycle/product/revenue.py,sha256
|
121
|
+
hestia_earth/models/cycle/product/revenue.py,sha256=JirczlbiuEWMuR-baAU90FE7k3cxz5bb8GoX_wrXfvg,2433
|
122
122
|
hestia_earth/models/cycle/product/utils.py,sha256=nCQIFgwfI4meSRftV9v4vuxKAy3uUtShpN1pr2mywCw,359
|
123
123
|
hestia_earth/models/cycle/product/value.py,sha256=8f_6Ornn06lbNR2U70qmxn-iwh_TIEFGjB3_8TzCFxs,1596
|
124
124
|
hestia_earth/models/dammgen2009/__init__.py,sha256=dZ8tIXl6e3ZEixYrWiW7rzoqRJVFOoxi4RPvM3N0L1E,412
|
@@ -165,7 +165,7 @@ hestia_earth/models/faostat2018/readyToCookWeightPerHead.py,sha256=b1_GZQ3oFl88w
|
|
165
165
|
hestia_earth/models/faostat2018/seed.py,sha256=ts9PKs9UnZnJ9nPFlL7etL1Qb9uIWIES8Mz8W7FWbOw,2917
|
166
166
|
hestia_earth/models/faostat2018/utils.py,sha256=vJxDILARNxE6DM_lTtoLIh5PvdDneSb9S41YAuD1HvY,7527
|
167
167
|
hestia_earth/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
-
hestia_earth/models/faostat2018/product/price.py,sha256=
|
168
|
+
hestia_earth/models/faostat2018/product/price.py,sha256=xAfHfMt2YhBOo0eQSaEnWfqeINoKHhk9hRDEj7GT0g4,7755
|
169
169
|
hestia_earth/models/frischknechtEtAl2000/__init__.py,sha256=Fixyy9UwoCGP5-MHyJu_ctS40SQ2imfvZo8a547029U,421
|
170
170
|
hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py,sha256=czZx8DgnDuLOdK0CfiriPbj1BwoiWn4d1nkQOiwkcPA,4472
|
171
171
|
hestia_earth/models/geospatialDatabase/__init__.py,sha256=TH-FW3aoL7r1GquRChr7rde7uQonKQRDR00udG8tDrQ,957
|
@@ -198,7 +198,7 @@ hestia_earth/models/geospatialDatabase/temperatureLongTermAnnualMean.py,sha256=y
|
|
198
198
|
hestia_earth/models/geospatialDatabase/temperatureMonthly.py,sha256=BLzWaFw4PXkjAK3MC1kVMT1kai4Cv9tEak_CuANTo5k,3354
|
199
199
|
hestia_earth/models/geospatialDatabase/totalNitrogenPerKgSoil.py,sha256=DrjiPyakM1SJ1XO-arhvjLDj2qb3M-i58gJ1kFFM6kI,2821
|
200
200
|
hestia_earth/models/geospatialDatabase/totalPhosphorusPerKgSoil.py,sha256=5oasLMYgfnPwSse0D8EEe_pV57AMusac853BgVSUh5E,2070
|
201
|
-
hestia_earth/models/geospatialDatabase/utils.py,sha256=
|
201
|
+
hestia_earth/models/geospatialDatabase/utils.py,sha256=VJ6P37C0Aw51ksN64e_et6aI9zAlk_wCmzlbWcrcau4,6618
|
202
202
|
hestia_earth/models/geospatialDatabase/waterDepth.py,sha256=Xy2UxwAJrgdOkcw59NetEHMt5vgRYE6qg4fgXb1ptlU,1643
|
203
203
|
hestia_earth/models/globalCropWaterModel2008/__init__.py,sha256=vQxexzFCl2Uv2RiIJfcppkRi9RgzBsJ68yhVDK4GvAU,425
|
204
204
|
hestia_earth/models/globalCropWaterModel2008/rootingDepth.py,sha256=pajS-6UWxqIqnzW0IjkgNm-2Vl3bMor2UZOQtQQERuc,4096
|
@@ -206,12 +206,12 @@ hestia_earth/models/haversineFormula/__init__.py,sha256=o155nR-XI67iCSBVNYIu4sPR
|
|
206
206
|
hestia_earth/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
207
207
|
hestia_earth/models/haversineFormula/transport/distance.py,sha256=163KrmKzlEQuKYT1ZvpPgmKlv_-mmvxp0A1_uKya99w,4203
|
208
208
|
hestia_earth/models/hestia/__init__.py,sha256=o5vAmPzSaK9XPgL8GCne3-lugfCOgZhHELYolNgqyyY,407
|
209
|
-
hestia_earth/models/hestia/landCover.py,sha256=
|
209
|
+
hestia_earth/models/hestia/landCover.py,sha256=P1kKasnLwmwHyxCMNKxaVEDPdcSBfOuicG-94kLnBro,29846
|
210
210
|
hestia_earth/models/hestia/landTransformation100YearAverageDuringCycle.py,sha256=-7ToRvCVPD6AAcjxorPS5jSWio7JAglHrdSS9PPyPqQ,1551
|
211
211
|
hestia_earth/models/hestia/landTransformation20YearAverageDuringCycle.py,sha256=TCskVLhYXBMxdeZM-gN4Tdixk5ua7eVn-o5dfIT_H7o,1543
|
212
|
-
hestia_earth/models/hestia/resourceUse_utils.py,sha256=
|
212
|
+
hestia_earth/models/hestia/resourceUse_utils.py,sha256=b-0g_xArf_4Ln7JCqaSdCk7nXonAHYo_mLzmJnGLlhQ,7939
|
213
213
|
hestia_earth/models/hestia/seed_emissions.py,sha256=58hmHAgemOuGVIsij-FWF7EsGmEbCSfzFAEfXkXSyEE,11566
|
214
|
-
hestia_earth/models/hestia/utils.py,sha256=
|
214
|
+
hestia_earth/models/hestia/utils.py,sha256=TX53XPLeu3XgBcy9XN8xDD3J7y7fjmVweRNKaEZ-qzE,1455
|
215
215
|
hestia_earth/models/impact_assessment/__init__.py,sha256=gTR_PhWps593fPhm-V826VLLrZVH8CNQTqxExB7GGNI,418
|
216
216
|
hestia_earth/models/impact_assessment/allocationMethod.py,sha256=Qz41nTtMpDCcPy7PjhVtafE13dfJLX_D3Rg3yNhdY_Q,1279
|
217
217
|
hestia_earth/models/impact_assessment/emissions.py,sha256=oHWXFZgvxYktH6gAawEjphyLtPCmH0FWt_mDwphc2I8,4394
|
@@ -285,7 +285,7 @@ hestia_earth/models/ipcc2019/organicCarbonPerHa.py,sha256=C9ef41fd-gYixEV3sTs9VM
|
|
285
285
|
hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1_utils.py,sha256=hgMh3p7tflTo06LJjAkoz8btrl8Rc6lYYvZp1ooJIaI,76214
|
286
286
|
hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2_utils.py,sha256=e2O4yZ9bCJWMPQ8s-DEwnaDImGGCnpJya6SO0tWy0RY,63367
|
287
287
|
hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=FFcjdkYq5NJwAu4bWZJUao4MoDHvgbXmXCnUNKD-a3w,9842
|
288
|
-
hestia_earth/models/ipcc2019/pastureGrass.py,sha256=
|
288
|
+
hestia_earth/models/ipcc2019/pastureGrass.py,sha256=HWRkpYpGqvMfol2dPb9pFkNzoGj7n6sRpyIjGSVM9lQ,10306
|
289
289
|
hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=nL31uS3c77PH_5nA2E2MvB1NS2mMvhD341taGl5YWNE,13842
|
290
290
|
hestia_earth/models/ipcc2019/utils.py,sha256=MSDMu15D9DnilFUgi4_6jYXC0FaKso3OODauGTMB6hs,6229
|
291
291
|
hestia_earth/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -294,7 +294,7 @@ hestia_earth/models/ipcc2019/animal/hoursWorkedPerDay.py,sha256=f-zcslXkbIY9ef-p
|
|
294
294
|
hestia_earth/models/ipcc2019/animal/liveweightGain.py,sha256=UElmAdB4yQEFAOT5RrURn0Yt7U3gB2qiCWvNXyLk8Hw,971
|
295
295
|
hestia_earth/models/ipcc2019/animal/liveweightPerHead.py,sha256=cq88VTxPYVPyEr2NLPb0Zmmppn_eMp9Xtw6Nxnta4-M,984
|
296
296
|
hestia_earth/models/ipcc2019/animal/milkYieldPerAnimal.py,sha256=XxgSvQLi1Xu6ZpUg1a-7OFZEkItkUK-nVPTDxApUnuY,2777
|
297
|
-
hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=
|
297
|
+
hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=M-6SigPr3Yfw-Iq1hVyh38tuh6_J5GR5rfGbjDqEPgU,12214
|
298
298
|
hestia_earth/models/ipcc2019/animal/pregnancyRateTotal.py,sha256=MWPnuT4WeKJCGjJ_DAJnYelsX2Ld0C5e8eN__0Ws0E0,982
|
299
299
|
hestia_earth/models/ipcc2019/animal/trueProteinContent.py,sha256=9hOg5KAFQ6Q-2_5h8pduYiYg9QBr22UnHdJYmkh8qi0,1023
|
300
300
|
hestia_earth/models/ipcc2019/animal/utils.py,sha256=HPOjdJGUxn4Ls4jnr0kD5_w-JrzG1C7_cwdMpCCA1kk,4514
|
@@ -406,15 +406,15 @@ hestia_earth/models/linkedImpactAssessment/utils.py,sha256=S1zlux02gU2Lajrtoq-zQ
|
|
406
406
|
hestia_earth/models/mocking/__init__.py,sha256=9VX50c-grz-snfd-7MBS0KfF7AadtbKuj7kK6PqtsgE,687
|
407
407
|
hestia_earth/models/mocking/build_mock_search.py,sha256=p15ccEUmkmLp1RiGNznxMz3OFHbI8P1-29ExuohiQN8,1355
|
408
408
|
hestia_earth/models/mocking/mock_search.py,sha256=ccFe_WrI73JElFmxp4hPNLCX7eeU--lBC1JFR901KJY,1069
|
409
|
-
hestia_earth/models/mocking/search-results.json,sha256=
|
409
|
+
hestia_earth/models/mocking/search-results.json,sha256=EFCT8ggjUM49bin_Hxq6de9Ceu1BTx0JdQ_LHGVLC8M,102057
|
410
410
|
hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
|
411
411
|
hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=Qt-mel4dkhK6N5uUOutNOinCTFjbjtGzITaaI0LvYc4,2396
|
412
412
|
hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=JT0RybbvWVlo01FO8K0Yj41HrEaJT3Kj1xfayr2X-xw,2315
|
413
413
|
hestia_earth/models/pooreNemecek2018/ch4ToAirAquacultureSystems.py,sha256=CxjhFinScTebBGNVheEdbdw36DdHwoPszAnbxtd6_9s,6590
|
414
414
|
hestia_earth/models/pooreNemecek2018/excretaKgN.py,sha256=WI0SJJR8uJFfG1hTHDSOeiuTMhAW1fKcm0MX1QEvxcg,6340
|
415
415
|
hestia_earth/models/pooreNemecek2018/excretaKgVs.py,sha256=TW0lF752Ljlx7zj1v3TkAYLYASsYsYpEy8KH9y2yTQ8,9446
|
416
|
-
hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py,sha256=
|
417
|
-
hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py,sha256=
|
416
|
+
hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py,sha256=rBWK_SzR9siorMxNORqB_BGQEadjyvzSh_SKOqRwFV0,3947
|
417
|
+
hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py,sha256=gSUzPuzzLwQsBiX_Tgx6mWJ4pEB5qhlKoOtaEdmDGQ4,3431
|
418
418
|
hestia_earth/models/pooreNemecek2018/longFallowDuration.py,sha256=Wdm6QyOttCFP9Y3OjbaYrvdMmivOmMIT-m5Eg9SM9rY,1511
|
419
419
|
hestia_earth/models/pooreNemecek2018/n2OToAirAquacultureSystemsDirect.py,sha256=HJ7IstImGyasIKosK2lQZ-v6Lqt3_aEfZhoiC4CY0rM,2586
|
420
420
|
hestia_earth/models/pooreNemecek2018/n2ToAirAquacultureSystems.py,sha256=SoZlogDd7_4kq5S9gc8KmVeIXacWWhaUkWlKTuho_OA,2431
|
@@ -506,9 +506,11 @@ hestia_earth/models/schmidt2007/utils.py,sha256=tbTFg5TXAyS12JCa-OXQg37M1YymHxKW
|
|
506
506
|
hestia_earth/models/site/__init__.py,sha256=aVuLLhq0OQVm-_MZoq4JAKMidqexUWJBg_7mmojmDzc,405
|
507
507
|
hestia_earth/models/site/brackishWater.py,sha256=vLEhIZv5PUKwzwvIuYrWi7K---fq7ZXn0oJvfDZdMs4,1278
|
508
508
|
hestia_earth/models/site/cationExchangeCapacityPerKgSoil.py,sha256=0eH4A-tXJ0hvIkiYXWxlx8TfrdbIKUGYUDk97-yQJgg,3653
|
509
|
+
hestia_earth/models/site/defaultMethodClassification.py,sha256=mqy3P3DLf7cr4-TU_kH7nXr8bz_kCrG_i33AuzwYMyo,1059
|
510
|
+
hestia_earth/models/site/defaultMethodClassificationDescription.py,sha256=5rm9LUINmHF579HaqWfHZpFTjwZSgglE6TgAwBPs1uc,1250
|
509
511
|
hestia_earth/models/site/flowingWater.py,sha256=v3g5722GIA4zQAUQI9yGFiZvFvI1QAVZqlQrY-6_B3A,1731
|
510
512
|
hestia_earth/models/site/freshWater.py,sha256=FXs3Vt8V4e-wn325_dwSTOKlZtn5ksNUpvYGDeLJShY,1255
|
511
|
-
hestia_earth/models/site/management.py,sha256=
|
513
|
+
hestia_earth/models/site/management.py,sha256=GFM8d3AzGUxojLiTpcPnKk0wbYX8RhryNKSZhz8bio4,15034
|
512
514
|
hestia_earth/models/site/netPrimaryProduction.py,sha256=UIIQkYd911qVzrWjxBLrC37e-RARIVgDwLdARY9BuLw,1849
|
513
515
|
hestia_earth/models/site/organicCarbonPerHa.py,sha256=F2ShinHf0m9qKa1nCYBspsDkRY6jzOl0wM8mSDre22I,14916
|
514
516
|
hestia_earth/models/site/organicCarbonPerKgSoil.py,sha256=t--wAshiAKS-JvEKhLFRadGvgSBv5NFZ68jdyms_wh4,1945
|
@@ -571,15 +573,15 @@ hestia_earth/models/utils/aggregated.py,sha256=01V5RDvO9EZAEiApY7M2dUoR4GcGxvAH5
|
|
571
573
|
hestia_earth/models/utils/animalProduct.py,sha256=M5IunAKGY6oZv3j1Ascl34ywyeLWApqOIlBzbtlA2FE,721
|
572
574
|
hestia_earth/models/utils/aquacultureManagement.py,sha256=dxrbC1Xf140cohxTbSw6TxLAnAASWTdNZwBBam4yQnw,171
|
573
575
|
hestia_earth/models/utils/array_builders.py,sha256=QEkM7e75Y9aq5yEPEk3R8md36IuvCDkpekdGm3uA0uk,19397
|
574
|
-
hestia_earth/models/utils/blank_node.py,sha256
|
576
|
+
hestia_earth/models/utils/blank_node.py,sha256=m1-ZOHt0ImOzCRZDhr5uI44SrKAmRRXyT_tfUGg5uqk,52015
|
575
577
|
hestia_earth/models/utils/cache_sources.py,sha256=MBkrPpjwNiC4ApDjeYVHZjWBbpvAerXRDrMHpjasAZ0,377
|
576
578
|
hestia_earth/models/utils/completeness.py,sha256=2-GusD9UycobDZq8y5jar0ZcOjyqnSbzPRT_5XMc4YA,1259
|
577
579
|
hestia_earth/models/utils/constant.py,sha256=6wLx8xb2R8HtpEpVy5e-PbioOo7QCu2n-W72fs6OvgE,3411
|
578
|
-
hestia_earth/models/utils/crop.py,sha256=
|
580
|
+
hestia_earth/models/utils/crop.py,sha256=JF9vsXOlViiwsIkV-mQ9iRl4dZGgeP2mrgdAmKuhYaY,2713
|
579
581
|
hestia_earth/models/utils/cropResidue.py,sha256=_0Q35CrliJeo31xGHsPWe8A2oHxijdIsOrf3gBEqhlA,612
|
580
582
|
hestia_earth/models/utils/cropResidueManagement.py,sha256=nIDFjf39rDD10UHSVudfDyu-EiL261g8jyrgS-2aDKw,347
|
581
583
|
hestia_earth/models/utils/currency.py,sha256=f_ArJANb--pZq4LL49SXQ1AMX_oKroqwBXKRRQqZwsM,578
|
582
|
-
hestia_earth/models/utils/cycle.py,sha256=
|
584
|
+
hestia_earth/models/utils/cycle.py,sha256=PmloVCSU4TtXnEe0ltP--bTIZBXVB-rEFJrV6IYsdeo,16209
|
583
585
|
hestia_earth/models/utils/descriptive_stats.py,sha256=EMVwFvg2OnZgKRAfireAoWY2EbrSvqR0V0bK9B53p28,1583
|
584
586
|
hestia_earth/models/utils/ecoClimateZone.py,sha256=kD5DGActHAfMCJykKQGkwEEicWt7PQlEIX9_PkqXfP0,4265
|
585
587
|
hestia_earth/models/utils/emission.py,sha256=H_apu-Og9SJTLVU2lU56IsvSU22-9J7OrqXk1b2qnSE,3638
|
@@ -587,7 +589,7 @@ hestia_earth/models/utils/excretaManagement.py,sha256=NuWPQjFZxMVt9sYgBjcqhGWCFk
|
|
587
589
|
hestia_earth/models/utils/feedipedia.py,sha256=wzzrMbYlda1XCpWiObLz4bFLXbAZejHcxsXJFr4U_AM,3953
|
588
590
|
hestia_earth/models/utils/fertiliser.py,sha256=DBO4OBNgnQJ0fCQMDkIk_ZGZX-uKGaTFZCEXfAnJciY,690
|
589
591
|
hestia_earth/models/utils/fuel.py,sha256=XzOELV3dn506PkMKjFQ_ZKVZInd2lL2x6PKdsa6Po4M,1429
|
590
|
-
hestia_earth/models/utils/impact_assessment.py,sha256=
|
592
|
+
hestia_earth/models/utils/impact_assessment.py,sha256=VoJVgSVJkXFvlIukCBm054KGMCBeot17k3DRwo_3_QI,8137
|
591
593
|
hestia_earth/models/utils/indicator.py,sha256=UuuraMUdKLqjcm_zEoF8BaMb76qW23djIA_2DeaoiEw,700
|
592
594
|
hestia_earth/models/utils/inorganicFertiliser.py,sha256=_dLBY-otGkLr8PobR5dQ89bF2uwc2PB4JPrHFSksMEQ,1900
|
593
595
|
hestia_earth/models/utils/input.py,sha256=gsVFKTC9WF8dO6YAg_-H_GAOQTnvAr49Ox5-eTH8zf8,5145
|
@@ -630,7 +632,7 @@ hestia_earth/orchestrator/strategies/run/add_key_if_missing.py,sha256=t3U-v87Xpb
|
|
630
632
|
hestia_earth/orchestrator/strategies/run/always.py,sha256=D0In6_kr28s-fgqspawgvj5cgFClxGvepZYqtYsjWVE,217
|
631
633
|
tests/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
632
634
|
tests/models/test_cache_sites.py,sha256=vuEVZh_mkuI2cPotX2GB88lURJm2giOQ3yu2Cn4iLoI,2997
|
633
|
-
tests/models/test_config.py,sha256=
|
635
|
+
tests/models/test_config.py,sha256=JhO7T3bNh2Dl61pKAyM4iEPKybfue02qdneHcJTO2Ck,3368
|
634
636
|
tests/models/test_ecoinventV3.py,sha256=_BqfWiYFaw-Y7A-EeabHEnja3d7yb4Ed7gGGvu3Srpw,1936
|
635
637
|
tests/models/test_ecoinventV3AndEmberClimate.py,sha256=_EOxdrdavXP6L5_LtvaVbXb_-56UJXSaiPhpGntmwVc,801
|
636
638
|
tests/models/test_emissionNotRelevant.py,sha256=YXTdRfcdR_JepHuj2P3Y3r0aFMKNOmsXQHY48tmLTQo,1316
|
@@ -655,8 +657,8 @@ tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsLandOccupatio
|
|
655
657
|
tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsLandTransformation.py,sha256=lcyMTaNMbIjzZrbPxejujfYyAEj2XOH5Ei9pmAQAi7k,1912
|
656
658
|
tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsTotalLandUseEffects.py,sha256=NTc3PZZRc9ZqGpaARdbuzLWR5bB0HCPw5AMdGmwVsRg,704
|
657
659
|
tests/models/cml2001Baseline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
658
|
-
tests/models/cml2001Baseline/test_abioticResourceDepletionFossilFuels.py,sha256
|
659
|
-
tests/models/cml2001Baseline/test_abioticResourceDepletionMineralsAndMetals.py,sha256=
|
660
|
+
tests/models/cml2001Baseline/test_abioticResourceDepletionFossilFuels.py,sha256=lR2PX0mmppnSMWj9-vAD1XUBXQab5w-xS5CbWbNl1Uk,8369
|
661
|
+
tests/models/cml2001Baseline/test_abioticResourceDepletionMineralsAndMetals.py,sha256=y-E5t5x2VcgPsy3cPFBWyULd6vieaGjDY_J2GVJMtUo,4081
|
660
662
|
tests/models/cml2001Baseline/test_eutrophicationPotentialExcludingFate.py,sha256=ZIIx_EiYbUxUoAS7NuQrxqwTFS3rXQm9_1AsqF_bhB8,894
|
661
663
|
tests/models/cml2001Baseline/test_terrestrialAcidificationPotentialIncludingFateAverageEurope.py,sha256=t3WBdg_aTYSLfaqeXUDyvQJ8ZqbvKwv9RKaZyRzj61k,925
|
662
664
|
tests/models/cml2001NonBaseline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -743,7 +745,7 @@ tests/models/dammgen2009/test_noxToAirExcreta.py,sha256=RWd9QvzmJtN9M6UC6KDHkXwt
|
|
743
745
|
tests/models/deRuijterEtAl2010/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
744
746
|
tests/models/deRuijterEtAl2010/test_nh3ToAirCropResidueDecomposition.py,sha256=kS1nUBVohOSCb386g6Wq7iVclmx0haekUDYo7VQ4NCA,2030
|
745
747
|
tests/models/edip2003/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
746
|
-
tests/models/edip2003/test_ozoneDepletionPotential.py,sha256=
|
748
|
+
tests/models/edip2003/test_ozoneDepletionPotential.py,sha256=z0kimdTxzSr8_K5eScbkxq2SB9nbBp41IHqVNR4Nh4Y,688
|
747
749
|
tests/models/emepEea2019/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
748
750
|
tests/models/emepEea2019/test_co2ToAirFuelCombustion.py,sha256=z1H17R_Erox2dMg8xylGB0qt9BMZSwfLAoEMVv9z878,1518
|
749
751
|
tests/models/emepEea2019/test_n2OToAirFuelCombustionDirect.py,sha256=4uemriZAyJBSn-xMttRpxqVHOFNBXlboVODHQYl65zQ,1524
|
@@ -816,9 +818,9 @@ tests/models/haversineFormula/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
816
818
|
tests/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
817
819
|
tests/models/haversineFormula/transport/test_distance.py,sha256=hqzIOA1nGao8uiBE16J0ou52McwV4w30ZLpEAqtfi9k,970
|
818
820
|
tests/models/hestia/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
819
|
-
tests/models/hestia/test_landCover.py,sha256=
|
821
|
+
tests/models/hestia/test_landCover.py,sha256=mcjzAaQy8a2V45lExLuUQiQLpBShTKIn4FK2-lIvy4o,6129
|
820
822
|
tests/models/hestia/test_landTransformation100YearAverageDuringCycle.py,sha256=3qa4rWUFqP1VM5-vm_182rhiBYJDxPqJwWtBqJ5K028,956
|
821
|
-
tests/models/hestia/test_landTransformation20YearAverageDuringCycle.py,sha256=
|
823
|
+
tests/models/hestia/test_landTransformation20YearAverageDuringCycle.py,sha256=gMK0kGIucX9nbYPNbvYreCCJ2BmHGjrhx52hcy1uPGc,979
|
822
824
|
tests/models/hestia/test_seed_emissions.py,sha256=dCUuJBkhwNFBhhcypQN7eMqrWZ9iGCnypoidO5DfQYw,921
|
823
825
|
tests/models/impact_assessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
824
826
|
tests/models/impact_assessment/test_allocationMethod.py,sha256=HkUt6oWdEyFSdxMpx8y_Oxk0nO2Fi9B_kUZcVte9tzg,1223
|
@@ -906,7 +908,7 @@ tests/models/ipcc2019/animal/test_pregnancyRateTotal.py,sha256=3M4cpH0rM0fLR86bw
|
|
906
908
|
tests/models/ipcc2019/animal/test_trueProteinContent.py,sha256=3O2w_PsVEki_piIHO-Wa6m28f5SAHWHsSk27nYDQDuM,783
|
907
909
|
tests/models/ipcc2019/animal/test_weightAtMaturity.py,sha256=-lP4Sx1s11Wyo4Vm1it3SdIpNP43TZWmwOWttrAd_N8,705
|
908
910
|
tests/models/ipcc2021/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
909
|
-
tests/models/ipcc2021/test_gwp100.py,sha256=
|
911
|
+
tests/models/ipcc2021/test_gwp100.py,sha256=r3pDw_TUcOrNlNRWtFAN3CBWfG5FCkHExypVqg0sZVk,857
|
910
912
|
tests/models/jarvisAndPain1994/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
911
913
|
tests/models/jarvisAndPain1994/test_n2ToAirExcreta.py,sha256=aMCuR9fmGDmum7VqLb1oBOsTCjBz5O9XQn2DWtP8HVM,1057
|
912
914
|
tests/models/koble2014/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1015,7 +1017,7 @@ tests/models/pooreNemecek2018/test_ch4ToAirAquacultureSystems.py,sha256=rUxD57yl
|
|
1015
1017
|
tests/models/pooreNemecek2018/test_excretaKgN.py,sha256=4YSri6_P5YXLx8cCAV4SJD36MEL_wWB8ZK-_AwGn0zQ,4064
|
1016
1018
|
tests/models/pooreNemecek2018/test_excretaKgVs.py,sha256=h41KnwQDo4Jp3HrbXTGK-qLU4ZPsWzhDZ5jIwDrmLuo,3256
|
1017
1019
|
tests/models/pooreNemecek2018/test_freshwaterWithdrawalsDuringCycle.py,sha256=5QxDU6VzcwWup3Nuhn32kJoIlAkqcSggGr4CmoRqrFA,1623
|
1018
|
-
tests/models/pooreNemecek2018/test_landOccupationDuringCycle.py,sha256=
|
1020
|
+
tests/models/pooreNemecek2018/test_landOccupationDuringCycle.py,sha256=rEhRHN6h6i4l89mZpyHE-pfsFM8lQUHw__jLu6FKz54,1728
|
1019
1021
|
tests/models/pooreNemecek2018/test_longFallowDuration.py,sha256=kelZajIbKyvVm1vX_grRZy0IUrtejGI5GPn03qbElnw,925
|
1020
1022
|
tests/models/pooreNemecek2018/test_n2OToAirAquacultureSystemsDirect.py,sha256=4YAoUhIwfEmRe2B5BvNg247VeB7UXHNeZqr2mRtJA7Y,2207
|
1021
1023
|
tests/models/pooreNemecek2018/test_n2ToAirAquacultureSystems.py,sha256=YqwAvbYfLVamfkUJUwGTEWEnz8ts66jVF8831QcWNkg,2200
|
@@ -1034,8 +1036,8 @@ tests/models/pooreNemecek2018/test_rotationDuration.py,sha256=tD2E91beAXdyT-xf5Q
|
|
1034
1036
|
tests/models/pooreNemecek2018/test_saplingsDepreciatedAmountPerCycle.py,sha256=seT7-ip5lSjglaM2Wbaf4qsNrc2W_RYnafef4mQlc8U,1668
|
1035
1037
|
tests/models/pooreNemecek2018/test_utils.py,sha256=oqKCNVw6LOAa4jJFadQCL8ysUbUiVCnm0XBOdqa2BVA,742
|
1036
1038
|
tests/models/poschEtAl2008/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1037
|
-
tests/models/poschEtAl2008/test_terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=
|
1038
|
-
tests/models/poschEtAl2008/test_terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=
|
1039
|
+
tests/models/poschEtAl2008/test_terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=aCfUMusw9TH0DZ781RlltoNZeoKs1C8HbffehCYf5Dc,1441
|
1040
|
+
tests/models/poschEtAl2008/test_terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=8B63VI4rR6Ad9Z3TMO9jtAX79JpTTY6Na7PSZsr13jk,1440
|
1039
1041
|
tests/models/recipe2016Egalitarian/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1040
1042
|
tests/models/recipe2016Egalitarian/test_damageToFreshwaterEcosystemsSpeciesYear.py,sha256=OC8WjzPuyz5fd_E-LxFbOg3sasVc6LMJ9UK-jAKO7LU,697
|
1041
1043
|
tests/models/recipe2016Egalitarian/test_damageToHumanHealth.py,sha256=fWjzC9r6itihyW6AdmDkotbhML_0KavXernOpnK1SmY,677
|
@@ -1105,6 +1107,8 @@ tests/models/schmidt2007/test_utils.py,sha256=rmtOV3xiFynjgx8lQNGsJqquG8HDxz3LDm
|
|
1105
1107
|
tests/models/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1106
1108
|
tests/models/site/test_brackishWater.py,sha256=YGCp4glaWudKklYBSp-50KbfvIRtp3F4Qrj5T81ECTk,986
|
1107
1109
|
tests/models/site/test_cationExchangeCapacityPerKgSoil.py,sha256=tNMhN998vcjQ15I-5mNnFh2d7mHzEBIBO6o1VSfQNUE,1075
|
1110
|
+
tests/models/site/test_defaultMethodClassification.py,sha256=2Ek2TkSsWh_kNGBwzzarPt2LR710frziXxTdWq7pX30,532
|
1111
|
+
tests/models/site/test_defaultMethodClassificationDescription.py,sha256=ZqI5dmXxzz-op_czHFwTjHUPhBL1Q_gEU2UZTCkS50I,543
|
1108
1112
|
tests/models/site/test_flowingWater.py,sha256=t_rxvdlmUVDsFBoDF20_zDM-0iiLKkNCV7knO9l1T7o,1370
|
1109
1113
|
tests/models/site/test_freshWater.py,sha256=GOeAxHhPW_2E1wQdQRX4W-r7mnb_LgmiAVLImitoApw,982
|
1110
1114
|
tests/models/site/test_management.py,sha256=-QgZc4jBkhHrvvssn3Xtd3kYGIuV2dDoMJxoejkEhmM,1762
|
@@ -1162,7 +1166,7 @@ tests/models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuF
|
|
1162
1166
|
tests/models/utils/test_array_builders.py,sha256=uHxO4beJhdJD-1lI5aPEAsYziQP8SN7AJ9PEY67DpaI,8417
|
1163
1167
|
tests/models/utils/test_blank_node.py,sha256=G_hH-Gk3__1ZtHQcsdYMbUMwVNSTmYcVBs5jcReIYGM,39945
|
1164
1168
|
tests/models/utils/test_cache_sources.py,sha256=xcGMVbYoV23YC4HLBTL_4qZP1ME2cp3DFebgJMxI2TE,721
|
1165
|
-
tests/models/utils/test_crop.py,sha256=
|
1169
|
+
tests/models/utils/test_crop.py,sha256=d508vQdtB_Q_6hEahNueXed5PaEiLeN7ScbwZIKCiDI,862
|
1166
1170
|
tests/models/utils/test_cropResidueManagement.py,sha256=RQt8lexeJzCyxZceIutgDpw7BpcqmjsUB0C0yZC2QpY,930
|
1167
1171
|
tests/models/utils/test_currency.py,sha256=BPsojPsY9QW2aj8vgbjkPQXU8GU6wDwwtPZ3HdC4KTU,277
|
1168
1172
|
tests/models/utils/test_dataCompleteness.py,sha256=mW6rA7ddhtjZsLxwo5xDnvBdxmqTsivy4RTIU-2Lvk0,1713
|
@@ -1204,8 +1208,8 @@ tests/orchestrator/strategies/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
|
|
1204
1208
|
tests/orchestrator/strategies/run/test_add_blank_node_if_missing.py,sha256=lGqeebvgAwGathB8NLZ14Js5JV_-KyHueaD6I8IH8mU,3615
|
1205
1209
|
tests/orchestrator/strategies/run/test_add_key_if_missing.py,sha256=hKwvk1ohcBVnQUCTiDhRW99J0xEa29BpwFi1KC0yWLE,329
|
1206
1210
|
tests/orchestrator/strategies/run/test_always.py,sha256=w5-Dhp6yLzgZGAeMRz3OrqZbbAed9gZ1O266a3z9k7w,134
|
1207
|
-
hestia_earth_models-0.65.
|
1208
|
-
hestia_earth_models-0.65.
|
1209
|
-
hestia_earth_models-0.65.
|
1210
|
-
hestia_earth_models-0.65.
|
1211
|
-
hestia_earth_models-0.65.
|
1211
|
+
hestia_earth_models-0.65.11.dist-info/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
|
1212
|
+
hestia_earth_models-0.65.11.dist-info/METADATA,sha256=36kRKh8wpenfujTV4awKBVoP9is-KFfwyA8e6IRE6YU,4047
|
1213
|
+
hestia_earth_models-0.65.11.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
1214
|
+
hestia_earth_models-0.65.11.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
|
1215
|
+
hestia_earth_models-0.65.11.dist-info/RECORD,,
|