hestia-earth-models 0.73.1__py3-none-any.whl → 0.73.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.
Files changed (49) hide show
  1. hestia_earth/models/akagiEtAl2011/utils.py +3 -1
  2. hestia_earth/models/config/Cycle.json +35 -37
  3. hestia_earth/models/config/Site.json +26 -24
  4. hestia_earth/models/environmentalFootprintV3_1/soilQualityIndexLandOccupation.py +3 -2
  5. hestia_earth/models/environmentalFootprintV3_1/soilQualityIndexLandTransformation.py +1 -1
  6. hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py +10 -6
  7. hestia_earth/models/geospatialDatabase/utils.py +20 -6
  8. hestia_earth/models/hestia/aboveGroundCropResidue.py +6 -5
  9. hestia_earth/models/hestia/cropResidueManagement.py +3 -2
  10. hestia_earth/models/hestia/default_emissions.py +1 -0
  11. hestia_earth/models/hestia/default_resourceUse.py +3 -2
  12. hestia_earth/models/hestia/excretaKgMass.py +1 -1
  13. hestia_earth/models/hestia/excretaKgN.py +1 -1
  14. hestia_earth/models/hestia/excretaKgVs.py +1 -1
  15. hestia_earth/models/hestia/landCover.py +1 -1
  16. hestia_earth/models/hestia/waterSalinity.py +13 -6
  17. hestia_earth/models/ipcc2019/aboveGroundBiomass.py +2 -4
  18. hestia_earth/models/ipcc2019/belowGroundBiomass.py +2 -4
  19. hestia_earth/models/ipcc2019/biomass_utils.py +1 -1
  20. hestia_earth/models/ipcc2019/ch4ToAirOrganicSoilCultivation.py +3 -4
  21. hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py +2 -4
  22. hestia_earth/models/ipcc2019/co2ToAirOrganicSoilCultivation.py +2 -3
  23. hestia_earth/models/ipcc2019/n2OToAirCropResidueBurningDirect.py +8 -7
  24. hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py +2 -3
  25. hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1.py +2 -3
  26. hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py +3 -4
  27. hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py +2 -3
  28. hestia_earth/models/mocking/search-results.json +1568 -1568
  29. hestia_earth/models/schmidt2007/utils.py +2 -2
  30. hestia_earth/models/utils/__init__.py +1 -1
  31. hestia_earth/models/utils/cycle.py +2 -2
  32. hestia_earth/models/utils/impact_assessment.py +14 -14
  33. hestia_earth/models/utils/lookup.py +30 -10
  34. hestia_earth/models/version.py +1 -1
  35. {hestia_earth_models-0.73.1.dist-info → hestia_earth_models-0.73.3.dist-info}/METADATA +3 -2
  36. {hestia_earth_models-0.73.1.dist-info → hestia_earth_models-0.73.3.dist-info}/RECORD +44 -49
  37. tests/models/environmentalFootprintV3_1/test_soilQualityIndexLandOccupation.py +3 -3
  38. tests/models/frischknechtEtAl2000/test_ionisingRadiationKbqU235Eq.py +85 -31
  39. tests/models/geospatialDatabase/test_utils.py +12 -1
  40. tests/models/ipcc2019/test_organicCarbonPerHa_tier_2.py +1 -1
  41. tests/models/utils/test_array_builders.py +1 -1
  42. hestia_earth/models/utils/array_builders.py +0 -590
  43. hestia_earth/models/utils/descriptive_stats.py +0 -49
  44. hestia_earth/models/utils/stats.py +0 -429
  45. tests/models/utils/test_descriptive_stats.py +0 -50
  46. tests/models/utils/test_stats.py +0 -186
  47. {hestia_earth_models-0.73.1.dist-info → hestia_earth_models-0.73.3.dist-info}/LICENSE +0 -0
  48. {hestia_earth_models-0.73.1.dist-info → hestia_earth_models-0.73.3.dist-info}/WHEEL +0 -0
  49. {hestia_earth_models-0.73.1.dist-info → hestia_earth_models-0.73.3.dist-info}/top_level.txt +0 -0
@@ -10,8 +10,8 @@ from . import MODEL
10
10
  def get_waste_values(term_id: str, cycle: dict, lookup_col: str):
11
11
  products = filter_list_term_type(cycle.get('products', []), TermTermType.WASTE)
12
12
  value = all_factor_value(
13
- model=MODEL,
14
- term_id=term_id,
13
+ logs_model=MODEL,
14
+ logs_term_id=term_id,
15
15
  node=cycle,
16
16
  lookup_name=f"{TermTermType.WASTE.value}.csv",
17
17
  lookup_col=lookup_col,
@@ -55,7 +55,7 @@ def _unit_str(unit) -> str: return unit if isinstance(unit, str) else unit.value
55
55
 
56
56
 
57
57
  def _filter_list_term_unit(values: list, unit: Union[str, List[str]]):
58
- units = unit if isinstance(unit, list) else[unit]
58
+ units = unit if isinstance(unit, list) else [unit]
59
59
  units = list(map(_unit_str, units))
60
60
  return list(filter(lambda i: i.get('term', {}).get('units') in units, values))
61
61
 
@@ -409,8 +409,8 @@ def impact_lookup_value(model: str, term_id: str, cycle: dict, blank_nodes: list
409
409
  """
410
410
  term_type = blank_nodes[0].get('term', {}).get('termType') if len(blank_nodes) > 0 else None
411
411
  return all_factor_value(
412
- model=model,
413
- term_id=term_id,
412
+ logs_model=model,
413
+ logs_term_id=term_id,
414
414
  node=cycle,
415
415
  lookup_name=f"{term_type}.csv",
416
416
  lookup_col=lookup_col,
@@ -4,7 +4,7 @@ from hestia_earth.utils.model import filter_list_term_type
4
4
  from hestia_earth.utils.tools import list_sum, safe_parse_date
5
5
 
6
6
  from hestia_earth.models.log import debugValues
7
- from .lookup import all_factor_value, _term_factor_value, _aware_factor_value, fallback_country
7
+ from .lookup import all_factor_value, _region_factor_value, _aware_factor_value, fallback_country
8
8
  from .product import find_by_product
9
9
  from .site import region_level_1_id
10
10
 
@@ -131,8 +131,8 @@ def impact_emission_lookup_value(
131
131
  The impact total value.
132
132
  """
133
133
  return all_factor_value(
134
- model=model,
135
- term_id=term_id,
134
+ logs_model=model,
135
+ logs_term_id=term_id,
136
136
  node=impact,
137
137
  lookup_name='emission.csv',
138
138
  lookup_col=lookup_col,
@@ -143,8 +143,8 @@ def impact_emission_lookup_value(
143
143
 
144
144
 
145
145
  def impact_country_value(
146
- model: str,
147
- term_id: str,
146
+ logs_model: str,
147
+ logs_term_id: str,
148
148
  impact: dict,
149
149
  lookup: str,
150
150
  group_key: str = None,
@@ -156,9 +156,9 @@ def impact_country_value(
156
156
 
157
157
  Parameters
158
158
  ----------
159
- model : str
159
+ logs_model : str
160
160
  The model to display in the logs only.
161
- term_id : str
161
+ logs_term_id : str
162
162
  The term to display in the logs only.
163
163
  impact : dict
164
164
  The `ImpactAssessment`.
@@ -182,15 +182,15 @@ def impact_country_value(
182
182
  country_id = fallback_country(country_id, [lookup]) if country_fallback else country_id
183
183
 
184
184
  return all_factor_value(
185
- model=model,
186
- term_id=term_id,
185
+ logs_model=logs_model,
186
+ logs_term_id=logs_term_id,
187
187
  node=impact,
188
188
  lookup_name=lookup,
189
189
  lookup_col=country_id,
190
190
  blank_nodes=blank_nodes,
191
191
  grouped_key=group_key,
192
192
  default_no_values=default_no_values,
193
- factor_value_func=_term_factor_value
193
+ factor_value_func=_region_factor_value
194
194
  )
195
195
 
196
196
 
@@ -223,8 +223,8 @@ def impact_aware_value(model: str, term_id: str, impact: dict, lookup: str, grou
223
223
  return None
224
224
 
225
225
  return all_factor_value(
226
- model=model,
227
- term_id=term_id,
226
+ logs_model=model,
227
+ logs_term_id=term_id,
228
228
  node=impact,
229
229
  lookup_name=lookup,
230
230
  lookup_col=aware_id,
@@ -260,8 +260,8 @@ def impact_endpoint_value(model: str, term_id: str, impact: dict, lookup_col: st
260
260
  not i.get('methodModel').get('@id').startswith(model[0:6]) # allow other non-related models to be accounted for
261
261
  )]
262
262
  return all_factor_value(
263
- model=model,
264
- term_id=term_id,
263
+ logs_model=model,
264
+ logs_term_id=term_id,
265
265
  node=impact,
266
266
  lookup_name='characterisedIndicator.csv',
267
267
  lookup_col=lookup_col,
@@ -8,7 +8,7 @@ from hestia_earth.utils.lookup import (
8
8
  _get_single_table_value,
9
9
  lookup_term_ids
10
10
  )
11
- from hestia_earth.utils.tools import list_sum, safe_parse_float
11
+ from hestia_earth.utils.tools import list_sum, safe_parse_float, non_empty_list
12
12
 
13
13
  from ..log import debugValues, log_as_table, debugMissingLookup
14
14
 
@@ -40,7 +40,7 @@ def _factor_value(model: str, term_id: str, lookup_name: str, lookup_col: str, g
40
40
  return get_value
41
41
 
42
42
 
43
- def _term_factor_value(model: str, term_id: str, lookup_name: str, lookup_term_id: str, group_key: str = None):
43
+ def _region_factor_value(model: str, term_id: str, lookup_name: str, lookup_term_id: str, group_key: str = None):
44
44
  def get_value(data: dict):
45
45
  node_term_id = data.get('term', {}).get('@id')
46
46
  value = _node_value(data)
@@ -58,7 +58,7 @@ def _term_factor_value(model: str, term_id: str, lookup_name: str, lookup_term_i
58
58
  node=node_term_id,
59
59
  value=value,
60
60
  coefficient=coefficient)
61
- return {'id': node_term_id, 'value': value, 'coefficient': coefficient}
61
+ return {'id': node_term_id, 'region-id': region_term_id, 'value': value, 'coefficient': coefficient}
62
62
  return get_value
63
63
 
64
64
 
@@ -89,8 +89,8 @@ def _aware_factor_value(model: str, term_id: str, lookup_name: str, aware_id: st
89
89
 
90
90
 
91
91
  def all_factor_value(
92
- model: str,
93
- term_id: str,
92
+ logs_model: str,
93
+ logs_term_id: str,
94
94
  node: dict,
95
95
  lookup_name: str,
96
96
  lookup_col: str,
@@ -99,18 +99,38 @@ def all_factor_value(
99
99
  default_no_values=0,
100
100
  factor_value_func=_factor_value
101
101
  ):
102
- values = list(map(factor_value_func(model, term_id, lookup_name, lookup_col, grouped_key), blank_nodes))
102
+ values = list(map(factor_value_func(logs_model, logs_term_id, lookup_name, lookup_col, grouped_key), blank_nodes))
103
103
 
104
104
  has_values = len(values) > 0
105
- missing_values = set([v.get('id') for v in values if v.get('value') and v.get('coefficient') is None])
105
+ missing_values = set([
106
+ '_'.join(non_empty_list([v.get('id'), v.get('region-id')]))
107
+ for v in values
108
+ if v.get('value') and v.get('coefficient') is None
109
+ ])
106
110
  all_with_factors = not missing_values
107
111
 
108
112
  for missing_value in missing_values:
109
- debugMissingLookup(lookup_name, 'termid', missing_value, lookup_col, None, model=model, term=term_id)
113
+ debug_values = missing_value.split('_')
114
+ debugMissingLookup(
115
+ lookup_name=lookup_name,
116
+ row='termid',
117
+ row_value=debug_values[1] if len(debug_values) == 2 else debug_values[0],
118
+ col=debug_values[0] if len(debug_values) == 2 else lookup_col,
119
+ value=None,
120
+ model=logs_model,
121
+ term=logs_term_id
122
+ )
110
123
 
111
- debugValues(node, model=model, term=term_id,
124
+ debugValues(node, model=logs_model, term=logs_term_id,
112
125
  all_with_factors=all_with_factors,
113
- missing_lookup_factor=';'.join(missing_values),
126
+ missing_lookup_factor=log_as_table([
127
+ {
128
+ 'id': v.split('_')[0]
129
+ } | ({
130
+ 'region-id': v.split('_')[1]
131
+ } if len(v.split('_')) == 2 else {})
132
+ for v in missing_values
133
+ ]),
114
134
  has_values=has_values,
115
135
  values_used=log_as_table(values))
116
136
 
@@ -1 +1 @@
1
- VERSION = '0.73.1'
1
+ VERSION = '0.73.3'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hestia-earth-models
3
- Version: 0.73.1
3
+ Version: 0.73.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
@@ -12,11 +12,12 @@ Classifier: Programming Language :: Python :: 3.6
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Requires-Dist: hestia-earth-schema==33.*
15
- Requires-Dist: hestia-earth-utils>=0.14.1
15
+ Requires-Dist: hestia-earth-utils>=0.14.7
16
16
  Requires-Dist: python-dateutil>=2.8.1
17
17
  Requires-Dist: CurrencyConverter==0.16.8
18
18
  Requires-Dist: haversine>=2.7.0
19
19
  Requires-Dist: pydash
20
+ Requires-Dist: area
20
21
  Provides-Extra: spatial
21
22
  Requires-Dist: hestia-earth-earth-engine>=0.5.0; extra == "spatial"
22
23
 
@@ -5,7 +5,7 @@ hestia_earth/models/cache_sites.py,sha256=XpXnkYt823PQzrswgP__L4CT8xZG_n7a41CIHK
5
5
  hestia_earth/models/log.py,sha256=eRuH86v7Thuw-QXdKqaqVmA_MkwnOCo0UBEwtuDq4Oc,3554
6
6
  hestia_earth/models/preload_requests.py,sha256=vK_G1UzhNMhYy7ymnCtHUz_vv3cfApCSKqv29VREEBQ,1943
7
7
  hestia_earth/models/requirements.py,sha256=eU4yT443fx7BnaokhrLB_PCizJI7Y6m4auyo8vQauNg,17363
8
- hestia_earth/models/version.py,sha256=hAIsADvvT3pUfuetJKnq_AYIZolRAZkIV3u6dNVZric,19
8
+ hestia_earth/models/version.py,sha256=VT_6Vw43qRySd6SoTRY3kADgLF1HQDvEO1BvE5n3K1o,19
9
9
  hestia_earth/models/agribalyse2016/__init__.py,sha256=WvK0qCQbnYtg9oZxrACd1wGormZyXibPtpCnIQeDqbw,415
10
10
  hestia_earth/models/agribalyse2016/fuelElectricity.py,sha256=1ngl8pdxeNhlVV8keAeWRwGorr_1uFXM9EoPUWx-uSc,4382
11
11
  hestia_earth/models/agribalyse2016/machineryInfrastructureDepreciatedAmountPerCycle.py,sha256=queToXuzq0tQ9_XuUJ2pJgSywXmbt9uX3ZoIKgqkROM,2660
@@ -15,7 +15,7 @@ hestia_earth/models/akagiEtAl2011/nh3ToAirCropResidueBurning.py,sha256=MUVyLifn5
15
15
  hestia_earth/models/akagiEtAl2011/noxToAirCropResidueBurning.py,sha256=aFot00A68gFM6Sp1cGkzruB4nIyc-BNGX7T75sb_CCw,791
16
16
  hestia_earth/models/akagiEtAl2011/pm25ToAirCropResidueBurning.py,sha256=88LaJnezcbfOO_GCKz41zt39yhCFOFFmC9TTo1TAOMU,792
17
17
  hestia_earth/models/akagiEtAl2011/so2ToAirCropResidueBurning.py,sha256=hoymFUx3TxzwhlOV65RzOx43IK-CGM8jYfWLH6ibHNo,791
18
- hestia_earth/models/akagiEtAl2011/utils.py,sha256=CwRhUP2LN8NULyg3nxdnXGR6dv1uNOZX9JXsaULu52Q,1772
18
+ hestia_earth/models/akagiEtAl2011/utils.py,sha256=j5X5s7V0c89cipaKco5yVXuyE_nViB7v0UGA8nwTo_Q,1932
19
19
  hestia_earth/models/aware/__init__.py,sha256=F8XRo9nRiX-fHAqyeMARYtFmJWRPs-hnIaCiHcZhyMw,406
20
20
  hestia_earth/models/aware/scarcityWeightedWaterUse.py,sha256=HO3ic8xFXs_ez13N7kG1JuYit2S8YTi5WgeP9cOyOqc,3936
21
21
  hestia_earth/models/chaudharyBrooks2018/__init__.py,sha256=LKxQu7-6gyWPpdXaYHDTawzsBNm7CpDrk98I5_TTLhA,420
@@ -35,9 +35,9 @@ hestia_earth/models/cml2001Baseline/terrestrialAcidificationPotentialIncludingFa
35
35
  hestia_earth/models/cml2001NonBaseline/__init__.py,sha256=vI8wp8Og_e8DiJqYYvp33YoI3t4ffAC31LWlnV20JTg,419
36
36
  hestia_earth/models/cml2001NonBaseline/eutrophicationPotentialIncludingFateAverageEurope.py,sha256=lcgyRHY08KCBFPERJNqV4DYGEJCvyHBDnJXD0kEkVqM,1097
37
37
  hestia_earth/models/cml2001NonBaseline/terrestrialAcidificationPotentialExcludingFate.py,sha256=xcrxfs9UoV_EWvV-XzMt35oPWCUsTzqg2SGA3j2MFIw,1091
38
- hestia_earth/models/config/Cycle.json,sha256=nLeqkePzLbs6w3v8rXe6Ym_NX5EWCl15V00RxXXsXCQ,59138
38
+ hestia_earth/models/config/Cycle.json,sha256=3fsz2dNEKA4noEjqrp25Or3_scDxqFS7c_7v911Gpno,59078
39
39
  hestia_earth/models/config/ImpactAssessment.json,sha256=ubAHJRHOFdX-fIYkOEBuD0CYvNZtFYSr8GSgKliVL8g,60968
40
- hestia_earth/models/config/Site.json,sha256=dp5tQ37lU_xakeWg4UAgqQR3YoCS7BkasYo1TtNHabo,14074
40
+ hestia_earth/models/config/Site.json,sha256=TnWIoaTspA0SUERWGpwuVf5o6x34N2riGftqzcvpCho,14086
41
41
  hestia_earth/models/config/__init__.py,sha256=l1WqL7ezlank86ABP4zUia_hIvM9ba-sOE3z6wNrea8,2333
42
42
  hestia_earth/models/config/run-calculations.json,sha256=e3nJ4M6CP1iFzfv8ou_ZUFbFxYkDxJgwuNDXTm4PBDc,615
43
43
  hestia_earth/models/config/trigger-calculations.json,sha256=3dmn2bRuj6QEtSTOLdIy31ho7thgUXyDsnqZzPV9rAQ,623
@@ -126,8 +126,8 @@ hestia_earth/models/environmentalFootprintV3_1/freshwaterEcotoxicityPotentialCtu
126
126
  hestia_earth/models/environmentalFootprintV3_1/marineEutrophicationPotential.py,sha256=UM9pezQeETfk9i0FtOBRdreaaJ9OqL6G4gYljrKOz-0,1063
127
127
  hestia_earth/models/environmentalFootprintV3_1/photochemicalOzoneCreationPotentialHumanHealthNmvocEq.py,sha256=47raZTA3aUbBpgClTzKnzUI8Vfy9qUwYNdFDUKM3hJ0,1101
128
128
  hestia_earth/models/environmentalFootprintV3_1/scarcityWeightedWaterUse.py,sha256=JhZB4qGQBQb7fF3ambBuILL7eKLG6B_4RYvIgbINNpY,1299
129
- hestia_earth/models/environmentalFootprintV3_1/soilQualityIndexLandOccupation.py,sha256=xCQUf4bUJuAqnPgaRZv0Qcc2zzIxhFBePPuNUdjHvLo,4739
130
- hestia_earth/models/environmentalFootprintV3_1/soilQualityIndexLandTransformation.py,sha256=HEIAG3VHYnv-XaLmnzXGvShVeT9MoRHBMODNQ9vNLAo,6796
129
+ hestia_earth/models/environmentalFootprintV3_1/soilQualityIndexLandOccupation.py,sha256=JrDXWTdmeROyuCXYfr-zhWLPkSS7NsyXgHl4eZ4P8uc,4807
130
+ hestia_earth/models/environmentalFootprintV3_1/soilQualityIndexLandTransformation.py,sha256=7eQUNCD-rQRuWwP_MB2DsY0wG3NM3KlLI5lqx77xDnk,6796
131
131
  hestia_earth/models/environmentalFootprintV3_1/soilQualityIndexTotalLandUseEffects.py,sha256=6g76wBf0XcQdAadE4BCD5-qUmpGbbYV9kfKsM6cKnHM,3075
132
132
  hestia_earth/models/epa2014/__init__.py,sha256=ckGf_6X7CCzI_18OqchEkuJAXKXM1x7V53u480ckknM,408
133
133
  hestia_earth/models/epa2014/no3ToGroundwaterExcreta.py,sha256=683vgGM-m4cdFhbvlp9V1yobLHM7bQWYMwjByoozzZA,1724
@@ -145,7 +145,7 @@ hestia_earth/models/faostat2018/utils.py,sha256=bxd4dtML0z5D5LP7peZTcvt7U6GLxGdX
145
145
  hestia_earth/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
146
  hestia_earth/models/faostat2018/product/price.py,sha256=6oG8n-tGFRX2p4aC1RBeEvO7iexooFiRok39m8f4VN0,7734
147
147
  hestia_earth/models/frischknechtEtAl2000/__init__.py,sha256=Fixyy9UwoCGP5-MHyJu_ctS40SQ2imfvZo8a547029U,421
148
- hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py,sha256=W2R5rjnorfWhderyDy3iGpcIZdL3rYvRh5wh0wlvI0k,4430
148
+ hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py,sha256=4umFLvT0Pvr80E1qgtgRprG_3yO7l4VnzkWrDhXHjbs,4700
149
149
  hestia_earth/models/geospatialDatabase/__init__.py,sha256=TH-FW3aoL7r1GquRChr7rde7uQonKQRDR00udG8tDrQ,957
150
150
  hestia_earth/models/geospatialDatabase/altitude.py,sha256=B9FOuAIXLV4ip3MkTxFBm3xMex2BkELsOGybnsHkXVc,2015
151
151
  hestia_earth/models/geospatialDatabase/awareWaterBasinId.py,sha256=_4HFoZR5PQrEYZegMjj33rjUFR_kktt69D4J_moZXHo,1249
@@ -177,7 +177,7 @@ hestia_earth/models/geospatialDatabase/temperatureLongTermAnnualMean.py,sha256=y
177
177
  hestia_earth/models/geospatialDatabase/temperatureMonthly.py,sha256=E2k2kkhVDtmeFEB4_AZhhq5od57lRDMWu6AqaurgqvQ,3194
178
178
  hestia_earth/models/geospatialDatabase/totalNitrogenPerKgSoil.py,sha256=eajSzMCX201k_xrfZZSHtTzEIH29hqgJdztQgQeewig,2853
179
179
  hestia_earth/models/geospatialDatabase/totalPhosphorusPerKgSoil.py,sha256=fL8wNpx-3WdD3k9riy6AaUnpdRMFNMzzc338jRIqfw8,2102
180
- hestia_earth/models/geospatialDatabase/utils.py,sha256=IBF7_HcRM00b_TX4f0ioRppMbNfXBNfNRJxQFuPhV70,6794
180
+ hestia_earth/models/geospatialDatabase/utils.py,sha256=WlHtjmawyDi9-i_vFVgbrxqzhq2DF4n-Rl48wkO9U6k,7281
181
181
  hestia_earth/models/geospatialDatabase/waterDepth.py,sha256=Xy2UxwAJrgdOkcw59NetEHMt5vgRYE6qg4fgXb1ptlU,1643
182
182
  hestia_earth/models/globalCropWaterModel2008/__init__.py,sha256=vQxexzFCl2Uv2RiIJfcppkRi9RgzBsJ68yhVDK4GvAU,425
183
183
  hestia_earth/models/globalCropWaterModel2008/rootingDepth.py,sha256=UuFzMbDrvmll3LL6T887DZ76CHt3wrK-2hl9ymmg2FI,4089
@@ -185,27 +185,27 @@ hestia_earth/models/haversineFormula/__init__.py,sha256=o155nR-XI67iCSBVNYIu4sPR
185
185
  hestia_earth/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
186
  hestia_earth/models/haversineFormula/transport/distance.py,sha256=l00mmyRgWsHWFtk4OTFrhqyOmc-73C4Wkfn5WKM99TA,3990
187
187
  hestia_earth/models/hestia/__init__.py,sha256=o5vAmPzSaK9XPgL8GCne3-lugfCOgZhHELYolNgqyyY,407
188
- hestia_earth/models/hestia/aboveGroundCropResidue.py,sha256=7OOO2_0nVoEwqslZ-daATfFTcm_GhAZR1NWBV_ULcYw,5903
188
+ hestia_earth/models/hestia/aboveGroundCropResidue.py,sha256=S3_ADmOyIBIVMGLgKXzSbsDhx7eS6r0LT5LxtND6CAw,6045
189
189
  hestia_earth/models/hestia/aboveGroundCropResidueTotal.py,sha256=NcaHzSLTmTP0yTO_2mqqouNzkCVYRkDm31LZqOCiFD4,2715
190
190
  hestia_earth/models/hestia/brackishWater.py,sha256=V9WhV1Mwix1dqdEepMiz9ZNYufx1mKX4C5sdQ96MH9s,1292
191
191
  hestia_earth/models/hestia/cationExchangeCapacityPerKgSoil.py,sha256=GtF-X2ogdXLX0dKed8d2L3baI5MfpN6UXZbZm2aG3Es,3660
192
192
  hestia_earth/models/hestia/coldCarcassWeightPerHead.py,sha256=IkOyrLYqSNidrTfuuZcAGXaT5XEDBFmRWPNxAEAORNU,2962
193
193
  hestia_earth/models/hestia/coldDressedCarcassWeightPerHead.py,sha256=NE1aw4-rmKsslwsyQkRl2TT9Zng-8NNsYXsajHHmU30,3076
194
194
  hestia_earth/models/hestia/concentrateFeed.py,sha256=HnuG3zAECtFVdPRbTATGz5ImO2Ve1NruqD8brbrO2c4,6647
195
- hestia_earth/models/hestia/cropResidueManagement.py,sha256=5t32oILM-lbOsPiP6tDiITpuLZ0eISlB6Lp0goDH8eE,2223
195
+ hestia_earth/models/hestia/cropResidueManagement.py,sha256=VlubB0q5MtvBM2dQSWdrENBMOYpvFbGu36TEwxoDl7A,2301
196
196
  hestia_earth/models/hestia/croppingIntensity.py,sha256=xev3GOE06nBJ8ZY3XtbnE0eR2YR_kqAFPnrTuKFtLrQ,1777
197
- hestia_earth/models/hestia/default_emissions.py,sha256=GiO9zQ_shIcdLsZAhW3uKX9vouKuhS2xxq65oG2VzkA,3408
198
- hestia_earth/models/hestia/default_resourceUse.py,sha256=M5_mC3_t_rzvfNoyKJjZ1tSrV1V9Ci_40LIv0iawVB4,3693
197
+ hestia_earth/models/hestia/default_emissions.py,sha256=BJkdwoKMWSBdWD0XE55Oc1qbvuZzu7ulBczMgTolOCI,3457
198
+ hestia_earth/models/hestia/default_resourceUse.py,sha256=BG7DouJDIr9JP_LPRSFwv9rb-dDsnJxn2xWFGg8fAHA,3724
199
199
  hestia_earth/models/hestia/energyContentLowerHeatingValue.py,sha256=2gR7Iu5nUUCGSXjFrkTnss6XBGtQz-yKwexCQoy8TJU,2214
200
- hestia_earth/models/hestia/excretaKgMass.py,sha256=Ct9nwTUXSv7FmJwDNCk45vkaW_2flu6A53ZJN6Wo4kI,3996
201
- hestia_earth/models/hestia/excretaKgN.py,sha256=-GfHPx6AECNPW2i_ioCuf-DhW7Xau201xqe-qWcK474,2857
202
- hestia_earth/models/hestia/excretaKgVs.py,sha256=fzBV7hgznevLTcvHyHKQk9upkCgmJ0xH1NuMETeSF8A,2860
200
+ hestia_earth/models/hestia/excretaKgMass.py,sha256=pBhD3I2NPjJ-Dbnp_P508J7OCLI_fxOAyTi_wKtrkcg,4017
201
+ hestia_earth/models/hestia/excretaKgN.py,sha256=J2TuRGzA8KHDgsRnZflF8LMcd8993YPguY-cdbQOJ8Y,2878
202
+ hestia_earth/models/hestia/excretaKgVs.py,sha256=fhelFqI3xr-GW0ifzYB5oYklXv5tXzedTumFIUBe59Q,2881
203
203
  hestia_earth/models/hestia/flowingWater.py,sha256=Iy5PCWun7GMrr0zszd0zpp9lKADpXesjC3doqLY4n28,1603
204
204
  hestia_earth/models/hestia/freshWater.py,sha256=Q-dmFJLZfyYEyFyYkJUOjgmQR3G5YXCXB6X09Bu14hM,1269
205
205
  hestia_earth/models/hestia/histosol.py,sha256=IexiWTSlSJYGjrdpYmRooW6v8LjhYATPQ8smMz1UZBA,1612
206
206
  hestia_earth/models/hestia/inorganicFertiliser.py,sha256=We4PBaTXyGwEQTfhX0-J8Xt03p-FB9i9j3tEK5JQ8uE,9026
207
207
  hestia_earth/models/hestia/irrigatedTypeUnspecified.py,sha256=VdYzfYxcRzWv21qxRkDn9HBid7-Bt_CgIv4iyXJH03g,1929
208
- hestia_earth/models/hestia/landCover.py,sha256=TL0fLUoj0qIHj2kvVCxkYSrIHl6BGazmwvCSmIz1q8E,32958
208
+ hestia_earth/models/hestia/landCover.py,sha256=FHJ98zDByDL3ofziHICQNKiz_OnmrdOqJC0ZJRHif7E,32953
209
209
  hestia_earth/models/hestia/landTransformation100YearAverageDuringCycle.py,sha256=hF7_DDvrs7swH6ott_ihgYx13UzEKHH6pccYCtzrN8o,1069
210
210
  hestia_earth/models/hestia/landTransformation20YearAverageDuringCycle.py,sha256=05SCH6ZjEV3mIleRusBg677zu0xgu5YK0f9FCddgNPg,1067
211
211
  hestia_earth/models/hestia/liveAnimal.py,sha256=d7HuUi40c-7TN1kecdRuqbht8PAe7x4ps0NhSuWG34Q,3868
@@ -244,7 +244,7 @@ hestia_earth/models/hestia/totalNitrogenPerKgSoil.py,sha256=hpyYqMwO9TvZjrpQuSBA
244
244
  hestia_earth/models/hestia/unknownPreSeasonWaterRegime.py,sha256=Ix7Eg4NVW1iKvPKIOqOdSkahn7BlJNtPM8nlrogrfcM,1460
245
245
  hestia_earth/models/hestia/utils.py,sha256=oTdk7VKuaxDTKj9Cz4t3qp3RZ5wSt3bZXpPiImgIIto,4768
246
246
  hestia_earth/models/hestia/waterDepth.py,sha256=gnvd1kwbTCt9HjgxlKzuCGkPi8Sq7nQiHFbk8xBAZV0,1251
247
- hestia_earth/models/hestia/waterSalinity.py,sha256=2tE2LWhXTFikXu4gkHnKOAPJs8rHYVDbRwQmsC3gA2g,2667
247
+ hestia_earth/models/hestia/waterSalinity.py,sha256=3-2PX7LZ5YBGvNYqkJHnNLiKoN01BYaawTFoxe7GsM0,3010
248
248
  hestia_earth/models/hestia/feedConversionRatio/__init__.py,sha256=G4T1jfN1OqERsywiWyrBiFneUZs5QXpChz7dgGfg9Ko,2512
249
249
  hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioCarbon.py,sha256=21_PXoKXJCxPOPOspKqqq-E7dh-2tVQnR4cnGZ9JGj8,1992
250
250
  hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioDryMatter.py,sha256=zf-v-cAPLpSe7sr1auzUUXkjXwpXRTVvsCrzbZrwBI8,2388
@@ -283,27 +283,27 @@ hestia_earth/models/ipcc2013ExcludingFeedbacks/gwp100.py,sha256=2fFEHTXxel_XPiMX
283
283
  hestia_earth/models/ipcc2013IncludingFeedbacks/__init__.py,sha256=VJ16KIGQQHybzZiTvu3mpZy_3j0xcd06RHHCfPrCMgU,427
284
284
  hestia_earth/models/ipcc2013IncludingFeedbacks/gwp100.py,sha256=HR2vnOc64mg_fxe9m5NmqxBZ8-aFuKb44gmItyuRL1s,1041
285
285
  hestia_earth/models/ipcc2019/__init__.py,sha256=LdRpu8KbEc-MroIwXfKDjfj-xbgmfUYgctjKVvtpRfQ,409
286
- hestia_earth/models/ipcc2019/aboveGroundBiomass.py,sha256=odf2zQni0zgFJnFXkp9USVi4A70Me_IMUfPPpnFD25w,20441
286
+ hestia_earth/models/ipcc2019/aboveGroundBiomass.py,sha256=T50NcJoyGrHYUSzJBXJKAOVUWHvFwUeUCZxuDZKqoO0,20416
287
287
  hestia_earth/models/ipcc2019/aboveGroundCropResidueTotal.py,sha256=lT2QVV5c2LvQqZRfPEvFT_bMTayMXgIsFLnx8I6iYzw,3089
288
- hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=z4Z0gDCFV9p50hMpLf7WrA8aw4kA13xAFPUxvLBVZjs,19446
288
+ hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=WN3R5kUIc5Ij4HxMFcTGKeNRoPChRY6ws0x3nQNeEMw,19421
289
289
  hestia_earth/models/ipcc2019/belowGroundCropResidue.py,sha256=qbfsLBPaMIt4oQzYAzbsZdkJozTbwuztNr48TLYC5-Y,3507
290
- hestia_earth/models/ipcc2019/biomass_utils.py,sha256=bPvge2EOVACkxJlxMoFhlRMRQHdUEiBqaFX_aEmyyC0,15812
290
+ hestia_earth/models/ipcc2019/biomass_utils.py,sha256=NkTPGMl-0tqvhUZKZ1rxW0XTBnZOvgFJki_IPzEEyu0,15796
291
291
  hestia_earth/models/ipcc2019/carbonContent.py,sha256=XhXDu6DRQxANBsRsCEgw4f0UJDOgWsvhVyEwK1-4YT0,7263
292
292
  hestia_earth/models/ipcc2019/ch4ToAirAquacultureSystems.py,sha256=JeyF4tUPn3KIDbXwgM_MFp18hnTZjLBBqMFMH_ciZ1Q,3529
293
293
  hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=b9FIMIGMGcpOhYHhD6yFsiatHsPe_KoF5yB3Rm6AKwA,12525
294
294
  hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=4GI_d4sTlskQiSK7xR2f1EaFhBt5Mu7sx0Xq9eUhiJk,6608
295
295
  hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py,sha256=26WZtckmb7b3sbUN7hpshEdaSdvJpL3-Oer60III_KU,10225
296
- hestia_earth/models/ipcc2019/ch4ToAirOrganicSoilCultivation.py,sha256=Asv-IafB12smWg4MALIbGlEHxHPdoE1qpwPHRkah4WU,9568
296
+ hestia_earth/models/ipcc2019/ch4ToAirOrganicSoilCultivation.py,sha256=oXK35mLD6rkHG0Zv5F0Atyn0OxQgwuUs6Pkr7E7_qcg,9544
297
297
  hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py,sha256=YRNjJgi_aBKwi-nDd0b20w3ebQ33vNgdf4zCLyTFcBw,6516
298
298
  hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py,sha256=5HdFdHkvMdwmA4ppSqbrAoASQaSX-Znq7WZqAaekqjk,6564
299
- hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py,sha256=pJCdb8hysUbG9t8lOB4Nd2xGdlac_6Tg74k2CMU078o,58533
299
+ hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py,sha256=xatfT3BQU4mHW8aIk4uJwWtsOyAIH2VtlKS46xSPWCU,58508
300
300
  hestia_earth/models/ipcc2019/co2ToAirLimeHydrolysis.py,sha256=X3-M4Mn3fdGsUR7ZGjBXXWrPFBGD1ipV8_4O94lB7Z8,2487
301
- hestia_earth/models/ipcc2019/co2ToAirOrganicSoilCultivation.py,sha256=e-hUmPMv_UxUM5otGkwToa8GheHzNbmYOlG9A8Lbw7M,7633
301
+ hestia_earth/models/ipcc2019/co2ToAirOrganicSoilCultivation.py,sha256=PvWxWlIQiDy-PvaZH9GqKD8GYiE6Vrkypkr-zWKY2bY,7609
302
302
  hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py,sha256=4aRBzNpDNSw20IKNzz7zOq28sorrJUB5gxmHemgOZT0,6576
303
303
  hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py,sha256=P6OxdUbvONaTVGchvogEnGeNxox-X1FaZ08yOdqqm6k,3879
304
304
  hestia_earth/models/ipcc2019/croppingDuration.py,sha256=X2fuBCr-mspLwJUGOlVis9lnyzdZ92vYqgDA6dgL5eo,3088
305
305
  hestia_earth/models/ipcc2019/ligninContent.py,sha256=nAhwrl0b3pbGQnAycEESAzakdpXajONTnbhNwgPR7nw,7293
306
- hestia_earth/models/ipcc2019/n2OToAirCropResidueBurningDirect.py,sha256=K-3-pjH46Z3eEcFnOchBucuOYB2jcAA6C4q0C8i-ezo,1845
306
+ hestia_earth/models/ipcc2019/n2OToAirCropResidueBurningDirect.py,sha256=F4FuhlCpsX-V5g_wwBZ70e3Z_3f2XXViLlXLQP4WB6c,1947
307
307
  hestia_earth/models/ipcc2019/n2OToAirCropResidueDecompositionDirect.py,sha256=Fand7NbT27unwgFTxi_9NxT024s63vQ7U6-tk9yp3d8,3990
308
308
  hestia_earth/models/ipcc2019/n2OToAirCropResidueDecompositionIndirect.py,sha256=_Oj6Jw8F4rce7FmhWkzeqyB7W3ZQWpOiA10p6xrfSwc,3777
309
309
  hestia_earth/models/ipcc2019/n2OToAirExcretaDirect.py,sha256=RW_aFY409kplCYWo3oHHVk9FD3DkoEnGkprU9SaTdcw,2196
@@ -320,13 +320,13 @@ hestia_earth/models/ipcc2019/no3ToGroundwaterCropResidueDecomposition.py,sha256=
320
320
  hestia_earth/models/ipcc2019/no3ToGroundwaterExcreta.py,sha256=kf8KzTALAQ_pRVNEfpAG-aM94UgP6Q9T47UrXfOp_go,4517
321
321
  hestia_earth/models/ipcc2019/no3ToGroundwaterInorganicFertiliser.py,sha256=eyPfyIi8EqigOTsEA0BSyoUePyy_AjMlQNJ6Z8yyJ_Q,3413
322
322
  hestia_earth/models/ipcc2019/no3ToGroundwaterOrganicFertiliser.py,sha256=px2SN-uaus2cftXzlsYCUAxLuon6BnDXmaFI9xhQrgU,3347
323
- hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=VGaCafUGSv_5dpk_qGLUpi5E-ys-1XLxJhUgMAhQIgQ,34660
323
+ hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=-IwHMQvCEDCyDamNegyxFvLk6B72b5BK6XaEQCAokuQ,34636
324
324
  hestia_earth/models/ipcc2019/noxToAirInorganicFertiliser.py,sha256=fmmFgjtvOD2TrrLY03jYly_KvDnCsAXqhL_tmZQQt-A,4480
325
325
  hestia_earth/models/ipcc2019/noxToAirOrganicFertiliser.py,sha256=9dx_MRTwJGxJRq6mj2EJQMdQ2w6j7lw0fQk0If_cIGc,4152
326
326
  hestia_earth/models/ipcc2019/organicCarbonPerHa.py,sha256=D8Lph5clGjXb5F7sk-jlnqE30C2lokhqndpA0hUMwTk,7791
327
- hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1.py,sha256=7At4xCtNWpyzOg6GFIL_nMCpLi82Y6RleCZgXbIMi_k,79161
328
- hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py,sha256=5_AltohTyRMBT8dFdULOdTS79Ydpbb2CaYZGlYQEFQY,69244
329
- hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=s_F3fyHhPuqragrHxluqdK0GCGnEor17jGlGKue0UsA,9867
327
+ hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1.py,sha256=kuLVIW5rJ7UuPepTplxC5HDX9u9ko-DPD9M9ODCtXM4,79137
328
+ hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py,sha256=vvrwSI9oZIVlLLGMyPoSKW3lOgc2VmF8G-HJJHbgYRc,69220
329
+ hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=DumXAbH8P97tDyP1nAbtgVrDEceFy0b_xRNZG2h0kbQ,9843
330
330
  hestia_earth/models/ipcc2019/organicSoilCultivation_utils.py,sha256=mJCKYZxqk5vFknckjIjGw478BjZbvKC_xQ-zYpvJ8xM,5628
331
331
  hestia_earth/models/ipcc2019/pastureGrass.py,sha256=_EwlAooSfrkcSy4rl_rk4PpeX1pcIiQcb7HE2lQkyn8,9847
332
332
  hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=so5AFrr_0eKXkUoyBpYhHgSXhTQ5z2XADahm2At4RR0,14285
@@ -448,7 +448,7 @@ hestia_earth/models/linkedImpactAssessment/utils.py,sha256=7M-E7u35fIF0uMoA1hwcr
448
448
  hestia_earth/models/mocking/__init__.py,sha256=9VX50c-grz-snfd-7MBS0KfF7AadtbKuj7kK6PqtsgE,687
449
449
  hestia_earth/models/mocking/build_mock_search.py,sha256=p15ccEUmkmLp1RiGNznxMz3OFHbI8P1-29ExuohiQN8,1355
450
450
  hestia_earth/models/mocking/mock_search.py,sha256=ccFe_WrI73JElFmxp4hPNLCX7eeU--lBC1JFR901KJY,1069
451
- hestia_earth/models/mocking/search-results.json,sha256=wK9Azsu0qZHpjEONUgnLbUQrA0rwyP6uj5x0Sikg1Qg,162618
451
+ hestia_earth/models/mocking/search-results.json,sha256=2nPCc9NKEcWMFzaR_L32EV4IVfOdyuMjuf2Hjp3Xepk,162621
452
452
  hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
453
453
  hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=oXillpppAas1q9GKmODxe1YXyno3EzV-j12xhzkqtTc,2404
454
454
  hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=_pQMPSvI--Xm00H6vXDA4ct_pQXKRGrLE2f-2tQE6y4,2323
@@ -545,7 +545,7 @@ hestia_earth/models/schmidt2007/ch4ToAirWasteTreatment.py,sha256=YADAFxJl0UB_UCx
545
545
  hestia_earth/models/schmidt2007/h2SToAirWasteTreatment.py,sha256=Ma20xG4Crk7bp12FvpDQkyVwXyikFz9Bnn0pFoWSu64,1351
546
546
  hestia_earth/models/schmidt2007/n2OToAirWasteTreatmentDirect.py,sha256=a0uv1788OxF6Cw01y7SWywS9WevI6aimhPR3RETuXjI,1357
547
547
  hestia_earth/models/schmidt2007/nh3ToAirWasteTreatment.py,sha256=UOOcEOZsW9-UOlS8pcgBkSl1V1kFbURn1hNx20Ubtq0,1351
548
- hestia_earth/models/schmidt2007/utils.py,sha256=tbTFg5TXAyS12JCa-OXQg37M1YymHxKW8Gok_SslqAM,980
548
+ hestia_earth/models/schmidt2007/utils.py,sha256=ytV6wGAuIMqu_Z_Ck8f0Zia_XETfno8fyr3IdvdP2ho,990
549
549
  hestia_earth/models/site/__init__.py,sha256=aVuLLhq0OQVm-_MZoq4JAKMidqexUWJBg_7mmojmDzc,405
550
550
  hestia_earth/models/site/defaultMethodClassification.py,sha256=1EIWC99Fegu7B8GFlpysvWhuXaLDmABom3wDelIYUjc,1068
551
551
  hestia_earth/models/site/defaultMethodClassificationDescription.py,sha256=4YXf8grO9Zf5N7bPomKAqXKPOa7JhmLCXm6sO53I4is,1213
@@ -590,11 +590,10 @@ hestia_earth/models/transformation/product/__init__.py,sha256=47DEQpj8HBSa-_TImW
590
590
  hestia_earth/models/transformation/product/excreta.py,sha256=tggXIoUujzu8O949_3KFog219k_bQ0IcytpCsJ8oMcc,5384
591
591
  hestia_earth/models/usetoxV2/__init__.py,sha256=pK37V3H-KvYcvRKw4Mv8CWrB2N0LFLzmv0jKLdhGGqs,409
592
592
  hestia_earth/models/usetoxV2/freshwaterEcotoxicityPotentialCtue.py,sha256=pPX8u-Aq6Pg5Y9xw0CS0S2WkAHQpOMl0lL2tLQwwOuU,918
593
- hestia_earth/models/utils/__init__.py,sha256=hXSBcHSMYWjg_Fe_H5IVsxu_OmVCTummZ205t_GE6pY,6847
593
+ hestia_earth/models/utils/__init__.py,sha256=8YXFDBdB7VJK9F4BTMeq_WoNAGySEGgoVbvW5EoZahA,6848
594
594
  hestia_earth/models/utils/aggregated.py,sha256=G7FNJfHqJ_eoXB66kGdjLyZGDOI_gsF56o7VnyW3bqA,4801
595
595
  hestia_earth/models/utils/animalProduct.py,sha256=M5IunAKGY6oZv3j1Ascl34ywyeLWApqOIlBzbtlA2FE,721
596
596
  hestia_earth/models/utils/aquacultureManagement.py,sha256=dxrbC1Xf140cohxTbSw6TxLAnAASWTdNZwBBam4yQnw,171
597
- hestia_earth/models/utils/array_builders.py,sha256=ko1pDZKaUudZqxOZ99vJamKAdoR6ND4ZmxVrYH6YjPc,19498
598
597
  hestia_earth/models/utils/background_emissions.py,sha256=54zuH4yFNc_cle3uYGtK_EjhkG0XGaG5L6eGKiTyOG4,3100
599
598
  hestia_earth/models/utils/blank_node.py,sha256=o1MzCz6FXuJ4Iit55EeGrHbrGM9VUfdAF1RNqTBU89Y,56070
600
599
  hestia_earth/models/utils/cache_sources.py,sha256=MBkrPpjwNiC4ApDjeYVHZjWBbpvAerXRDrMHpjasAZ0,377
@@ -604,21 +603,20 @@ hestia_earth/models/utils/crop.py,sha256=GbYwrz3Zd4JU-cwUBijc8GeAK0XgurV3ubwcFIg
604
603
  hestia_earth/models/utils/cropResidue.py,sha256=6rwC2Fw4ZwuQwvb38ZYUfL1UIZ7eEIy1zeNFv5OxYSQ,1220
605
604
  hestia_earth/models/utils/cropResidueManagement.py,sha256=nIDFjf39rDD10UHSVudfDyu-EiL261g8jyrgS-2aDKw,347
606
605
  hestia_earth/models/utils/currency.py,sha256=f_ArJANb--pZq4LL49SXQ1AMX_oKroqwBXKRRQqZwsM,578
607
- hestia_earth/models/utils/cycle.py,sha256=FJWDPQ0utjtSTq-0SnewpqP_ateixs2XXCqN85l07Qw,16210
608
- hestia_earth/models/utils/descriptive_stats.py,sha256=EMVwFvg2OnZgKRAfireAoWY2EbrSvqR0V0bK9B53p28,1583
606
+ hestia_earth/models/utils/cycle.py,sha256=J8ATBSDkhkEPRMRC0ufO8eC_JeGCpkpdvSz2xSTAg-8,16220
609
607
  hestia_earth/models/utils/ecoClimateZone.py,sha256=kJmXtRiq8-vWF7S1rNIA6WpWkPtt8JoNfWgG9azM_ts,4269
610
608
  hestia_earth/models/utils/emission.py,sha256=vzQQ4eKiC8KlmwFqT00lSV1V2dmTGMSzddOYNgFyka8,3636
611
609
  hestia_earth/models/utils/excretaManagement.py,sha256=PNZoaf6nvdt1t7B8Apa638rU8T4hI5VW2fy1fAoC64k,2265
612
610
  hestia_earth/models/utils/feedipedia.py,sha256=fVyEx2C5CSu0pv--tG6dOfQQ7WzThPoVuzM_FW9jP18,4009
613
611
  hestia_earth/models/utils/fertiliser.py,sha256=9Kv7czDEPDvZ5Bz6Rr_2vy2MsXrPDvBC3921cEJSks8,810
614
612
  hestia_earth/models/utils/fuel.py,sha256=XzOELV3dn506PkMKjFQ_ZKVZInd2lL2x6PKdsa6Po4M,1429
615
- hestia_earth/models/utils/impact_assessment.py,sha256=MW38yKehkrF7YWYCbDtG-xMjVhhAffxkcOiLYOdrmFI,8377
613
+ hestia_earth/models/utils/impact_assessment.py,sha256=tGTlo2grQ9argk2cT8zWRToBKQWe3LB8jWEfU40ZHWs,8451
616
614
  hestia_earth/models/utils/indicator.py,sha256=qdXJP9PDQbEzcGYERp3d3exkDGFmgj1-2987Ls6Hums,772
617
615
  hestia_earth/models/utils/inorganicFertiliser.py,sha256=2Uq6ATWwb_YYRzBCMdrlVWyCDDtWVApUxgxDEN3-3OA,1782
618
616
  hestia_earth/models/utils/input.py,sha256=61aaJV6QApJQIQT5TMsBww46cBYpJdf__krnwV95KsY,6160
619
617
  hestia_earth/models/utils/landCover.py,sha256=8-nfynzCx9gf9YfhpuoH6Cn4kQwWFpYA5RmoGW-0ETE,300
620
618
  hestia_earth/models/utils/liveAnimal.py,sha256=-ufUs00ALXRKGbrRJi7a7eTWVvkEj_pxLDWYbMJmx2g,1770
621
- hestia_earth/models/utils/lookup.py,sha256=70dw7QcNAPqL8t0nDQc2aGEcrFXhZKF24Os36AvVDtA,6499
619
+ hestia_earth/models/utils/lookup.py,sha256=uDye1fnvOdmR9ch5rVNI61qHRKAxzBLk3aPK93BxnfE,7196
622
620
  hestia_earth/models/utils/management.py,sha256=urvoHvTw5wrO12POjGQ50Or25X1Y4Gx26l4fDoVt-Ck,376
623
621
  hestia_earth/models/utils/measurement.py,sha256=1Da0CzWu_RDzVEqcBIl_EGsRq7PmafICyBva3-QtjVQ,11744
624
622
  hestia_earth/models/utils/method.py,sha256=ZYN2_Fyeiwr9pmvD84ZPg7ZHBlvaIY2A6XL4F_KByS0,740
@@ -630,7 +628,6 @@ hestia_earth/models/utils/productivity.py,sha256=947w8LzR7HqAQlM7AGibHbqton8RmeX
630
628
  hestia_earth/models/utils/property.py,sha256=glfINBxB59d6dRRfN09C9U3CxfFyM_dTEWdlPi6_l0c,5422
631
629
  hestia_earth/models/utils/site.py,sha256=5S-53PHQnstr4LVveRuNhk4kpvGJtR8oc-t3OsxRyms,4128
632
630
  hestia_earth/models/utils/source.py,sha256=D_QlW7Ul_NV1iOucMNE3szT64b1RdSdecIEm6OukYhw,2459
633
- hestia_earth/models/utils/stats.py,sha256=-0vvhSDAhp4ZYXD1l6sO2hdok8_HgUM6OjCSYGSTHqU,15291
634
631
  hestia_earth/models/utils/temperature.py,sha256=ljlG4-yCgFFb6LRZweb18cZKLrr7K2mqd4E4Hz_D1f8,476
635
632
  hestia_earth/models/utils/term.py,sha256=EJFj7Vt5Yjz1OSYQGXo9sDVrKLVvmYEJVVSg1aCi334,21473
636
633
  hestia_earth/models/utils/time_series.py,sha256=vuv033qUZ1gAw3T3wlLNG7vJmXCCsHEzciYbxw_b_NI,3223
@@ -767,7 +764,7 @@ tests/models/environmentalFootprintV3_1/test_freshwaterEcotoxicityPotentialCtue.
767
764
  tests/models/environmentalFootprintV3_1/test_marineEutrophicationPotential.py,sha256=kY_pu_7SjSZl_l41mttMn4BpKl13TTV9jQYSHFMNXhI,968
768
765
  tests/models/environmentalFootprintV3_1/test_photochemicalOzoneCreationPotentialHumanHealthNmvocEq.py,sha256=Z4KGhYmnao0J1rC_jY9P_8Lu9UKe-_RyrdO5k56EIsg,1022
769
766
  tests/models/environmentalFootprintV3_1/test_scarcityWeightedWaterUse.py,sha256=TJptYKhplwbwiDObmPMBJweDgtwvIUdwBzNwAPCpbTc,1265
770
- tests/models/environmentalFootprintV3_1/test_soilQualityIndexLandOccupation.py,sha256=-E8Q5JxIdfF11oqGwRJqcqGO0Ao_Bva164ELMR7sRsI,6197
767
+ tests/models/environmentalFootprintV3_1/test_soilQualityIndexLandOccupation.py,sha256=67YdlYnvVWFDZ3avHSz3bpCLkHAwYfU3j4ZNcwN5DK0,6162
771
768
  tests/models/environmentalFootprintV3_1/test_soilQualityIndexLandTransformation.py,sha256=xRTBMfQ1Qxs_NIoEFtshM_uzAAcFb80k1qGuFLJa2Dw,7650
772
769
  tests/models/environmentalFootprintV3_1/test_soilQualityIndexTotalLandUseEffects.py,sha256=ugM3qfvCuNQbzF5IPkEQQYF2V4IHxg3GQsXWqU9wqFE,2614
773
770
  tests/models/epa2014/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -787,7 +784,7 @@ tests/models/faostat2018/test_utils.py,sha256=G4pOEwcM5k6FRbkE_4x6_G8vQxzDexNZnl
787
784
  tests/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
788
785
  tests/models/faostat2018/product/test_price.py,sha256=zehnEQjwggit9su5jd5q3TTlyNxcswbxJCNaKaw1ZI0,3903
789
786
  tests/models/frischknechtEtAl2000/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
790
- tests/models/frischknechtEtAl2000/test_ionisingRadiationKbqU235Eq.py,sha256=rT75VNmpUKG6aIQLNgmMzKDyJegTm2_qGLaRHUYlzF8,4416
787
+ tests/models/frischknechtEtAl2000/test_ionisingRadiationKbqU235Eq.py,sha256=r3ZaTBvmzh4KUl1OZhJBAaVBR0_kijzkLj9Ru91Zj8w,5050
791
788
  tests/models/geospatialDatabase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
792
789
  tests/models/geospatialDatabase/test_awareWaterBasinId.py,sha256=f9y70Yz5C3wX7mmc1KwC50gk_PWoD1iEZPRMGMbqPtc,869
793
790
  tests/models/geospatialDatabase/test_clayContent.py,sha256=GqFAPIOkXfDpJFkI-vK6l3hK0Ap36lLCWGhXCly-DME,1797
@@ -818,7 +815,7 @@ tests/models/geospatialDatabase/test_temperatureLongTermAnnualMean.py,sha256=Wrz
818
815
  tests/models/geospatialDatabase/test_temperatureMonthly.py,sha256=eUaI1TZ-9sXFxWR2UoKBbca8dzW21zp5jGcfbooTt3M,746
819
816
  tests/models/geospatialDatabase/test_totalNitrogenPerKgSoil.py,sha256=fZuFjIJ_-bF8HqoNfzA0odmABiSgnttlGQw2Rphqu70,1632
820
817
  tests/models/geospatialDatabase/test_totalPhosphorusPerKgSoil.py,sha256=N5Vqf3YKlxHxWRe1PP3Kpbd30bhPOsB8eYr2IGS7quk,1026
821
- tests/models/geospatialDatabase/test_utils.py,sha256=MGSuJYejnXG1TGmEy-ooUxfW6alXhR36iqzJWUHyyqI,773
818
+ tests/models/geospatialDatabase/test_utils.py,sha256=IM7tBigyzMDEctSyXfR2H7GzaX15UtOCpROrbroN8sc,1182
822
819
  tests/models/geospatialDatabase/test_waterDepth.py,sha256=v1y6OcEdSOKu5wlIOYD9UctAx2k7ODP3eLf0WHZZz5w,954
823
820
  tests/models/globalCropWaterModel2008/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
824
821
  tests/models/globalCropWaterModel2008/test_rootingDepth.py,sha256=lSjN_3AHoqajnQ2JfeuzLReL9au1d0uiCG2NZbvFXkM,2688
@@ -960,7 +957,7 @@ tests/models/ipcc2019/test_noxToAirInorganicFertiliser.py,sha256=NZBSBJLM_j2PEpH
960
957
  tests/models/ipcc2019/test_noxToAirOrganicFertiliser.py,sha256=LR5pjV5vRbgSSQAw8kYRp_ij4CHInzgaDS6EggQuBiw,1104
961
958
  tests/models/ipcc2019/test_organicCarbonPerHa.py,sha256=g_uOqzj6EiyvoAZRpd4PakMYQ7Vfn0QiDGLCTVz92A8,15607
962
959
  tests/models/ipcc2019/test_organicCarbonPerHa_tier_1.py,sha256=lSGxHvfz84etnXbu6cJU0Fh06H_lI3yIlSiF3Wg9tec,20683
963
- tests/models/ipcc2019/test_organicCarbonPerHa_tier_2.py,sha256=OKkISE_gcF1yrEHzHowk65MbDRdgy-ILdzGWIy6X8JU,5502
960
+ tests/models/ipcc2019/test_organicCarbonPerHa_tier_2.py,sha256=VYNtsuFDURzqvKH1_5_6_lSQrqTxWnLdopN5ULfrzMg,5486
964
961
  tests/models/ipcc2019/test_organicCarbonPerHa_utils.py,sha256=Zd2QlN_Q3k9djuByOH62A00tryVzlvNtsd46N79TTeU,1778
965
962
  tests/models/ipcc2019/test_pastureGrass.py,sha256=6B8ZmuI1w4rA4wGduWx0l6e0BgGz8b2knTUIcT0GDOg,2725
966
963
  tests/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1209,7 +1206,7 @@ tests/models/transformation/product/test_excreta.py,sha256=Q9OQpk8qVPv3alIz2i5XQ
1209
1206
  tests/models/usetoxV2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1210
1207
  tests/models/usetoxV2/test_freshwaterEcotoxicityPotentialCtue.py,sha256=eq7Gcmfya9g0eOKKkuBhz8vq7xi_CmZ_LTSxueBwZt4,835
1211
1208
  tests/models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1212
- tests/models/utils/test_array_builders.py,sha256=4giHf3bTNd2ReAgcKinKjLpQOOcmfF0qSInngW7UdYc,8434
1209
+ tests/models/utils/test_array_builders.py,sha256=_ZxbKVReS9U2s6PhnXRqSKCsa9j-2Bxl8p_Fr7KHMBk,8418
1213
1210
  tests/models/utils/test_blank_node.py,sha256=F5pCV-5bKxqsrubjN1W-PACltBljF7z84_7lFBcDFJs,32871
1214
1211
  tests/models/utils/test_cache_sources.py,sha256=xcGMVbYoV23YC4HLBTL_4qZP1ME2cp3DFebgJMxI2TE,721
1215
1212
  tests/models/utils/test_crop.py,sha256=d508vQdtB_Q_6hEahNueXed5PaEiLeN7ScbwZIKCiDI,862
@@ -1217,7 +1214,6 @@ tests/models/utils/test_cropResidue.py,sha256=jBHXQSAoeu0e59KuoQiYd_ZSiwwlTBSe8c
1217
1214
  tests/models/utils/test_cropResidueManagement.py,sha256=RQt8lexeJzCyxZceIutgDpw7BpcqmjsUB0C0yZC2QpY,930
1218
1215
  tests/models/utils/test_currency.py,sha256=BPsojPsY9QW2aj8vgbjkPQXU8GU6wDwwtPZ3HdC4KTU,277
1219
1216
  tests/models/utils/test_dataCompleteness.py,sha256=Dx3qRUfEW6xqXPdaitJBny8bkfE6rdZvRO9EynuaPMc,1727
1220
- tests/models/utils/test_descriptive_stats.py,sha256=BpCuUBzvrqc_LjXutIGyyVPhsmbpKiZggTvLibuGjKA,1282
1221
1217
  tests/models/utils/test_ecoClimateZone.py,sha256=Pzy1wuCqkz4Ftms-6eCxdYg1sdOVu8bobTNVd-TUm3U,4280
1222
1218
  tests/models/utils/test_emission.py,sha256=N7Vk_CMsU5wy73nh_VoHtXDsp02R1oGalFwppYD8Bzo,1941
1223
1219
  tests/models/utils/test_feedipedia.py,sha256=S7c1W4bJ5xWXPh42pPbl3R7lDX_iEeaEtFaPXgB7hgE,906
@@ -1231,7 +1227,6 @@ tests/models/utils/test_product.py,sha256=heEJiDMGP4h7iHEz0ukQ_7-5VxLLOJdSrQ9PFq
1231
1227
  tests/models/utils/test_property.py,sha256=n69G6f2LimZopjh3l-0n4cjrKusy4GWH4XsOwOmfXKc,624
1232
1228
  tests/models/utils/test_site.py,sha256=6jy4iCKAlxo_r1T0sXlkVTSIGT9C1r6qk9rfLCMmHo8,3115
1233
1229
  tests/models/utils/test_source.py,sha256=P40VGf1Yr-cMUPQ4k3OT4AdWPsX2R5xTmhnRzGRQvo4,2018
1234
- tests/models/utils/test_stats.py,sha256=S8MiRh_-VJ7bqpeVGFR4DxLhm_4WYq-1vK7Z_ryKCqI,7119
1235
1230
  tests/models/utils/test_term.py,sha256=M5Sa26v2gzQYbZ4H_fo7DspnaCx__-WtL-MULGapCWk,3509
1236
1231
  tests/models/utils/test_time_series.py,sha256=LMhRPf8rp3nAriKAC-2K3FDkrMWntRTUUCERw7Lt68g,2686
1237
1232
  tests/models/webbEtAl2012AndSintermannEtAl2012/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1254,8 +1249,8 @@ tests/orchestrator/strategies/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
1254
1249
  tests/orchestrator/strategies/run/test_add_blank_node_if_missing.py,sha256=K4xg4UAXfNhSaLyknKVPO7MGBF44Z_gD7CuZ_pe28gU,3512
1255
1250
  tests/orchestrator/strategies/run/test_add_key_if_missing.py,sha256=hKwvk1ohcBVnQUCTiDhRW99J0xEa29BpwFi1KC0yWLE,329
1256
1251
  tests/orchestrator/strategies/run/test_always.py,sha256=w5-Dhp6yLzgZGAeMRz3OrqZbbAed9gZ1O266a3z9k7w,134
1257
- hestia_earth_models-0.73.1.dist-info/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
1258
- hestia_earth_models-0.73.1.dist-info/METADATA,sha256=vjktwIa0xJyoOFhMxOrsXFFTagjl1E2vtj24Knc3qM4,4045
1259
- hestia_earth_models-0.73.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1260
- hestia_earth_models-0.73.1.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
1261
- hestia_earth_models-0.73.1.dist-info/RECORD,,
1252
+ hestia_earth_models-0.73.3.dist-info/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
1253
+ hestia_earth_models-0.73.3.dist-info/METADATA,sha256=BRMBkKCVov4GgcXFjjmLxQ5wBD9HPTrqc6UWdd5UYwE,4065
1254
+ hestia_earth_models-0.73.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1255
+ hestia_earth_models-0.73.3.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
1256
+ hestia_earth_models-0.73.3.dist-info/RECORD,,
@@ -29,7 +29,7 @@ indicator_wrong_unit = {
29
29
  "term": {"@id": "landOccupationInputsProduction", "termType": "resourceUse", "units": "ha*day"}, "value": 0.5,
30
30
  "landCover": crop_land}
31
31
 
32
- indicator_bad_area_time_value = {
32
+ indicator_value_0 = {
33
33
  "term": {"@id": "landOccupationInputsProduction", "termType": "resourceUse", "units": "m2*year"}, "value": 0,
34
34
  "landCover": crop_land}
35
35
 
@@ -62,7 +62,7 @@ good_during_cycle_indicator_forest = {
62
62
  ([indicator_no_land_cover], False, 0),
63
63
  ([indicator_no_unit], False, 0),
64
64
  ([indicator_wrong_unit], False, 0),
65
- ([indicator_bad_area_time_value], False, 0),
65
+ ([indicator_value_0], True, 1),
66
66
  ([inputs_production_indicator_no_cf], True, 0),
67
67
  ([good_during_cycle_indicator_cropland], True, 1),
68
68
  ([good_during_cycle_indicator_cropland, good_inputs_production_indicator_forest], True, 2),
@@ -76,7 +76,7 @@ good_during_cycle_indicator_forest = {
76
76
  "Indicator no landcover terms => no run",
77
77
  "Missing unit => no run",
78
78
  "Wrong unit => no run",
79
- "Bad area*time value => no run",
79
+ "With 0 value => run",
80
80
  "Input with no cf => run, empty input",
81
81
  "One good input => run, 1 dict",
82
82
  "Two good input => run, 2 dict",