hestia-earth-models 0.75.2__py3-none-any.whl → 0.75.3__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/config/Cycle.json +168 -16
- hestia_earth/models/emepEea2019/blackCarbonToAirFuelCombustion.py +33 -0
- hestia_earth/models/emepEea2019/ch4ToAirFuelCombustion.py +33 -0
- hestia_earth/models/emepEea2019/coToAirFuelCombustion.py +33 -0
- hestia_earth/models/emepEea2019/nmvocToAirFuelCombustion.py +33 -0
- hestia_earth/models/emepEea2019/pm10ToAirFuelCombustion.py +33 -0
- hestia_earth/models/emepEea2019/pm25ToAirFuelCombustion.py +33 -0
- hestia_earth/models/emepEea2019/tspToAirFuelCombustion.py +33 -0
- hestia_earth/models/faostat2018/seed.py +9 -8
- hestia_earth/models/hestia/management.py +5 -4
- hestia_earth/models/ipcc2019/animal/pastureGrass.py +16 -10
- hestia_earth/models/ipcc2019/pastureGrass.py +16 -10
- hestia_earth/models/ipcc2019/pastureGrass_utils.py +17 -10
- hestia_earth/models/linkedImpactAssessment/emissions.py +1 -1
- hestia_earth/models/mocking/search-results.json +1 -1
- hestia_earth/models/pefcrGuidanceDocument2017/__init__.py +13 -0
- hestia_earth/models/pefcrGuidanceDocument2017/pesticideToAirPesticideApplication.py +29 -0
- hestia_earth/models/pefcrGuidanceDocument2017/pesticideToSoilPesticideApplication.py +29 -0
- hestia_earth/models/pefcrGuidanceDocument2017/pesticideToWaterPesticideApplication.py +29 -0
- hestia_earth/models/pefcrGuidanceDocument2017/utils.py +55 -0
- hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py +1 -1
- hestia_earth/models/version.py +1 -1
- {hestia_earth_models-0.75.2.dist-info → hestia_earth_models-0.75.3.dist-info}/METADATA +1 -1
- {hestia_earth_models-0.75.2.dist-info → hestia_earth_models-0.75.3.dist-info}/RECORD +27 -15
- {hestia_earth_models-0.75.2.dist-info → hestia_earth_models-0.75.3.dist-info}/WHEEL +0 -0
- {hestia_earth_models-0.75.2.dist-info → hestia_earth_models-0.75.3.dist-info}/licenses/LICENSE +0 -0
- {hestia_earth_models-0.75.2.dist-info → hestia_earth_models-0.75.3.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from os.path import dirname, abspath
|
|
2
|
+
import sys
|
|
3
|
+
from importlib import import_module
|
|
4
|
+
|
|
5
|
+
from hestia_earth.models.utils.blank_node import run_if_required
|
|
6
|
+
|
|
7
|
+
CURRENT_DIR = dirname(abspath(__file__)) + '/'
|
|
8
|
+
sys.path.append(CURRENT_DIR)
|
|
9
|
+
MODEL = 'pefcrGuidanceDocument2017'
|
|
10
|
+
PKG = '.'.join(['hestia_earth', 'models', MODEL])
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def run(model: str, data): return run_if_required(MODEL, model, data, import_module(f".{model}", package=PKG))
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from hestia_earth.schema import EmissionMethodTier
|
|
2
|
+
|
|
3
|
+
from .utils import run as run_term
|
|
4
|
+
|
|
5
|
+
REQUIREMENTS = {
|
|
6
|
+
"Cycle": {
|
|
7
|
+
"inputs": [{
|
|
8
|
+
"@type": "Input",
|
|
9
|
+
"term.termType": ["pesticideAI", "pesticideBrandName"],
|
|
10
|
+
"value": "> 0"
|
|
11
|
+
}]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
LOOKUPS = {
|
|
15
|
+
"emission": "pefcr2017PesticideFateFactor"
|
|
16
|
+
}
|
|
17
|
+
RETURNS = {
|
|
18
|
+
"Emission": [{
|
|
19
|
+
"value": "",
|
|
20
|
+
"key": "",
|
|
21
|
+
"methodTier": "tier 1"
|
|
22
|
+
}]
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
TERM_ID = 'pesticideToAirPesticideApplication'
|
|
26
|
+
TIER = EmissionMethodTier.TIER_1.value
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def run(cycle: dict): return run_term(TERM_ID, cycle)
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from hestia_earth.schema import EmissionMethodTier
|
|
2
|
+
|
|
3
|
+
from .utils import run as run_term
|
|
4
|
+
|
|
5
|
+
REQUIREMENTS = {
|
|
6
|
+
"Cycle": {
|
|
7
|
+
"inputs": [{
|
|
8
|
+
"@type": "Input",
|
|
9
|
+
"term.termType": ["pesticideAI", "pesticideBrandName"],
|
|
10
|
+
"value": "> 0"
|
|
11
|
+
}]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
LOOKUPS = {
|
|
15
|
+
"emission": "pefcr2017PesticideFateFactor"
|
|
16
|
+
}
|
|
17
|
+
RETURNS = {
|
|
18
|
+
"Emission": [{
|
|
19
|
+
"value": "",
|
|
20
|
+
"key": "",
|
|
21
|
+
"methodTier": "tier 1"
|
|
22
|
+
}]
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
TERM_ID = 'pesticideToSoilPesticideApplication'
|
|
26
|
+
TIER = EmissionMethodTier.TIER_1.value
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def run(cycle: dict): return run_term(TERM_ID, cycle)
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from hestia_earth.schema import EmissionMethodTier
|
|
2
|
+
|
|
3
|
+
from .utils import run as run_term
|
|
4
|
+
|
|
5
|
+
REQUIREMENTS = {
|
|
6
|
+
"Cycle": {
|
|
7
|
+
"inputs": [{
|
|
8
|
+
"@type": "Input",
|
|
9
|
+
"term.termType": ["pesticideAI", "pesticideBrandName"],
|
|
10
|
+
"value": "> 0"
|
|
11
|
+
}]
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
LOOKUPS = {
|
|
15
|
+
"emission": "pefcr2017PesticideFateFactor"
|
|
16
|
+
}
|
|
17
|
+
RETURNS = {
|
|
18
|
+
"Emission": [{
|
|
19
|
+
"value": "",
|
|
20
|
+
"key": "",
|
|
21
|
+
"methodTier": "tier 1"
|
|
22
|
+
}]
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
TERM_ID = 'pesticideToWaterPesticideApplication'
|
|
26
|
+
TIER = EmissionMethodTier.TIER_1.value
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def run(cycle: dict): return run_term(TERM_ID, cycle)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
from hestia_earth.schema import EmissionMethodTier, TermTermType
|
|
2
|
+
from hestia_earth.utils.tools import flatten, list_sum
|
|
3
|
+
from hestia_earth.utils.blank_node import group_by_keys
|
|
4
|
+
|
|
5
|
+
from hestia_earth.models.log import logShouldRun, logRequirements
|
|
6
|
+
from hestia_earth.models.utils.emission import _new_emission
|
|
7
|
+
from hestia_earth.models.utils.pesticideAI import get_pesticides_from_inputs
|
|
8
|
+
from hestia_earth.models.utils.blank_node import get_lookup_value
|
|
9
|
+
|
|
10
|
+
from . import MODEL
|
|
11
|
+
|
|
12
|
+
_TIER = EmissionMethodTier.TIER_1.value
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def _emission(term_id: str, value: float, key_id: str):
|
|
16
|
+
emission = _new_emission(term=term_id, model=MODEL, value=value, key_id=key_id)
|
|
17
|
+
emission['methodTier'] = _TIER
|
|
18
|
+
return emission
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def _run_input(emission_term_id: str, cycle: dict):
|
|
22
|
+
emission_factor = get_lookup_value({
|
|
23
|
+
'termType': TermTermType.EMISSION.value,
|
|
24
|
+
'@id': emission_term_id
|
|
25
|
+
}, 'pefcr2017PesticideFateFactor')
|
|
26
|
+
|
|
27
|
+
def run(inputs: list):
|
|
28
|
+
input = inputs[0]
|
|
29
|
+
input_term_id = input.get('term', {}).get('@id')
|
|
30
|
+
input_value = list_sum(flatten(input.get('value', []) for input in inputs))
|
|
31
|
+
|
|
32
|
+
# grouping the inputs together in the logs
|
|
33
|
+
input_parent_term_id = (input.get('parent', {})).get('@id') or input.get('animalId', {})
|
|
34
|
+
extra_logs = {
|
|
35
|
+
**({'input_group_id': input_parent_term_id} if input_parent_term_id else {}),
|
|
36
|
+
**({'animalId': input.get('animalId')} if input.get('animalId') else {}),
|
|
37
|
+
f"{emission_term_id}_factor": emission_factor
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
logRequirements(cycle, model=MODEL, term=input_term_id,
|
|
41
|
+
input_value=input_value,
|
|
42
|
+
**extra_logs)
|
|
43
|
+
|
|
44
|
+
logShouldRun(cycle, MODEL, input_term_id, True, methodTier=_TIER)
|
|
45
|
+
logShouldRun(cycle, MODEL, input_term_id, True, methodTier=_TIER, emission_id=emission_term_id)
|
|
46
|
+
|
|
47
|
+
return _emission(emission_term_id, input_value * emission_factor, key_id=input_term_id)
|
|
48
|
+
|
|
49
|
+
return run
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def run(emission_term_id: str, cycle: dict):
|
|
53
|
+
inputs = get_pesticides_from_inputs(cycle)
|
|
54
|
+
grouped_inputs = group_by_keys(inputs, ['term'])
|
|
55
|
+
return flatten(map(_run_input(emission_term_id, cycle), grouped_inputs.values()))
|
|
@@ -10,7 +10,7 @@ from .plantationLifespan import TERM_ID as PRACTICE_TERM_ID
|
|
|
10
10
|
|
|
11
11
|
REQUIREMENTS = {
|
|
12
12
|
"Cycle": {
|
|
13
|
-
"completeness.
|
|
13
|
+
"completeness.seed": "False",
|
|
14
14
|
"cycleDuration": "> 0",
|
|
15
15
|
"products": [{"@type": "Product", "value": "", "term.termType": "crop"}],
|
|
16
16
|
"practices": [{"@type": "Practice", "value": "", "term.@id": "plantationLifespan"}]
|
hestia_earth/models/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION = '0.75.
|
|
1
|
+
VERSION = '0.75.3'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: hestia_earth_models
|
|
3
|
-
Version: 0.75.
|
|
3
|
+
Version: 0.75.3
|
|
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
|
|
@@ -4,7 +4,7 @@ hestia_earth/models/cache_sites.py,sha256=0TK08ewVobQkXQ-qph_uB_mfoOhEqcPr4KKwlP
|
|
|
4
4
|
hestia_earth/models/log.py,sha256=8rZGVAztD5Cy-w9MJWVN7U3pKyxuYHTYnrtn_LmGebI,6524
|
|
5
5
|
hestia_earth/models/preload_requests.py,sha256=-eb4TA4m-A4bLcdAwbKqr3TIsDteVSXhJGCp95mQCew,2504
|
|
6
6
|
hestia_earth/models/requirements.py,sha256=zo8-3JuGOF3tPqdA5fjzfz27YCggXf31e0vM5UMgt5g,17338
|
|
7
|
-
hestia_earth/models/version.py,sha256=
|
|
7
|
+
hestia_earth/models/version.py,sha256=P2W1TWHaYBG_jyaAyy8i14dLGfPR5DyClhzTZxbUmjU,19
|
|
8
8
|
hestia_earth/models/agribalyse2016/__init__.py,sha256=WvK0qCQbnYtg9oZxrACd1wGormZyXibPtpCnIQeDqbw,415
|
|
9
9
|
hestia_earth/models/agribalyse2016/fuelElectricity.py,sha256=FraWAl06a8OSqbAiHYYLv9e4fYZkVw42S9wikfjeTdw,4377
|
|
10
10
|
hestia_earth/models/agribalyse2016/machineryInfrastructureDepreciatedAmountPerCycle.py,sha256=qRkDqpEt3WwleMfHdxMi2nezLmCAxa1TlJZ0IPHDTtI,2584
|
|
@@ -36,7 +36,7 @@ hestia_earth/models/cml2001Baseline/terrestrialAcidificationPotentialIncludingFa
|
|
|
36
36
|
hestia_earth/models/cml2001NonBaseline/__init__.py,sha256=vI8wp8Og_e8DiJqYYvp33YoI3t4ffAC31LWlnV20JTg,419
|
|
37
37
|
hestia_earth/models/cml2001NonBaseline/eutrophicationPotentialIncludingFateAverageEurope.py,sha256=i6zOr4KAe0FYBEnT9M7Aj1bQqtNqVYDZKYOJ4LLhHlE,972
|
|
38
38
|
hestia_earth/models/cml2001NonBaseline/terrestrialAcidificationPotentialExcludingFate.py,sha256=JAzphWh_hY437frP0WLobRjnysMsESNcCaNthvCnGd8,966
|
|
39
|
-
hestia_earth/models/config/Cycle.json,sha256=
|
|
39
|
+
hestia_earth/models/config/Cycle.json,sha256=PKo11d8_rpDh5lN8TJ_HLvFfzhYEfrj6Jd7WHDTXKtU,65923
|
|
40
40
|
hestia_earth/models/config/ImpactAssessment.json,sha256=0t8zv-zZXMwhYqjLhSgXPrIBu1KbEWskvW2Mrtn2EXk,60405
|
|
41
41
|
hestia_earth/models/config/Site.json,sha256=ygHgsrrBHKlj7gY7p_9lGXOGPNFWjZnfnnCHkeLhdOM,14992
|
|
42
42
|
hestia_earth/models/config/__init__.py,sha256=7ZqOGd4dO2Stonte6fbktVZqbY7vp8Ls_LifgofCu8I,3009
|
|
@@ -114,17 +114,24 @@ hestia_earth/models/ecoinventV3AndEmberClimate/utils.py,sha256=6sxSAq8_TvZgN2VZy
|
|
|
114
114
|
hestia_earth/models/edip2003/__init__.py,sha256=nyB0CI2gNmRAXj-203aJHQMmETYhcY-dHbMABOhJ7YI,409
|
|
115
115
|
hestia_earth/models/edip2003/ozoneDepletionPotential.py,sha256=GF9IeaZ_fC9HMYy5GT4gk67RQZLZrdoBZmEdmEgAiYI,908
|
|
116
116
|
hestia_earth/models/emepEea2019/__init__.py,sha256=l90-pWrqIzt1ap1WNk0gF4iZeF5_TSG62hE83bIi4rQ,412
|
|
117
|
+
hestia_earth/models/emepEea2019/blackCarbonToAirFuelCombustion.py,sha256=ZGYVL2CAyK2TlhnusfJZyat8OH3cYo90td9nrOcbQY8,838
|
|
118
|
+
hestia_earth/models/emepEea2019/ch4ToAirFuelCombustion.py,sha256=mn5QMbtuiA2Wmy9epSugJm3p824EHxBOcBuRkvQo4lA,814
|
|
117
119
|
hestia_earth/models/emepEea2019/co2ToAirFuelCombustion.py,sha256=f59-XXhUlPw8L80Q9TATkNZf5Pw9LJlofZWfVJNIL9E,814
|
|
120
|
+
hestia_earth/models/emepEea2019/coToAirFuelCombustion.py,sha256=luU-bedt2hThVh3SUphuEYMayWyUFO5CKGT441x2rsE,811
|
|
118
121
|
hestia_earth/models/emepEea2019/fuelCombustion_utils.py,sha256=ZsQmJZybPQrAtsULOmEKfrSed3wasTvLxSbfnPfARtU,4124
|
|
119
122
|
hestia_earth/models/emepEea2019/n2OToAirFuelCombustionDirect.py,sha256=6IJSNDMXSeuf9_XGmEll8LxusYnEzVR3WadoVj999j8,860
|
|
120
123
|
hestia_earth/models/emepEea2019/nh3ToAirExcreta.py,sha256=DssSjl_Kug9jE5laqJs9X4xOdOrJBnsXSnk-uA_anyE,2153
|
|
121
124
|
hestia_earth/models/emepEea2019/nh3ToAirFuelCombustion.py,sha256=wbruN-aO3Cj8FCaHbXxlom2AYm_7Jef113EbkXHhj4w,814
|
|
122
125
|
hestia_earth/models/emepEea2019/nh3ToAirInorganicFertiliser.py,sha256=7G0_S0G6X9slTykxs6CDb68DvtXB7yfq1iSKg0ReXS8,6036
|
|
126
|
+
hestia_earth/models/emepEea2019/nmvocToAirFuelCombustion.py,sha256=mSuO-P58bFcNGiBJ0A9LolB4R-LcDqVcaZIM46abYq8,820
|
|
123
127
|
hestia_earth/models/emepEea2019/noxToAirFuelCombustion.py,sha256=hJv7vGM2JlKv6E4w2OnwIcjLIt67FFVBPplhGi0X-qw,814
|
|
124
128
|
hestia_earth/models/emepEea2019/pm10ToAirAnimalHousing.py,sha256=7LhOEQokWMWEPspYSQO3PtsmWkygbVAonj_Nq6JAL6c,1384
|
|
129
|
+
hestia_earth/models/emepEea2019/pm10ToAirFuelCombustion.py,sha256=B9ZUQwDPSDUd9KcH-ofsnQ884Q0hd_n85OyM8xQeeUg,817
|
|
125
130
|
hestia_earth/models/emepEea2019/pm25ToAirAnimalHousing.py,sha256=IzGQrRv9Pk0o1Vq18HRWZ10jhmjFG59ijfn_VYAUJIA,1384
|
|
131
|
+
hestia_earth/models/emepEea2019/pm25ToAirFuelCombustion.py,sha256=vKmrD0-HRJOVedFQO4ueTUhMj6S2WIwff9hSB0URb8Y,817
|
|
126
132
|
hestia_earth/models/emepEea2019/so2ToAirFuelCombustion.py,sha256=uJWbJJ2LK-DKLLwJJpJigkMy79xR-Q4nZpY7gthP-Mg,814
|
|
127
133
|
hestia_earth/models/emepEea2019/tspToAirAnimalHousing.py,sha256=TaT5GyYK6MyJQHKApBe-u4fMjqXXdmuBEtUcRYnkhac,1381
|
|
134
|
+
hestia_earth/models/emepEea2019/tspToAirFuelCombustion.py,sha256=cRmTpesYdKKPU435l979q9NSlfK4mavGMOAOKfayc2c,814
|
|
128
135
|
hestia_earth/models/emepEea2019/utils.py,sha256=avwNzVQKUgFDq-XyqVrGHiJG5WBrfxGfU94yKPz6TzQ,2947
|
|
129
136
|
hestia_earth/models/emissionNotRelevant/__init__.py,sha256=XnuL1CBeAYpi-Uor8oAWGJd40Em5vCBd0h3Uk35vP90,3003
|
|
130
137
|
hestia_earth/models/environmentalFootprintV3_1/__init__.py,sha256=tF2WrWiV1Wzi2vnRiNXdfPWfmVxgVu9w9-7eA6PA7-s,473
|
|
@@ -145,7 +152,7 @@ hestia_earth/models/faostat2018/coldCarcassWeightPerHead.py,sha256=Qf_nvHxT4mn9k
|
|
|
145
152
|
hestia_earth/models/faostat2018/coldDressedCarcassWeightPerHead.py,sha256=2WqIFxUMHngcsY7CffAn0bZClB_VXW1egtvBrKOFmxw,3196
|
|
146
153
|
hestia_earth/models/faostat2018/liveweightPerHead.py,sha256=y0_3A_D_biQ9QOhCwxDtfV85tiZhEMiXMZ_igMsd1iI,5175
|
|
147
154
|
hestia_earth/models/faostat2018/readyToCookWeightPerHead.py,sha256=obJLPV8GgG2lEhLqg9RrJLSFPzbasXJnmzHnwkpW7O0,3131
|
|
148
|
-
hestia_earth/models/faostat2018/seed.py,sha256=
|
|
155
|
+
hestia_earth/models/faostat2018/seed.py,sha256=BoWnHHtSaHEm1uPjdCch6TtgoBgiUs_Atezjkc6ZIaY,2647
|
|
149
156
|
hestia_earth/models/faostat2018/utils.py,sha256=RFzVEjExbenP25ablpVHmzJ4ISEau2KnvU-EPFc5EGQ,8034
|
|
150
157
|
hestia_earth/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
158
|
hestia_earth/models/faostat2018/product/price.py,sha256=w06-xidplqBzWvOUJHqX9Ati9PsBvXrKHQTNygZbQ3g,7849
|
|
@@ -218,7 +225,7 @@ hestia_earth/models/hestia/landTransformation100YearAverageDuringCycle.py,sha256
|
|
|
218
225
|
hestia_earth/models/hestia/landTransformation20YearAverageDuringCycle.py,sha256=yWbnkjvV87M8lUcSR5nxJGunX3Ne3wdVvBMR2b1K_Sc,1200
|
|
219
226
|
hestia_earth/models/hestia/liveAnimal.py,sha256=LhPlAJUVFDwUlKMLaznFidgc8woD4kAeUSUMXlg3fRI,3872
|
|
220
227
|
hestia_earth/models/hestia/longFallowRatio.py,sha256=MymOuWbYSupb-awCwTd3QZ2wm2u-FCRfYrgJof3l_k0,1589
|
|
221
|
-
hestia_earth/models/hestia/management.py,sha256=
|
|
228
|
+
hestia_earth/models/hestia/management.py,sha256=RqjKd0UDkHQYnedKlKYJm_OW235c1Dk1bTVHFmsx89w,14196
|
|
222
229
|
hestia_earth/models/hestia/materialAndSubstrate.py,sha256=rj863BlK9CfOOGbCn_7b1hh3MCcdg2YDuQL8lAYd5XU,5126
|
|
223
230
|
hestia_earth/models/hestia/milkYield.py,sha256=YX0lYDxRl_jp4yzWbJUni12I1WzE-Jepm5kr8doiOmo,5125
|
|
224
231
|
hestia_earth/models/hestia/netPrimaryProduction.py,sha256=j9BkWxDzxhPhRlbClTw9a7CtLLkZqs7uYICHBhE76SM,1866
|
|
@@ -353,8 +360,8 @@ hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1.py,sha256=IfXans2CZLagxfr
|
|
|
353
360
|
hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py,sha256=2kw9bhkR4o4ZSeC4ZFEIEe7OxZvE7Ft1f3Et94YPl3c,69231
|
|
354
361
|
hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=DDP3nY-QVRU10FkFihNbnF66-Oa6O6Tkn7ycnetN110,9924
|
|
355
362
|
hestia_earth/models/ipcc2019/organicSoilCultivation_utils.py,sha256=dnudbsJqzXPyVWD_DlLZkxAh57naINGtoQ8jVd__M2Q,5371
|
|
356
|
-
hestia_earth/models/ipcc2019/pastureGrass.py,sha256=
|
|
357
|
-
hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=
|
|
363
|
+
hestia_earth/models/ipcc2019/pastureGrass.py,sha256=psZqJdnU0h4F-zvpa8yE4ijK6c6sry2e4cYqNdvB9Es,10459
|
|
364
|
+
hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=eL7BWpit0XDuHPsCH85gr-yi8kWEbztaQPZSa-QxROs,14700
|
|
358
365
|
hestia_earth/models/ipcc2019/utils.py,sha256=xkOtBl85yJu8RI9nQnscIeSJGdUf84dKteM7nvr9mkU,5945
|
|
359
366
|
hestia_earth/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
367
|
hestia_earth/models/ipcc2019/animal/fatContent.py,sha256=rnFergteN5rwH9KLyVQR7iolh5Onj2gF785DnLIbIHI,994
|
|
@@ -362,7 +369,7 @@ hestia_earth/models/ipcc2019/animal/hoursWorkedPerDay.py,sha256=BBByUzgM7OymWnuU
|
|
|
362
369
|
hestia_earth/models/ipcc2019/animal/liveweightGain.py,sha256=TXEKI0PZFDj7zlg_pmgfwhRT0LS1x1hEswulQYD7Dkg,956
|
|
363
370
|
hestia_earth/models/ipcc2019/animal/liveweightPerHead.py,sha256=86HRowJnTbwHKDKU0rGaco2-8B1wIQ4nIe_KNqzdXsk,965
|
|
364
371
|
hestia_earth/models/ipcc2019/animal/milkYieldPerAnimal.py,sha256=Io-EsFBVpY80BdmS96POfZSN1CB835tu_J5AiQZm2do,2522
|
|
365
|
-
hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=
|
|
372
|
+
hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=K_tJ2eJ0Punqwo9BCjoe_4seRU7BSTd0vQk4tgopn5w,12544
|
|
366
373
|
hestia_earth/models/ipcc2019/animal/pregnancyRateTotal.py,sha256=zib2AW3WJTL4NRYN4a0rRiqSJ5PZLRtwDYia7gigQFY,968
|
|
367
374
|
hestia_earth/models/ipcc2019/animal/trueProteinContent.py,sha256=fgV0u4sEtLmCk-vUHF6mM03uy1w9nVPDzmxSkLXgPBo,1010
|
|
368
375
|
hestia_earth/models/ipcc2019/animal/utils.py,sha256=49wX3K5fLDLc33MQJLsGefJ9vlGRwfkNXabc8CGgPQ4,4435
|
|
@@ -464,7 +471,7 @@ hestia_earth/models/lcImpactCertainEffectsInfinite/damageToTerrestrialEcosystems
|
|
|
464
471
|
hestia_earth/models/lcImpactCertainEffectsInfinite/damageToTerrestrialEcosystemsTerrestrialAcidification.py,sha256=yuVRyKbyfHXNkAYsba1h0M-_T0iuZAgeFfuDYpu3h64,1101
|
|
465
472
|
hestia_earth/models/lcImpactCertainEffectsInfinite/damageToTerrestrialEcosystemsTerrestrialEcotoxicity.py,sha256=VDKKLvNs_h28vb1RhWDDfG40FaCNqo6fiX5YtgX8wyM,838
|
|
466
473
|
hestia_earth/models/linkedImpactAssessment/__init__.py,sha256=SPP09DMS4zUThyQfcgLpivFwsey4WSt77CDMYHJPKWE,423
|
|
467
|
-
hestia_earth/models/linkedImpactAssessment/emissions.py,sha256=
|
|
474
|
+
hestia_earth/models/linkedImpactAssessment/emissions.py,sha256=PwDM1i_pfZGiQj3VVycXztvwQSCyAiO_ZB5IuADCjeY,6465
|
|
468
475
|
hestia_earth/models/linkedImpactAssessment/freshwaterWithdrawalsInputsProduction.py,sha256=OTWVjPikOsZTbzgTzCJBkL6fH4Zbprq5SrV5LSLc4C0,1137
|
|
469
476
|
hestia_earth/models/linkedImpactAssessment/landOccupationInputsProduction.py,sha256=M1_QXTxCdWccXPaO7YjOtBa6WkmiQj3Xs89lYIUrM7w,1141
|
|
470
477
|
hestia_earth/models/linkedImpactAssessment/landTransformation100YearAverageInputsProduction.py,sha256=IqQ76I05IC79g2GXY91iWFqEeXk8Fhw-hcrifCaAbiI,1228
|
|
@@ -473,7 +480,12 @@ hestia_earth/models/linkedImpactAssessment/utils.py,sha256=uxRu5thfTDGpCNIuv3Nak
|
|
|
473
480
|
hestia_earth/models/mocking/__init__.py,sha256=-mJ_zrVWZSGc3awWW2YJfXAK3Nku77sAUgmmFa99Xmo,733
|
|
474
481
|
hestia_earth/models/mocking/build_mock_search.py,sha256=p15ccEUmkmLp1RiGNznxMz3OFHbI8P1-29ExuohiQN8,1355
|
|
475
482
|
hestia_earth/models/mocking/mock_search.py,sha256=uvklojTAbjDI7Jw43jGAUDcTHk1R3A3CWiYBJZI6rao,1493
|
|
476
|
-
hestia_earth/models/mocking/search-results.json,sha256=
|
|
483
|
+
hestia_earth/models/mocking/search-results.json,sha256=WAgmianLupnFRo_B0QJ5R_hItT1m6ML7CEPZJOa94GQ,104037
|
|
484
|
+
hestia_earth/models/pefcrGuidanceDocument2017/__init__.py,sha256=4tA_8h6tgbC_zpFKqGKdK7F6EZXHhabNZ8uk6aUvMXc,426
|
|
485
|
+
hestia_earth/models/pefcrGuidanceDocument2017/pesticideToAirPesticideApplication.py,sha256=yVCUqhpuiBsoM70IzIwBGLLlBoNo3DDmPfwJ6yLTHTg,600
|
|
486
|
+
hestia_earth/models/pefcrGuidanceDocument2017/pesticideToSoilPesticideApplication.py,sha256=6L-s_5Waxagm1ysylEpr9PwESmJN3V437fciT3uirBU,601
|
|
487
|
+
hestia_earth/models/pefcrGuidanceDocument2017/pesticideToWaterPesticideApplication.py,sha256=7eAVUtUCx4v64Qu0KixxlZKbjHeGq4TEPNrHPMSPMco,602
|
|
488
|
+
hestia_earth/models/pefcrGuidanceDocument2017/utils.py,sha256=6K7dNz06LX9vmJFFwjF7c6gTV8P_FofPsw8-5eu_iOY,2209
|
|
477
489
|
hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
|
|
478
490
|
hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=FoiRk-bULfC9VbhT7L-wgjehrUkG_74XiG2WnW1Rc-U,2402
|
|
479
491
|
hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=r7Wqo5v29NrKfhDd0g1QCharR2k6H5XFyAsKZ6pvYKY,2321
|
|
@@ -498,7 +510,7 @@ hestia_earth/models/pooreNemecek2018/plantationDensity.py,sha256=bhIzBRM48QQeglf
|
|
|
498
510
|
hestia_earth/models/pooreNemecek2018/plantationLifespan.py,sha256=caZ2aeUsUDukAWeh6-MjUCE3yEi3MC-DWF1qiW-sDnI,876
|
|
499
511
|
hestia_earth/models/pooreNemecek2018/plantationProductiveLifespan.py,sha256=Ua1DCiJ0gOsVOOVSzVRvgkxWvB4M_RPlwIXNToIZaEE,1679
|
|
500
512
|
hestia_earth/models/pooreNemecek2018/rotationDuration.py,sha256=-33xouMotKni2bqiG1IHWPYG-CLozAt27w20UAw1JvE,1434
|
|
501
|
-
hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py,sha256=
|
|
513
|
+
hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py,sha256=CKrw-tqAsFNX-fEeqdSc7sPdjCYwgsVnW6W57-1F3jg,2442
|
|
502
514
|
hestia_earth/models/pooreNemecek2018/utils.py,sha256=q3vVRch8waL8EzE-q0WtDRxsrbKhJfvx0olznNtTwcs,3790
|
|
503
515
|
hestia_earth/models/poschEtAl2008/__init__.py,sha256=nvyyGglxCTV4PpxcOjY7jJb0v8Bjzj435Zt1j6VcryM,414
|
|
504
516
|
hestia_earth/models/poschEtAl2008/terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=Qf5PQvbqDeKygwhh9w3ALtdjYC4vvxaLANnt2HLfUcQ,1300
|
|
@@ -676,8 +688,8 @@ hestia_earth/orchestrator/strategies/run/__init__.py,sha256=At0V8CI4vyiSY-Vh2PHM
|
|
|
676
688
|
hestia_earth/orchestrator/strategies/run/add_blank_node_if_missing.py,sha256=lAfL-NK-gh2YQnTis2lIyb1uI_fsnwFWS10qwbga43M,2756
|
|
677
689
|
hestia_earth/orchestrator/strategies/run/add_key_if_missing.py,sha256=t3U-v87XpbtpsvjA_r0Ftm7MhNkGB0kcUSGFlKBIK_I,352
|
|
678
690
|
hestia_earth/orchestrator/strategies/run/always.py,sha256=D0In6_kr28s-fgqspawgvj5cgFClxGvepZYqtYsjWVE,217
|
|
679
|
-
hestia_earth_models-0.75.
|
|
680
|
-
hestia_earth_models-0.75.
|
|
681
|
-
hestia_earth_models-0.75.
|
|
682
|
-
hestia_earth_models-0.75.
|
|
683
|
-
hestia_earth_models-0.75.
|
|
691
|
+
hestia_earth_models-0.75.3.dist-info/licenses/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
|
|
692
|
+
hestia_earth_models-0.75.3.dist-info/METADATA,sha256=db6OOoTcwoccjFutW_CQKZemWb2zDsz1ugY_RTWzCBg,4049
|
|
693
|
+
hestia_earth_models-0.75.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
694
|
+
hestia_earth_models-0.75.3.dist-info/top_level.txt,sha256=q0QxKEYx9uLpAD5ZtC7Ypq29smEPfOzEAn7Xv8XHGOQ,13
|
|
695
|
+
hestia_earth_models-0.75.3.dist-info/RECORD,,
|
|
File without changes
|
{hestia_earth_models-0.75.2.dist-info → hestia_earth_models-0.75.3.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|