hestia-earth-models 0.75.1__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.

Files changed (42) hide show
  1. hestia_earth/models/config/Cycle.json +183 -16
  2. hestia_earth/models/cycle/product/economicValueShare.py +4 -4
  3. hestia_earth/models/emepEea2019/blackCarbonToAirFuelCombustion.py +33 -0
  4. hestia_earth/models/emepEea2019/ch4ToAirFuelCombustion.py +33 -0
  5. hestia_earth/models/emepEea2019/coToAirFuelCombustion.py +33 -0
  6. hestia_earth/models/emepEea2019/nmvocToAirFuelCombustion.py +33 -0
  7. hestia_earth/models/emepEea2019/pm10ToAirFuelCombustion.py +33 -0
  8. hestia_earth/models/emepEea2019/pm25ToAirFuelCombustion.py +33 -0
  9. hestia_earth/models/emepEea2019/tspToAirFuelCombustion.py +33 -0
  10. hestia_earth/models/faostat2018/seed.py +9 -8
  11. hestia_earth/models/geospatialDatabase/histosol.py +31 -11
  12. hestia_earth/models/hestia/aboveGroundCropResidueTotal.py +2 -2
  13. hestia_earth/models/hestia/management.py +5 -4
  14. hestia_earth/models/hestia/soilClassification.py +31 -13
  15. hestia_earth/models/ipcc2019/animal/pastureGrass.py +19 -11
  16. hestia_earth/models/ipcc2019/burning_utils.py +406 -4
  17. hestia_earth/models/ipcc2019/ch4ToAirExcreta.py +26 -8
  18. hestia_earth/models/ipcc2019/ch4ToAirOrganicSoilCultivation.py +8 -11
  19. hestia_earth/models/ipcc2019/co2ToAirOrganicSoilCultivation.py +9 -12
  20. hestia_earth/models/ipcc2019/emissionsToAirOrganicSoilBurning.py +516 -0
  21. hestia_earth/models/ipcc2019/n2OToAirOrganicSoilCultivationDirect.py +10 -13
  22. hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py +56 -433
  23. hestia_earth/models/ipcc2019/organicSoilCultivation_utils.py +2 -2
  24. hestia_earth/models/ipcc2019/pastureGrass.py +19 -11
  25. hestia_earth/models/ipcc2019/pastureGrass_utils.py +17 -10
  26. hestia_earth/models/linkedImpactAssessment/emissions.py +1 -1
  27. hestia_earth/models/mocking/search-results.json +1 -1
  28. hestia_earth/models/pefcrGuidanceDocument2017/__init__.py +13 -0
  29. hestia_earth/models/pefcrGuidanceDocument2017/pesticideToAirPesticideApplication.py +29 -0
  30. hestia_earth/models/pefcrGuidanceDocument2017/pesticideToSoilPesticideApplication.py +29 -0
  31. hestia_earth/models/pefcrGuidanceDocument2017/pesticideToWaterPesticideApplication.py +29 -0
  32. hestia_earth/models/pefcrGuidanceDocument2017/utils.py +55 -0
  33. hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py +1 -1
  34. hestia_earth/models/utils/blank_node.py +68 -0
  35. hestia_earth/models/utils/impact_assessment.py +3 -0
  36. hestia_earth/models/version.py +1 -1
  37. hestia_earth/orchestrator/strategies/merge/merge_node.py +32 -2
  38. {hestia_earth_models-0.75.1.dist-info → hestia_earth_models-0.75.3.dist-info}/METADATA +1 -1
  39. {hestia_earth_models-0.75.1.dist-info → hestia_earth_models-0.75.3.dist-info}/RECORD +42 -29
  40. {hestia_earth_models-0.75.1.dist-info → hestia_earth_models-0.75.3.dist-info}/WHEEL +0 -0
  41. {hestia_earth_models-0.75.1.dist-info → hestia_earth_models-0.75.3.dist-info}/licenses/LICENSE +0 -0
  42. {hestia_earth_models-0.75.1.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.other": "False",
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"}]
@@ -16,6 +16,7 @@ from dateutil import parser
16
16
  from dateutil.relativedelta import relativedelta
17
17
  from hestia_earth.schema import TermTermType
18
18
  from hestia_earth.utils.blank_node import ArrayTreatment, get_node_value
19
+ from hestia_earth.utils.date import diff_in_days
19
20
  from hestia_earth.utils.model import filter_list_term_type
20
21
  from hestia_earth.utils.tools import (
21
22
  flatten,
@@ -532,6 +533,10 @@ def node_term_match(
532
533
  return node.get('term', {}).get('@id', None) in target_term_ids
533
534
 
534
535
 
536
+ def filter_list_term_id(nodes: list[dict], target_term_ids: Union[str, set[str]]) -> list[dict]:
537
+ return [node for node in nodes if node_term_match(node, target_term_ids)]
538
+
539
+
535
540
  def node_lookup_match(
536
541
  node: dict,
537
542
  lookup: str,
@@ -1654,3 +1659,66 @@ def validate_start_date_end_date(node: dict) -> bool:
1654
1659
  end_date = _gapfill_datestr(node.get("endDate", OLDEST_DATE), DatestrGapfillMode.END)
1655
1660
 
1656
1661
  return safe_parse_date(start_date) < safe_parse_date(end_date)
1662
+
1663
+
1664
+ def closest_depth(
1665
+ nodes: list[dict], target_depth_upper: float, target_depth_lower: float, depth_strict: bool = True
1666
+ ) -> list[dict]:
1667
+ DEFAULT_KEY = (None, None)
1668
+
1669
+ def group_by(result: dict, node: dict) -> dict:
1670
+ upper = node.get("depthUpper")
1671
+ lower = node.get("depthLower")
1672
+ key = (upper, lower)
1673
+
1674
+ update_dict = {key: result.get(key, []) + [node]}
1675
+ return result | update_dict
1676
+
1677
+ def depth_distance(key: tuple[Optional[float], Optional[float]]) -> float:
1678
+ return sum(
1679
+ abs(depth - target if isinstance(depth, (float, int)) else 9999)
1680
+ for depth, target in zip(key, (target_depth_upper, target_depth_lower))
1681
+ )
1682
+
1683
+ grouped = reduce(group_by, nodes, {})
1684
+ nearest_key = min(grouped.keys(), key=depth_distance, default=DEFAULT_KEY)
1685
+
1686
+ return (
1687
+ grouped.get(nearest_key, []) if depth_distance(nearest_key) <= 0 or not depth_strict else []
1688
+ )
1689
+
1690
+
1691
+ def closest_end_date(
1692
+ nodes: list[dict], target_date: str, mode: DatestrGapfillMode = DatestrGapfillMode.START
1693
+ ) -> list[dict]:
1694
+ DEFAULT_KEY = "no-dates"
1695
+
1696
+ def date_distance(date: str) -> float:
1697
+ date_ = date if date != DEFAULT_KEY else OLDEST_DATE
1698
+ return abs(diff_in_days(
1699
+ _gapfill_datestr(date_, mode),
1700
+ _gapfill_datestr(target_date, mode)
1701
+ ))
1702
+
1703
+ grouped = group_nodes_by_last_date(nodes)
1704
+ nearest_key = min(grouped.keys(), key=date_distance, default=DEFAULT_KEY)
1705
+
1706
+ return grouped.get(nearest_key, [])
1707
+
1708
+
1709
+ def pick_shallowest(nodes: list[dict], default=None):
1710
+ return (
1711
+ default if len(nodes) == 0 else _shallowest_node(nodes) if len(nodes) > 1 else nodes[0]
1712
+ )
1713
+
1714
+
1715
+ def select_nodes_by(nodes: list[dict], filters: list[Callable[[list[dict]], list[dict]]]) -> Union[dict, list[dict]]:
1716
+ """
1717
+ Applies a series of filters to a list of blank nodes. Filters are applied in the order they are specifed in the
1718
+ filters arg.
1719
+ """
1720
+ return reduce(
1721
+ lambda result, func: func(result),
1722
+ filters,
1723
+ nodes
1724
+ )
@@ -226,6 +226,9 @@ def impact_aware_value(model: str, term_id: str, impact: dict, lookup: str, grou
226
226
  """
227
227
  # use cache version which is grouped
228
228
  blank_nodes = get_emissionsResourceUse(impact)
229
+ term_type = TermTermType.RESOURCEUSE.value if 'resourceUse' in lookup else TermTermType.EMISSION.value
230
+ blank_nodes = filter_list_term_type(blank_nodes, term_type)
231
+
229
232
  aware_id = get_site(impact).get('awareWaterBasinId')
230
233
 
231
234
  return None if aware_id is None else all_factor_value(
@@ -1 +1 @@
1
- VERSION = '0.75.1'
1
+ VERSION = '0.75.3'
@@ -1,5 +1,6 @@
1
1
  import pydash
2
- from hestia_earth.schema import EmissionMethodTier
2
+ from hestia_earth.schema import SCHEMA_TYPES, EmissionMethodTier
3
+ from hestia_earth.utils.tools import non_empty_list
3
4
 
4
5
  from hestia_earth.orchestrator.log import logger, logShouldMerge
5
6
  from hestia_earth.orchestrator.utils import update_node_version, _average
@@ -47,6 +48,35 @@ _MERGE_FROM_ARGS = {
47
48
  }
48
49
 
49
50
 
51
+ def _merge_blank_node(source: dict, dest: dict):
52
+ # handle merging new value without min/max when source contained min/max
53
+ min_values = non_empty_list([
54
+ dest.get('value')[0] if isinstance(dest.get('value'), list) else None,
55
+ dest.get('min')[0] if isinstance(dest.get('min'), list) else None,
56
+ source.get('min')[0]
57
+ ]) if isinstance(source.get('min'), list) else None
58
+ min_value = min(min_values) if min_values else None
59
+
60
+ max_values = non_empty_list([
61
+ dest.get('value')[0] if isinstance(dest.get('value'), list) else None,
62
+ dest.get('max')[0] if isinstance(dest.get('max'), list) else None,
63
+ source.get('max')[0]
64
+ ]) if isinstance(source.get('max'), list) else None
65
+ max_value = max(max_values) if max_values else None
66
+
67
+ return (
68
+ {'min': [min_value]} if min_value else {}
69
+ ) | (
70
+ {'max': [max_value]} if max_value else {}
71
+ )
72
+
73
+
74
+ def _merge_data(source: dict, dest: dict):
75
+ is_blank_node = dest.get('@type') in SCHEMA_TYPES
76
+ result = pydash.objects.merge({}, source, dest)
77
+ return result | (_merge_blank_node(source, dest) if is_blank_node else {})
78
+
79
+
50
80
  def merge(source: dict, dest: dict, version: str, model: dict = {}, merge_args: dict = {}, *args):
51
81
  merge_args = {
52
82
  key: func(source, dest, merge_args) for key, func in _MERGE_FROM_ARGS.items()
@@ -56,4 +86,4 @@ def merge(source: dict, dest: dict, version: str, model: dict = {}, merge_args:
56
86
  should_merge = all([v for _k, v in merge_args.items()])
57
87
  logShouldMerge(source, model.get('model'), term_id, should_merge, key=model.get('key'), value=term_id, **merge_args)
58
88
 
59
- return update_node_version(version, pydash.objects.merge({}, source, dest), source) if should_merge else source
89
+ return update_node_version(version, _merge_data(source or {}, dest), source) if should_merge else source
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hestia_earth_models
3
- Version: 0.75.1
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=naKG2iisQ2B5ED0ueMi3ppmSlGC0M6kJGExqIhe_eG8,19
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=3QSThmSDNw0dDREXKnHnxyi1Jb8yCMprTmdjI2HcSlI,61355
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
@@ -87,7 +87,7 @@ hestia_earth/models/cycle/pre_checks/otherSites.py,sha256=G1F8BREiOmq4etwJ0F84yC
87
87
  hestia_earth/models/cycle/pre_checks/site.py,sha256=nMvzSIeqC5KdLetvmGH3XpxtiWdyArVkUdcI6na5cmI,637
88
88
  hestia_earth/models/cycle/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
89
89
  hestia_earth/models/cycle/product/currency.py,sha256=hFhwhkgYCwXMf10rufYupTKv43-Hqr69IZOVn81An_E,2063
90
- hestia_earth/models/cycle/product/economicValueShare.py,sha256=DAqjgmZOw7oaelVqLnmLnE4J3__2zT9oOu2KjBxTLXA,8114
90
+ hestia_earth/models/cycle/product/economicValueShare.py,sha256=6iIjflLQb9pxfVaL7-tWY8rH2PornXXXwXGwfildWWk,8177
91
91
  hestia_earth/models/cycle/product/price.py,sha256=uApxfOeWMjvjNeYQtrLMwZh-mxV0OchZE9_m1h1Vn1w,2300
92
92
  hestia_earth/models/cycle/product/primary.py,sha256=gRRHGcaIsmDBrz-LIrzOHNv-hMbWOBQD4zEIR2iMZdI,1737
93
93
  hestia_earth/models/cycle/product/properties.py,sha256=rnxRq-4kSjQMVyPEv1RBuF5xGJQEOBe51HuID2ytTbQ,1293
@@ -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=hcTExLIB6BdPYX2fZItdRGmiLsKaUblXoh8N1VX3CtY,2745
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
@@ -162,7 +169,7 @@ hestia_earth/models/geospatialDatabase/ecoClimateZone.py,sha256=yWYmeasZ9MYKufe0
162
169
  hestia_earth/models/geospatialDatabase/ecoregion.py,sha256=Hr2zJd-KGmOB5PU6nAbTtnUDWMBwhFOUf8PwT-lcPis,1206
163
170
  hestia_earth/models/geospatialDatabase/erodibility.py,sha256=hSgfsbcsNfjJQhpGDHQuRtLg2PSpOiYH6hC8SDfpFoM,1826
164
171
  hestia_earth/models/geospatialDatabase/heavyWinterPrecipitation.py,sha256=dGVjdW_KUdNfdcPBVgVqtIDbkVmGBzHGyZt-n9He35o,1939
165
- hestia_earth/models/geospatialDatabase/histosol.py,sha256=KkSB_f1BOzNU5u_iokDOZy-SrQaN8PexdoCVk0OvZZY,2587
172
+ hestia_earth/models/geospatialDatabase/histosol.py,sha256=nS4_n2fTQ4SZtpjKFv1LtUfIwQ1zU_nHKEG0bPouRWQ,3406
166
173
  hestia_earth/models/geospatialDatabase/longFallowRatio.py,sha256=xBloty9aEwaucwBAYns5c5kvOl5R6fOfJleHjlAtBqE,2438
167
174
  hestia_earth/models/geospatialDatabase/nutrientLossToAquaticEnvironment.py,sha256=nOsVZpWdjCQm-_Iv_XkUpEF60sUMRV3MYiNGKWKa0jU,1956
168
175
  hestia_earth/models/geospatialDatabase/organicCarbonPerKgSoil.py,sha256=FGn5HcfrC36v27tTtGHHtxh_7FO0B8ui-GUPaZMKIng,2845
@@ -192,7 +199,7 @@ hestia_earth/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_
192
199
  hestia_earth/models/haversineFormula/transport/distance.py,sha256=CJEeirdU-lm1QyJJBxNEFOSjOgItWTZhZUjTd8nLBZE,3983
193
200
  hestia_earth/models/hestia/__init__.py,sha256=o5vAmPzSaK9XPgL8GCne3-lugfCOgZhHELYolNgqyyY,407
194
201
  hestia_earth/models/hestia/aboveGroundCropResidue.py,sha256=eU2_CmrHfrUKhglV_Pd_DVjFzvtgqiG4OCXPRldRqgI,5990
195
- hestia_earth/models/hestia/aboveGroundCropResidueTotal.py,sha256=wa_PO-zS4j-f_9-jQbiqtmIpMbMcAzbTTopUEKPXMFE,2643
202
+ hestia_earth/models/hestia/aboveGroundCropResidueTotal.py,sha256=nQaQjF4X5rtGKf2UdPIhWCh5FZF-8-Dy2eCLd1rlIvc,2643
196
203
  hestia_earth/models/hestia/brackishWater.py,sha256=HxuYBTi3lpP9y177kQ05geBJDKcRoVkrSc6zxWPtQo8,1288
197
204
  hestia_earth/models/hestia/cationExchangeCapacityPerKgSoil.py,sha256=zj0cNDP8QdoxGx4WVSfx8W0hvpTdQL_pznxTg_vGlJk,3656
198
205
  hestia_earth/models/hestia/coldCarcassWeightPerHead.py,sha256=IkOyrLYqSNidrTfuuZcAGXaT5XEDBFmRWPNxAEAORNU,2962
@@ -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=kyS3ZRqL7VtD41QWXyssd8cyoM5AnexeV-3jsDHyeQc,14173
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
@@ -246,7 +253,7 @@ hestia_earth/models/hestia/salineWater.py,sha256=6P0L24tD0-r4VoFt0Uh8djiMgtivGAe
246
253
  hestia_earth/models/hestia/seed_emissions.py,sha256=PMcCx6EBcebIQrQy1NuGSHXvh3IHrpqMJh2vvs4mJKY,12428
247
254
  hestia_earth/models/hestia/slope.py,sha256=2LdcRvRecUkwmlGVqWBQIeaYfRMvsSWKfS9hWvV_DbU,1160
248
255
  hestia_earth/models/hestia/slopeLength.py,sha256=-EK4Kwh2MwFqdRyDWNl4O6zoA4Dz7QcD0RwdlTTaC_E,1166
249
- hestia_earth/models/hestia/soilClassification.py,sha256=HUYqlxHslS1UjBizEynR3iiQLZaESQNNf08wic_PIFc,9852
256
+ hestia_earth/models/hestia/soilClassification.py,sha256=mIasxJbQLGgPWEaEieqdYDvVVBt9633OrIvrwSW7xG0,10373
250
257
  hestia_earth/models/hestia/soilMeasurement.py,sha256=_-3Ex9Lr3e7tseQ530b3axC4svTOQ47dY7vEkLMCNYo,7084
251
258
  hestia_earth/models/hestia/stockingDensityAnimalHousingAverage.py,sha256=seqIDyRefjFKaznXTZMaMov7fF_0DGiUij_UAEwP65g,1743
252
259
  hestia_earth/models/hestia/temperatureAnnual.py,sha256=ja2ts1YGTL5BSh-ccZFWnE6OxPq1B1I2Kw0Kb8XGO2Y,1959
@@ -303,22 +310,23 @@ hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=NOp8WaX1NJk0TawwJRGzdr
303
310
  hestia_earth/models/ipcc2019/belowGroundCropResidue.py,sha256=M9--7akmPWo7gfxEYnKobsJ0HyDzfAzRxLmrCt3Pg1Y,3505
304
311
  hestia_earth/models/ipcc2019/biocharOrganicCarbonPerHa.py,sha256=1N4dsiRY_pyLvPcq3g8uBiAiVwSScLFocS9FFBxRW1s,12580
305
312
  hestia_earth/models/ipcc2019/biomass_utils.py,sha256=NkTPGMl-0tqvhUZKZ1rxW0XTBnZOvgFJki_IPzEEyu0,15796
306
- hestia_earth/models/ipcc2019/burning_utils.py,sha256=uq3ndASMuyMjDZLCqIcIRo2gHZnh0yi01HnLWhleaTA,1822
313
+ hestia_earth/models/ipcc2019/burning_utils.py,sha256=GzuTWhddAsLQ64g1xA38AN16lRG7XeKto12fTjSU7hI,16566
307
314
  hestia_earth/models/ipcc2019/carbonContent.py,sha256=XhXDu6DRQxANBsRsCEgw4f0UJDOgWsvhVyEwK1-4YT0,7263
308
315
  hestia_earth/models/ipcc2019/ch4ToAirAquacultureSystems.py,sha256=n1hG-p67BTXkJATvX1em6255WY0mJxk7SojzBwebtnQ,3385
309
316
  hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=hVdx6atBXrnAyOnsBwxnT4u84L6hyF-yuLtVhme0MLI,12130
310
- hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=Sox2nY1f0_tDrqmv_lFeCruXt89HsrYP9afRAJ-wRXE,6491
317
+ hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=GDmMtaISiZoONYXur5Q0yvK_smArs1IjojM3-YPTFWQ,7136
311
318
  hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py,sha256=3173-WEI_4TpvPdl55VNpmXANPoM92o8hTqcGidj7ds,9979
312
- hestia_earth/models/ipcc2019/ch4ToAirOrganicSoilCultivation.py,sha256=0NX2SGFVXcT2bi-icSc-AiscLI2QqgVsOmWV05nOHpM,9552
319
+ hestia_earth/models/ipcc2019/ch4ToAirOrganicSoilCultivation.py,sha256=zTIBhzwHg5ttUoPJwxKMCuxMGJD-qlcyMvWavhhfalM,9502
313
320
  hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py,sha256=bt9JoG68MBg-u4tw_H7UdpOKj6MMz4QWLEa3ooerghw,4174
314
321
  hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py,sha256=DmvEDPjZeDv8ikby7vPGHVH-T_099-XbiNq-zHPX_1U,3699
315
322
  hestia_earth/models/ipcc2019/co2ToAirBiocharStockChange.py,sha256=khkNR2Z5aFNiF098YLSqr0yQdVlXVXX2_ZagmCzB9PA,3509
316
323
  hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py,sha256=TtE72p3TYsPYV1cdUCNO1gDK2y94JZG8Ra_wnNWTRt8,63246
317
324
  hestia_earth/models/ipcc2019/co2ToAirLimeHydrolysis.py,sha256=5ciisz0wFbjlwfshDzMlvRIjvw_E8NsphX0IulzVD3A,2479
318
- hestia_earth/models/ipcc2019/co2ToAirOrganicSoilCultivation.py,sha256=MZGAlJEGs7DiiFw40tGzx-e8ZMze7sgC-R2X-FZl3aE,7613
325
+ hestia_earth/models/ipcc2019/co2ToAirOrganicSoilCultivation.py,sha256=P0JzCIGnX9cmhusWd1_FGKouvWnOc_78fayAlx8Uasc,7568
319
326
  hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py,sha256=CmKMmW0O6pDcg-uCUIhLXm2xf3c2AktxGS6Cl939xpY,3712
320
327
  hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py,sha256=IInWDQCfMQWd6rXDRZnLMQlaQGghVQJcwFSGtRMdkzo,3871
321
328
  hestia_earth/models/ipcc2019/croppingDuration.py,sha256=AEOnzVc8mbx0kHpm5BIEiXr1zP0IDUl9qKktNlgURnk,3080
329
+ hestia_earth/models/ipcc2019/emissionsToAirOrganicSoilBurning.py,sha256=htQSKzFmWZZiZxl9eeyF01Y3x7gxwPbBiUGg7fghHHk,18816
322
330
  hestia_earth/models/ipcc2019/ligninContent.py,sha256=nAhwrl0b3pbGQnAycEESAzakdpXajONTnbhNwgPR7nw,7293
323
331
  hestia_earth/models/ipcc2019/n2OToAirAquacultureSystemsIndirect.py,sha256=0LzQV6sRw4nnvu4mqJ1M7I0OVLkHCM14Hk1mN337ZyA,1433
324
332
  hestia_earth/models/ipcc2019/n2OToAirCropResidueBurningDirect.py,sha256=24tqCPLCFGSJ9cdiWM0hXNbnD5-2TfiFbdxi6odaoXM,1746
@@ -334,7 +342,7 @@ hestia_earth/models/ipcc2019/n2OToAirNaturalVegetationBurningIndirect.py,sha256=
334
342
  hestia_earth/models/ipcc2019/n2OToAirOrganicFertiliserDirect.py,sha256=RSNdJIVgnGs6Qe3SkR9yLYkwVIOjVPBUhqk7P29pv3I,4195
335
343
  hestia_earth/models/ipcc2019/n2OToAirOrganicFertiliserIndirect.py,sha256=1izTtLx0iFsK5yRzbxoy_kN6oflHTfBEj-sFXBERAnU,1380
336
344
  hestia_earth/models/ipcc2019/n2OToAirOrganicSoilBurningIndirect.py,sha256=6nyMMrhpK5ZaG_Be0ivJB6MSdbYYg6RD67appp1wJiU,1301
337
- hestia_earth/models/ipcc2019/n2OToAirOrganicSoilCultivationDirect.py,sha256=tQvOTcqq642WWXs6xMExvwr-2Qb1L8HHHtOSm20vsrs,5807
345
+ hestia_earth/models/ipcc2019/n2OToAirOrganicSoilCultivationDirect.py,sha256=KCoX0qC96kp1IB2P1uss-S6RGoV_pxDtFRuAWt55mQk,5767
338
346
  hestia_earth/models/ipcc2019/n2OToAirOrganicSoilCultivationIndirect.py,sha256=lXMSAIvWBsNf6TTbYIPTu_uMSBBgk_JDO6S6r630yvg,1321
339
347
  hestia_earth/models/ipcc2019/n2OToAir_indirect_emissions_utils.py,sha256=gsxEwd_WF4ZgUIGb8H1Co6AME_eIpCWPvSCNfDJCKbo,4467
340
348
  hestia_earth/models/ipcc2019/nh3ToAirInorganicFertiliser.py,sha256=UGojWa9GJRf_JQxfvgX8ywwfoL7N-9FGDF7h679iLNM,4336
@@ -344,16 +352,16 @@ hestia_earth/models/ipcc2019/no3ToGroundwaterCropResidueDecomposition.py,sha256=
344
352
  hestia_earth/models/ipcc2019/no3ToGroundwaterExcreta.py,sha256=BV7kdeGlDbSQASBtYZuLNTQktrteaMWGJzIbG97flH0,4319
345
353
  hestia_earth/models/ipcc2019/no3ToGroundwaterInorganicFertiliser.py,sha256=zww-PDlLdz3XbrlXfW7F8nWzP3Iud1uLW-mRo8HZf2o,3250
346
354
  hestia_earth/models/ipcc2019/no3ToGroundwaterOrganicFertiliser.py,sha256=AHCYaj_al-cLFtvWHhxZLlrZfpjIyWg2rKR435qqGxM,3184
347
- hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=1Xc54OBKOnEsv6iMAsxGJvvMDOc0N4zwM_nyXBFt3ac,32407
355
+ hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=C44mPHp_85V96Sp--bhVMCRUj8J4BYZNkanQtMK-gAs,19095
348
356
  hestia_earth/models/ipcc2019/noxToAirInorganicFertiliser.py,sha256=nBBiKzGMUYtHkU49AKBxQ7OdD61cb9_Ehe7ixFWKHR4,4336
349
357
  hestia_earth/models/ipcc2019/noxToAirOrganicFertiliser.py,sha256=yONOR8ppiOXQlPPz68GQ2_3MFzvnOQTJTHpJ956ubW0,4008
350
358
  hestia_earth/models/ipcc2019/organicCarbonPerHa.py,sha256=qYR1iB95Uz841xPe727ZYUtrRhg_Unbktf1YEjZHqyU,8000
351
359
  hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1.py,sha256=IfXans2CZLagxfr8A0GRxCF2pMu9-ZV8DjuUludaeRQ,79084
352
360
  hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py,sha256=2kw9bhkR4o4ZSeC4ZFEIEe7OxZvE7Ft1f3Et94YPl3c,69231
353
361
  hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=DDP3nY-QVRU10FkFihNbnF66-Oa6O6Tkn7ycnetN110,9924
354
- hestia_earth/models/ipcc2019/organicSoilCultivation_utils.py,sha256=S5XaM7142_ShxFFXPZ4HaOdofRzMYucWc--5udxuin4,5361
355
- hestia_earth/models/ipcc2019/pastureGrass.py,sha256=V1PRJ17dYw0p9lvuyRVFuYzJrpmNOs0FjhNUXOuUkyU,10202
356
- hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=nJAup4ZUla90Ink_S2WLkB84FRKI2t1wDCFJNkttpZ4,14336
362
+ hestia_earth/models/ipcc2019/organicSoilCultivation_utils.py,sha256=dnudbsJqzXPyVWD_DlLZkxAh57naINGtoQ8jVd__M2Q,5371
363
+ hestia_earth/models/ipcc2019/pastureGrass.py,sha256=psZqJdnU0h4F-zvpa8yE4ijK6c6sry2e4cYqNdvB9Es,10459
364
+ hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=eL7BWpit0XDuHPsCH85gr-yi8kWEbztaQPZSa-QxROs,14700
357
365
  hestia_earth/models/ipcc2019/utils.py,sha256=xkOtBl85yJu8RI9nQnscIeSJGdUf84dKteM7nvr9mkU,5945
358
366
  hestia_earth/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
367
  hestia_earth/models/ipcc2019/animal/fatContent.py,sha256=rnFergteN5rwH9KLyVQR7iolh5Onj2gF785DnLIbIHI,994
@@ -361,7 +369,7 @@ hestia_earth/models/ipcc2019/animal/hoursWorkedPerDay.py,sha256=BBByUzgM7OymWnuU
361
369
  hestia_earth/models/ipcc2019/animal/liveweightGain.py,sha256=TXEKI0PZFDj7zlg_pmgfwhRT0LS1x1hEswulQYD7Dkg,956
362
370
  hestia_earth/models/ipcc2019/animal/liveweightPerHead.py,sha256=86HRowJnTbwHKDKU0rGaco2-8B1wIQ4nIe_KNqzdXsk,965
363
371
  hestia_earth/models/ipcc2019/animal/milkYieldPerAnimal.py,sha256=Io-EsFBVpY80BdmS96POfZSN1CB835tu_J5AiQZm2do,2522
364
- hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=sBYLuZgfuvlewzoRK0yRKOXNd2qDalFhccGC3RSVQEY,12259
372
+ hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=K_tJ2eJ0Punqwo9BCjoe_4seRU7BSTd0vQk4tgopn5w,12544
365
373
  hestia_earth/models/ipcc2019/animal/pregnancyRateTotal.py,sha256=zib2AW3WJTL4NRYN4a0rRiqSJ5PZLRtwDYia7gigQFY,968
366
374
  hestia_earth/models/ipcc2019/animal/trueProteinContent.py,sha256=fgV0u4sEtLmCk-vUHF6mM03uy1w9nVPDzmxSkLXgPBo,1010
367
375
  hestia_earth/models/ipcc2019/animal/utils.py,sha256=49wX3K5fLDLc33MQJLsGefJ9vlGRwfkNXabc8CGgPQ4,4435
@@ -463,7 +471,7 @@ hestia_earth/models/lcImpactCertainEffectsInfinite/damageToTerrestrialEcosystems
463
471
  hestia_earth/models/lcImpactCertainEffectsInfinite/damageToTerrestrialEcosystemsTerrestrialAcidification.py,sha256=yuVRyKbyfHXNkAYsba1h0M-_T0iuZAgeFfuDYpu3h64,1101
464
472
  hestia_earth/models/lcImpactCertainEffectsInfinite/damageToTerrestrialEcosystemsTerrestrialEcotoxicity.py,sha256=VDKKLvNs_h28vb1RhWDDfG40FaCNqo6fiX5YtgX8wyM,838
465
473
  hestia_earth/models/linkedImpactAssessment/__init__.py,sha256=SPP09DMS4zUThyQfcgLpivFwsey4WSt77CDMYHJPKWE,423
466
- hestia_earth/models/linkedImpactAssessment/emissions.py,sha256=2HVdEfYzlppOspWA6UA0MmLUm4Qq1njUL6nGTE33SXk,6465
474
+ hestia_earth/models/linkedImpactAssessment/emissions.py,sha256=PwDM1i_pfZGiQj3VVycXztvwQSCyAiO_ZB5IuADCjeY,6465
467
475
  hestia_earth/models/linkedImpactAssessment/freshwaterWithdrawalsInputsProduction.py,sha256=OTWVjPikOsZTbzgTzCJBkL6fH4Zbprq5SrV5LSLc4C0,1137
468
476
  hestia_earth/models/linkedImpactAssessment/landOccupationInputsProduction.py,sha256=M1_QXTxCdWccXPaO7YjOtBa6WkmiQj3Xs89lYIUrM7w,1141
469
477
  hestia_earth/models/linkedImpactAssessment/landTransformation100YearAverageInputsProduction.py,sha256=IqQ76I05IC79g2GXY91iWFqEeXk8Fhw-hcrifCaAbiI,1228
@@ -472,7 +480,12 @@ hestia_earth/models/linkedImpactAssessment/utils.py,sha256=uxRu5thfTDGpCNIuv3Nak
472
480
  hestia_earth/models/mocking/__init__.py,sha256=-mJ_zrVWZSGc3awWW2YJfXAK3Nku77sAUgmmFa99Xmo,733
473
481
  hestia_earth/models/mocking/build_mock_search.py,sha256=p15ccEUmkmLp1RiGNznxMz3OFHbI8P1-29ExuohiQN8,1355
474
482
  hestia_earth/models/mocking/mock_search.py,sha256=uvklojTAbjDI7Jw43jGAUDcTHk1R3A3CWiYBJZI6rao,1493
475
- hestia_earth/models/mocking/search-results.json,sha256=adCQArTkXdnUQv9QU-Q03OtPIVwwWIGisHYfdnW6Loo,104036
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
476
489
  hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
477
490
  hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=FoiRk-bULfC9VbhT7L-wgjehrUkG_74XiG2WnW1Rc-U,2402
478
491
  hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=r7Wqo5v29NrKfhDd0g1QCharR2k6H5XFyAsKZ6pvYKY,2321
@@ -497,7 +510,7 @@ hestia_earth/models/pooreNemecek2018/plantationDensity.py,sha256=bhIzBRM48QQeglf
497
510
  hestia_earth/models/pooreNemecek2018/plantationLifespan.py,sha256=caZ2aeUsUDukAWeh6-MjUCE3yEi3MC-DWF1qiW-sDnI,876
498
511
  hestia_earth/models/pooreNemecek2018/plantationProductiveLifespan.py,sha256=Ua1DCiJ0gOsVOOVSzVRvgkxWvB4M_RPlwIXNToIZaEE,1679
499
512
  hestia_earth/models/pooreNemecek2018/rotationDuration.py,sha256=-33xouMotKni2bqiG1IHWPYG-CLozAt27w20UAw1JvE,1434
500
- hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py,sha256=jN6GmYycve_7HmWVmIa6n4PdMDMq1f_T2hfZQ1m-js8,2443
513
+ hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py,sha256=CKrw-tqAsFNX-fEeqdSc7sPdjCYwgsVnW6W57-1F3jg,2442
501
514
  hestia_earth/models/pooreNemecek2018/utils.py,sha256=q3vVRch8waL8EzE-q0WtDRxsrbKhJfvx0olznNtTwcs,3790
502
515
  hestia_earth/models/poschEtAl2008/__init__.py,sha256=nvyyGglxCTV4PpxcOjY7jJb0v8Bjzj435Zt1j6VcryM,414
503
516
  hestia_earth/models/poschEtAl2008/terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=Qf5PQvbqDeKygwhh9w3ALtdjYC4vvxaLANnt2HLfUcQ,1300
@@ -619,7 +632,7 @@ hestia_earth/models/utils/aggregated.py,sha256=O7yoCeBkyAgmV9Fh33aI25Dq4r4GxVXKg
619
632
  hestia_earth/models/utils/animalProduct.py,sha256=M5IunAKGY6oZv3j1Ascl34ywyeLWApqOIlBzbtlA2FE,721
620
633
  hestia_earth/models/utils/aquacultureManagement.py,sha256=dxrbC1Xf140cohxTbSw6TxLAnAASWTdNZwBBam4yQnw,171
621
634
  hestia_earth/models/utils/background_emissions.py,sha256=zxLM71M2Z5fMIfExZJQkyDKtUIDdlTMboN73-DDGvxk,7064
622
- hestia_earth/models/utils/blank_node.py,sha256=nUCnH0Tzpg5Lbf8yF1I1HgDM5DoWw9Vc_HuD_QAL20Y,57027
635
+ hestia_earth/models/utils/blank_node.py,sha256=EnF4GJ7n7jfoDDygGD7r2SoRmoZHP9yWIiQGZiTqKbw,59302
623
636
  hestia_earth/models/utils/cache_sources.py,sha256=MBkrPpjwNiC4ApDjeYVHZjWBbpvAerXRDrMHpjasAZ0,377
624
637
  hestia_earth/models/utils/completeness.py,sha256=1FtDzl1dQ-AZ4nCn1vfGqR4RK3yHItfkksVqsJzIWR0,1256
625
638
  hestia_earth/models/utils/constant.py,sha256=DmB3VVuoh7Pz2QDBJqiUG6yAML2i0fOy1BPuPHmhT1w,3442
@@ -634,7 +647,7 @@ hestia_earth/models/utils/excretaManagement.py,sha256=zeXEAHhdl8Lj1P0M5KXkaV_iks
634
647
  hestia_earth/models/utils/feedipedia.py,sha256=xkdpqWADSK5K3ZdMsJG5hn8HB7mCZy3NbaRUUKe2WRA,3948
635
648
  hestia_earth/models/utils/fertiliser.py,sha256=9Kv7czDEPDvZ5Bz6Rr_2vy2MsXrPDvBC3921cEJSks8,810
636
649
  hestia_earth/models/utils/fuel.py,sha256=XzOELV3dn506PkMKjFQ_ZKVZInd2lL2x6PKdsa6Po4M,1429
637
- hestia_earth/models/utils/impact_assessment.py,sha256=AfIZo_ykkkqWYY2AG-kLzGtd3fwzGIQXxnEKEzL_oGk,8516
650
+ hestia_earth/models/utils/impact_assessment.py,sha256=U35v8je4vrGxtXRS9K_1wFeX_pbFuYd1NBKYCxJRhsQ,8688
638
651
  hestia_earth/models/utils/indicator.py,sha256=OdPNIq_7UZJk8rXccUbDOpBZ2fxOHIcDwfJxWWJVl2A,1409
639
652
  hestia_earth/models/utils/inorganicFertiliser.py,sha256=2Uq6ATWwb_YYRzBCMdrlVWyCDDtWVApUxgxDEN3-3OA,1782
640
653
  hestia_earth/models/utils/input.py,sha256=n17YEoEdodE9I3QWLEjAH2f8YEdbzF4knYN7nGBSXgo,6674
@@ -670,13 +683,13 @@ hestia_earth/orchestrator/strategies/merge/__init__.py,sha256=rs9j1EbAAI1GvFKYZ3
670
683
  hestia_earth/orchestrator/strategies/merge/merge_append.py,sha256=5xJ8fqu2UqCDotVkSxj7yRDRdw0RM2tERsA4j_1Zlu8,915
671
684
  hestia_earth/orchestrator/strategies/merge/merge_default.py,sha256=ssKq5ZIoQr4k2HHpkyPqHJSQQj-AGqu8zUzEQIRafv8,45
672
685
  hestia_earth/orchestrator/strategies/merge/merge_list.py,sha256=k88Dp4GUYFD7LToKoTUCGN83_9RFGyG0G03TvaCb3IQ,4531
673
- hestia_earth/orchestrator/strategies/merge/merge_node.py,sha256=iAgxHVVR7y2kXtR_pdNzS4Fq-iLmwaqNHXMfjIBG6eE,2622
686
+ hestia_earth/orchestrator/strategies/merge/merge_node.py,sha256=HUN_OnudmFE7HA2tAMQHWPvKn4wjX12Y05ENH6nGFqA,3828
674
687
  hestia_earth/orchestrator/strategies/run/__init__.py,sha256=At0V8CI4vyiSY-Vh2PHMhTYfnp7vl31gq78RyCeIqJk,307
675
688
  hestia_earth/orchestrator/strategies/run/add_blank_node_if_missing.py,sha256=lAfL-NK-gh2YQnTis2lIyb1uI_fsnwFWS10qwbga43M,2756
676
689
  hestia_earth/orchestrator/strategies/run/add_key_if_missing.py,sha256=t3U-v87XpbtpsvjA_r0Ftm7MhNkGB0kcUSGFlKBIK_I,352
677
690
  hestia_earth/orchestrator/strategies/run/always.py,sha256=D0In6_kr28s-fgqspawgvj5cgFClxGvepZYqtYsjWVE,217
678
- hestia_earth_models-0.75.1.dist-info/licenses/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
679
- hestia_earth_models-0.75.1.dist-info/METADATA,sha256=KOjt7CWzx1fmpsDFelMpu4hcqz1vbUHzeEpsn1GFV08,4049
680
- hestia_earth_models-0.75.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
681
- hestia_earth_models-0.75.1.dist-info/top_level.txt,sha256=q0QxKEYx9uLpAD5ZtC7Ypq29smEPfOzEAn7Xv8XHGOQ,13
682
- hestia_earth_models-0.75.1.dist-info/RECORD,,
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,,