hestia-earth-models 0.75.1__py3-none-any.whl → 0.75.2__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 (25) hide show
  1. hestia_earth/models/config/Cycle.json +15 -0
  2. hestia_earth/models/cycle/product/economicValueShare.py +4 -4
  3. hestia_earth/models/geospatialDatabase/histosol.py +31 -11
  4. hestia_earth/models/hestia/aboveGroundCropResidueTotal.py +2 -2
  5. hestia_earth/models/hestia/soilClassification.py +31 -13
  6. hestia_earth/models/ipcc2019/animal/pastureGrass.py +3 -1
  7. hestia_earth/models/ipcc2019/burning_utils.py +406 -4
  8. hestia_earth/models/ipcc2019/ch4ToAirExcreta.py +26 -8
  9. hestia_earth/models/ipcc2019/ch4ToAirOrganicSoilCultivation.py +8 -11
  10. hestia_earth/models/ipcc2019/co2ToAirOrganicSoilCultivation.py +9 -12
  11. hestia_earth/models/ipcc2019/emissionsToAirOrganicSoilBurning.py +516 -0
  12. hestia_earth/models/ipcc2019/n2OToAirOrganicSoilCultivationDirect.py +10 -13
  13. hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py +56 -433
  14. hestia_earth/models/ipcc2019/organicSoilCultivation_utils.py +2 -2
  15. hestia_earth/models/ipcc2019/pastureGrass.py +3 -1
  16. hestia_earth/models/mocking/search-results.json +1 -1
  17. hestia_earth/models/utils/blank_node.py +68 -0
  18. hestia_earth/models/utils/impact_assessment.py +3 -0
  19. hestia_earth/models/version.py +1 -1
  20. hestia_earth/orchestrator/strategies/merge/merge_node.py +32 -2
  21. {hestia_earth_models-0.75.1.dist-info → hestia_earth_models-0.75.2.dist-info}/METADATA +1 -1
  22. {hestia_earth_models-0.75.1.dist-info → hestia_earth_models-0.75.2.dist-info}/RECORD +25 -24
  23. {hestia_earth_models-0.75.1.dist-info → hestia_earth_models-0.75.2.dist-info}/WHEEL +0 -0
  24. {hestia_earth_models-0.75.1.dist-info → hestia_earth_models-0.75.2.dist-info}/licenses/LICENSE +0 -0
  25. {hestia_earth_models-0.75.1.dist-info → hestia_earth_models-0.75.2.dist-info}/top_level.txt +0 -0
@@ -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.2'
@@ -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.2
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=Pg2K5_q_s8IAzrhGY8sBONp6X-Q4n38geyy_hka2wk0,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=bYIEYKF7UlbWx0u8t0G5FsdWTHs5BM1hso5CWUh7qtA,61747
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
@@ -162,7 +162,7 @@ hestia_earth/models/geospatialDatabase/ecoClimateZone.py,sha256=yWYmeasZ9MYKufe0
162
162
  hestia_earth/models/geospatialDatabase/ecoregion.py,sha256=Hr2zJd-KGmOB5PU6nAbTtnUDWMBwhFOUf8PwT-lcPis,1206
163
163
  hestia_earth/models/geospatialDatabase/erodibility.py,sha256=hSgfsbcsNfjJQhpGDHQuRtLg2PSpOiYH6hC8SDfpFoM,1826
164
164
  hestia_earth/models/geospatialDatabase/heavyWinterPrecipitation.py,sha256=dGVjdW_KUdNfdcPBVgVqtIDbkVmGBzHGyZt-n9He35o,1939
165
- hestia_earth/models/geospatialDatabase/histosol.py,sha256=KkSB_f1BOzNU5u_iokDOZy-SrQaN8PexdoCVk0OvZZY,2587
165
+ hestia_earth/models/geospatialDatabase/histosol.py,sha256=nS4_n2fTQ4SZtpjKFv1LtUfIwQ1zU_nHKEG0bPouRWQ,3406
166
166
  hestia_earth/models/geospatialDatabase/longFallowRatio.py,sha256=xBloty9aEwaucwBAYns5c5kvOl5R6fOfJleHjlAtBqE,2438
167
167
  hestia_earth/models/geospatialDatabase/nutrientLossToAquaticEnvironment.py,sha256=nOsVZpWdjCQm-_Iv_XkUpEF60sUMRV3MYiNGKWKa0jU,1956
168
168
  hestia_earth/models/geospatialDatabase/organicCarbonPerKgSoil.py,sha256=FGn5HcfrC36v27tTtGHHtxh_7FO0B8ui-GUPaZMKIng,2845
@@ -192,7 +192,7 @@ hestia_earth/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_
192
192
  hestia_earth/models/haversineFormula/transport/distance.py,sha256=CJEeirdU-lm1QyJJBxNEFOSjOgItWTZhZUjTd8nLBZE,3983
193
193
  hestia_earth/models/hestia/__init__.py,sha256=o5vAmPzSaK9XPgL8GCne3-lugfCOgZhHELYolNgqyyY,407
194
194
  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
195
+ hestia_earth/models/hestia/aboveGroundCropResidueTotal.py,sha256=nQaQjF4X5rtGKf2UdPIhWCh5FZF-8-Dy2eCLd1rlIvc,2643
196
196
  hestia_earth/models/hestia/brackishWater.py,sha256=HxuYBTi3lpP9y177kQ05geBJDKcRoVkrSc6zxWPtQo8,1288
197
197
  hestia_earth/models/hestia/cationExchangeCapacityPerKgSoil.py,sha256=zj0cNDP8QdoxGx4WVSfx8W0hvpTdQL_pznxTg_vGlJk,3656
198
198
  hestia_earth/models/hestia/coldCarcassWeightPerHead.py,sha256=IkOyrLYqSNidrTfuuZcAGXaT5XEDBFmRWPNxAEAORNU,2962
@@ -246,7 +246,7 @@ hestia_earth/models/hestia/salineWater.py,sha256=6P0L24tD0-r4VoFt0Uh8djiMgtivGAe
246
246
  hestia_earth/models/hestia/seed_emissions.py,sha256=PMcCx6EBcebIQrQy1NuGSHXvh3IHrpqMJh2vvs4mJKY,12428
247
247
  hestia_earth/models/hestia/slope.py,sha256=2LdcRvRecUkwmlGVqWBQIeaYfRMvsSWKfS9hWvV_DbU,1160
248
248
  hestia_earth/models/hestia/slopeLength.py,sha256=-EK4Kwh2MwFqdRyDWNl4O6zoA4Dz7QcD0RwdlTTaC_E,1166
249
- hestia_earth/models/hestia/soilClassification.py,sha256=HUYqlxHslS1UjBizEynR3iiQLZaESQNNf08wic_PIFc,9852
249
+ hestia_earth/models/hestia/soilClassification.py,sha256=mIasxJbQLGgPWEaEieqdYDvVVBt9633OrIvrwSW7xG0,10373
250
250
  hestia_earth/models/hestia/soilMeasurement.py,sha256=_-3Ex9Lr3e7tseQ530b3axC4svTOQ47dY7vEkLMCNYo,7084
251
251
  hestia_earth/models/hestia/stockingDensityAnimalHousingAverage.py,sha256=seqIDyRefjFKaznXTZMaMov7fF_0DGiUij_UAEwP65g,1743
252
252
  hestia_earth/models/hestia/temperatureAnnual.py,sha256=ja2ts1YGTL5BSh-ccZFWnE6OxPq1B1I2Kw0Kb8XGO2Y,1959
@@ -303,22 +303,23 @@ hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=NOp8WaX1NJk0TawwJRGzdr
303
303
  hestia_earth/models/ipcc2019/belowGroundCropResidue.py,sha256=M9--7akmPWo7gfxEYnKobsJ0HyDzfAzRxLmrCt3Pg1Y,3505
304
304
  hestia_earth/models/ipcc2019/biocharOrganicCarbonPerHa.py,sha256=1N4dsiRY_pyLvPcq3g8uBiAiVwSScLFocS9FFBxRW1s,12580
305
305
  hestia_earth/models/ipcc2019/biomass_utils.py,sha256=NkTPGMl-0tqvhUZKZ1rxW0XTBnZOvgFJki_IPzEEyu0,15796
306
- hestia_earth/models/ipcc2019/burning_utils.py,sha256=uq3ndASMuyMjDZLCqIcIRo2gHZnh0yi01HnLWhleaTA,1822
306
+ hestia_earth/models/ipcc2019/burning_utils.py,sha256=GzuTWhddAsLQ64g1xA38AN16lRG7XeKto12fTjSU7hI,16566
307
307
  hestia_earth/models/ipcc2019/carbonContent.py,sha256=XhXDu6DRQxANBsRsCEgw4f0UJDOgWsvhVyEwK1-4YT0,7263
308
308
  hestia_earth/models/ipcc2019/ch4ToAirAquacultureSystems.py,sha256=n1hG-p67BTXkJATvX1em6255WY0mJxk7SojzBwebtnQ,3385
309
309
  hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=hVdx6atBXrnAyOnsBwxnT4u84L6hyF-yuLtVhme0MLI,12130
310
- hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=Sox2nY1f0_tDrqmv_lFeCruXt89HsrYP9afRAJ-wRXE,6491
310
+ hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=GDmMtaISiZoONYXur5Q0yvK_smArs1IjojM3-YPTFWQ,7136
311
311
  hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py,sha256=3173-WEI_4TpvPdl55VNpmXANPoM92o8hTqcGidj7ds,9979
312
- hestia_earth/models/ipcc2019/ch4ToAirOrganicSoilCultivation.py,sha256=0NX2SGFVXcT2bi-icSc-AiscLI2QqgVsOmWV05nOHpM,9552
312
+ hestia_earth/models/ipcc2019/ch4ToAirOrganicSoilCultivation.py,sha256=zTIBhzwHg5ttUoPJwxKMCuxMGJD-qlcyMvWavhhfalM,9502
313
313
  hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py,sha256=bt9JoG68MBg-u4tw_H7UdpOKj6MMz4QWLEa3ooerghw,4174
314
314
  hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py,sha256=DmvEDPjZeDv8ikby7vPGHVH-T_099-XbiNq-zHPX_1U,3699
315
315
  hestia_earth/models/ipcc2019/co2ToAirBiocharStockChange.py,sha256=khkNR2Z5aFNiF098YLSqr0yQdVlXVXX2_ZagmCzB9PA,3509
316
316
  hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py,sha256=TtE72p3TYsPYV1cdUCNO1gDK2y94JZG8Ra_wnNWTRt8,63246
317
317
  hestia_earth/models/ipcc2019/co2ToAirLimeHydrolysis.py,sha256=5ciisz0wFbjlwfshDzMlvRIjvw_E8NsphX0IulzVD3A,2479
318
- hestia_earth/models/ipcc2019/co2ToAirOrganicSoilCultivation.py,sha256=MZGAlJEGs7DiiFw40tGzx-e8ZMze7sgC-R2X-FZl3aE,7613
318
+ hestia_earth/models/ipcc2019/co2ToAirOrganicSoilCultivation.py,sha256=P0JzCIGnX9cmhusWd1_FGKouvWnOc_78fayAlx8Uasc,7568
319
319
  hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py,sha256=CmKMmW0O6pDcg-uCUIhLXm2xf3c2AktxGS6Cl939xpY,3712
320
320
  hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py,sha256=IInWDQCfMQWd6rXDRZnLMQlaQGghVQJcwFSGtRMdkzo,3871
321
321
  hestia_earth/models/ipcc2019/croppingDuration.py,sha256=AEOnzVc8mbx0kHpm5BIEiXr1zP0IDUl9qKktNlgURnk,3080
322
+ hestia_earth/models/ipcc2019/emissionsToAirOrganicSoilBurning.py,sha256=htQSKzFmWZZiZxl9eeyF01Y3x7gxwPbBiUGg7fghHHk,18816
322
323
  hestia_earth/models/ipcc2019/ligninContent.py,sha256=nAhwrl0b3pbGQnAycEESAzakdpXajONTnbhNwgPR7nw,7293
323
324
  hestia_earth/models/ipcc2019/n2OToAirAquacultureSystemsIndirect.py,sha256=0LzQV6sRw4nnvu4mqJ1M7I0OVLkHCM14Hk1mN337ZyA,1433
324
325
  hestia_earth/models/ipcc2019/n2OToAirCropResidueBurningDirect.py,sha256=24tqCPLCFGSJ9cdiWM0hXNbnD5-2TfiFbdxi6odaoXM,1746
@@ -334,7 +335,7 @@ hestia_earth/models/ipcc2019/n2OToAirNaturalVegetationBurningIndirect.py,sha256=
334
335
  hestia_earth/models/ipcc2019/n2OToAirOrganicFertiliserDirect.py,sha256=RSNdJIVgnGs6Qe3SkR9yLYkwVIOjVPBUhqk7P29pv3I,4195
335
336
  hestia_earth/models/ipcc2019/n2OToAirOrganicFertiliserIndirect.py,sha256=1izTtLx0iFsK5yRzbxoy_kN6oflHTfBEj-sFXBERAnU,1380
336
337
  hestia_earth/models/ipcc2019/n2OToAirOrganicSoilBurningIndirect.py,sha256=6nyMMrhpK5ZaG_Be0ivJB6MSdbYYg6RD67appp1wJiU,1301
337
- hestia_earth/models/ipcc2019/n2OToAirOrganicSoilCultivationDirect.py,sha256=tQvOTcqq642WWXs6xMExvwr-2Qb1L8HHHtOSm20vsrs,5807
338
+ hestia_earth/models/ipcc2019/n2OToAirOrganicSoilCultivationDirect.py,sha256=KCoX0qC96kp1IB2P1uss-S6RGoV_pxDtFRuAWt55mQk,5767
338
339
  hestia_earth/models/ipcc2019/n2OToAirOrganicSoilCultivationIndirect.py,sha256=lXMSAIvWBsNf6TTbYIPTu_uMSBBgk_JDO6S6r630yvg,1321
339
340
  hestia_earth/models/ipcc2019/n2OToAir_indirect_emissions_utils.py,sha256=gsxEwd_WF4ZgUIGb8H1Co6AME_eIpCWPvSCNfDJCKbo,4467
340
341
  hestia_earth/models/ipcc2019/nh3ToAirInorganicFertiliser.py,sha256=UGojWa9GJRf_JQxfvgX8ywwfoL7N-9FGDF7h679iLNM,4336
@@ -344,15 +345,15 @@ hestia_earth/models/ipcc2019/no3ToGroundwaterCropResidueDecomposition.py,sha256=
344
345
  hestia_earth/models/ipcc2019/no3ToGroundwaterExcreta.py,sha256=BV7kdeGlDbSQASBtYZuLNTQktrteaMWGJzIbG97flH0,4319
345
346
  hestia_earth/models/ipcc2019/no3ToGroundwaterInorganicFertiliser.py,sha256=zww-PDlLdz3XbrlXfW7F8nWzP3Iud1uLW-mRo8HZf2o,3250
346
347
  hestia_earth/models/ipcc2019/no3ToGroundwaterOrganicFertiliser.py,sha256=AHCYaj_al-cLFtvWHhxZLlrZfpjIyWg2rKR435qqGxM,3184
347
- hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=1Xc54OBKOnEsv6iMAsxGJvvMDOc0N4zwM_nyXBFt3ac,32407
348
+ hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=C44mPHp_85V96Sp--bhVMCRUj8J4BYZNkanQtMK-gAs,19095
348
349
  hestia_earth/models/ipcc2019/noxToAirInorganicFertiliser.py,sha256=nBBiKzGMUYtHkU49AKBxQ7OdD61cb9_Ehe7ixFWKHR4,4336
349
350
  hestia_earth/models/ipcc2019/noxToAirOrganicFertiliser.py,sha256=yONOR8ppiOXQlPPz68GQ2_3MFzvnOQTJTHpJ956ubW0,4008
350
351
  hestia_earth/models/ipcc2019/organicCarbonPerHa.py,sha256=qYR1iB95Uz841xPe727ZYUtrRhg_Unbktf1YEjZHqyU,8000
351
352
  hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1.py,sha256=IfXans2CZLagxfr8A0GRxCF2pMu9-ZV8DjuUludaeRQ,79084
352
353
  hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py,sha256=2kw9bhkR4o4ZSeC4ZFEIEe7OxZvE7Ft1f3Et94YPl3c,69231
353
354
  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
355
+ hestia_earth/models/ipcc2019/organicSoilCultivation_utils.py,sha256=dnudbsJqzXPyVWD_DlLZkxAh57naINGtoQ8jVd__M2Q,5371
356
+ hestia_earth/models/ipcc2019/pastureGrass.py,sha256=O__O4JNoXHxUetUFoT3JHKMtx2mXwHos-527fnqS7Pk,10330
356
357
  hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=nJAup4ZUla90Ink_S2WLkB84FRKI2t1wDCFJNkttpZ4,14336
357
358
  hestia_earth/models/ipcc2019/utils.py,sha256=xkOtBl85yJu8RI9nQnscIeSJGdUf84dKteM7nvr9mkU,5945
358
359
  hestia_earth/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -361,7 +362,7 @@ hestia_earth/models/ipcc2019/animal/hoursWorkedPerDay.py,sha256=BBByUzgM7OymWnuU
361
362
  hestia_earth/models/ipcc2019/animal/liveweightGain.py,sha256=TXEKI0PZFDj7zlg_pmgfwhRT0LS1x1hEswulQYD7Dkg,956
362
363
  hestia_earth/models/ipcc2019/animal/liveweightPerHead.py,sha256=86HRowJnTbwHKDKU0rGaco2-8B1wIQ4nIe_KNqzdXsk,965
363
364
  hestia_earth/models/ipcc2019/animal/milkYieldPerAnimal.py,sha256=Io-EsFBVpY80BdmS96POfZSN1CB835tu_J5AiQZm2do,2522
364
- hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=sBYLuZgfuvlewzoRK0yRKOXNd2qDalFhccGC3RSVQEY,12259
365
+ hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=NYjtjqYdw6UkMXJTrkqJ62YIKpOAychUDa0nJOjVV4o,12391
365
366
  hestia_earth/models/ipcc2019/animal/pregnancyRateTotal.py,sha256=zib2AW3WJTL4NRYN4a0rRiqSJ5PZLRtwDYia7gigQFY,968
366
367
  hestia_earth/models/ipcc2019/animal/trueProteinContent.py,sha256=fgV0u4sEtLmCk-vUHF6mM03uy1w9nVPDzmxSkLXgPBo,1010
367
368
  hestia_earth/models/ipcc2019/animal/utils.py,sha256=49wX3K5fLDLc33MQJLsGefJ9vlGRwfkNXabc8CGgPQ4,4435
@@ -472,7 +473,7 @@ hestia_earth/models/linkedImpactAssessment/utils.py,sha256=uxRu5thfTDGpCNIuv3Nak
472
473
  hestia_earth/models/mocking/__init__.py,sha256=-mJ_zrVWZSGc3awWW2YJfXAK3Nku77sAUgmmFa99Xmo,733
473
474
  hestia_earth/models/mocking/build_mock_search.py,sha256=p15ccEUmkmLp1RiGNznxMz3OFHbI8P1-29ExuohiQN8,1355
474
475
  hestia_earth/models/mocking/mock_search.py,sha256=uvklojTAbjDI7Jw43jGAUDcTHk1R3A3CWiYBJZI6rao,1493
475
- hestia_earth/models/mocking/search-results.json,sha256=adCQArTkXdnUQv9QU-Q03OtPIVwwWIGisHYfdnW6Loo,104036
476
+ hestia_earth/models/mocking/search-results.json,sha256=H4OyZjQ6Srks4m5MWcRSQeQhlrCxbxUI_diVxQGRybk,104037
476
477
  hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
477
478
  hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=FoiRk-bULfC9VbhT7L-wgjehrUkG_74XiG2WnW1Rc-U,2402
478
479
  hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=r7Wqo5v29NrKfhDd0g1QCharR2k6H5XFyAsKZ6pvYKY,2321
@@ -619,7 +620,7 @@ hestia_earth/models/utils/aggregated.py,sha256=O7yoCeBkyAgmV9Fh33aI25Dq4r4GxVXKg
619
620
  hestia_earth/models/utils/animalProduct.py,sha256=M5IunAKGY6oZv3j1Ascl34ywyeLWApqOIlBzbtlA2FE,721
620
621
  hestia_earth/models/utils/aquacultureManagement.py,sha256=dxrbC1Xf140cohxTbSw6TxLAnAASWTdNZwBBam4yQnw,171
621
622
  hestia_earth/models/utils/background_emissions.py,sha256=zxLM71M2Z5fMIfExZJQkyDKtUIDdlTMboN73-DDGvxk,7064
622
- hestia_earth/models/utils/blank_node.py,sha256=nUCnH0Tzpg5Lbf8yF1I1HgDM5DoWw9Vc_HuD_QAL20Y,57027
623
+ hestia_earth/models/utils/blank_node.py,sha256=EnF4GJ7n7jfoDDygGD7r2SoRmoZHP9yWIiQGZiTqKbw,59302
623
624
  hestia_earth/models/utils/cache_sources.py,sha256=MBkrPpjwNiC4ApDjeYVHZjWBbpvAerXRDrMHpjasAZ0,377
624
625
  hestia_earth/models/utils/completeness.py,sha256=1FtDzl1dQ-AZ4nCn1vfGqR4RK3yHItfkksVqsJzIWR0,1256
625
626
  hestia_earth/models/utils/constant.py,sha256=DmB3VVuoh7Pz2QDBJqiUG6yAML2i0fOy1BPuPHmhT1w,3442
@@ -634,7 +635,7 @@ hestia_earth/models/utils/excretaManagement.py,sha256=zeXEAHhdl8Lj1P0M5KXkaV_iks
634
635
  hestia_earth/models/utils/feedipedia.py,sha256=xkdpqWADSK5K3ZdMsJG5hn8HB7mCZy3NbaRUUKe2WRA,3948
635
636
  hestia_earth/models/utils/fertiliser.py,sha256=9Kv7czDEPDvZ5Bz6Rr_2vy2MsXrPDvBC3921cEJSks8,810
636
637
  hestia_earth/models/utils/fuel.py,sha256=XzOELV3dn506PkMKjFQ_ZKVZInd2lL2x6PKdsa6Po4M,1429
637
- hestia_earth/models/utils/impact_assessment.py,sha256=AfIZo_ykkkqWYY2AG-kLzGtd3fwzGIQXxnEKEzL_oGk,8516
638
+ hestia_earth/models/utils/impact_assessment.py,sha256=U35v8je4vrGxtXRS9K_1wFeX_pbFuYd1NBKYCxJRhsQ,8688
638
639
  hestia_earth/models/utils/indicator.py,sha256=OdPNIq_7UZJk8rXccUbDOpBZ2fxOHIcDwfJxWWJVl2A,1409
639
640
  hestia_earth/models/utils/inorganicFertiliser.py,sha256=2Uq6ATWwb_YYRzBCMdrlVWyCDDtWVApUxgxDEN3-3OA,1782
640
641
  hestia_earth/models/utils/input.py,sha256=n17YEoEdodE9I3QWLEjAH2f8YEdbzF4knYN7nGBSXgo,6674
@@ -670,13 +671,13 @@ hestia_earth/orchestrator/strategies/merge/__init__.py,sha256=rs9j1EbAAI1GvFKYZ3
670
671
  hestia_earth/orchestrator/strategies/merge/merge_append.py,sha256=5xJ8fqu2UqCDotVkSxj7yRDRdw0RM2tERsA4j_1Zlu8,915
671
672
  hestia_earth/orchestrator/strategies/merge/merge_default.py,sha256=ssKq5ZIoQr4k2HHpkyPqHJSQQj-AGqu8zUzEQIRafv8,45
672
673
  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
674
+ hestia_earth/orchestrator/strategies/merge/merge_node.py,sha256=HUN_OnudmFE7HA2tAMQHWPvKn4wjX12Y05ENH6nGFqA,3828
674
675
  hestia_earth/orchestrator/strategies/run/__init__.py,sha256=At0V8CI4vyiSY-Vh2PHMhTYfnp7vl31gq78RyCeIqJk,307
675
676
  hestia_earth/orchestrator/strategies/run/add_blank_node_if_missing.py,sha256=lAfL-NK-gh2YQnTis2lIyb1uI_fsnwFWS10qwbga43M,2756
676
677
  hestia_earth/orchestrator/strategies/run/add_key_if_missing.py,sha256=t3U-v87XpbtpsvjA_r0Ftm7MhNkGB0kcUSGFlKBIK_I,352
677
678
  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,,
679
+ hestia_earth_models-0.75.2.dist-info/licenses/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
680
+ hestia_earth_models-0.75.2.dist-info/METADATA,sha256=dbi6VQnXa90X2jWquBiNPkwNCfAHs5ku8SPlzXJ3_gA,4049
681
+ hestia_earth_models-0.75.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
682
+ hestia_earth_models-0.75.2.dist-info/top_level.txt,sha256=q0QxKEYx9uLpAD5ZtC7Ypq29smEPfOzEAn7Xv8XHGOQ,13
683
+ hestia_earth_models-0.75.2.dist-info/RECORD,,