hestia-earth-models 0.69.1__py3-none-any.whl → 0.70.1__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 (219) hide show
  1. hestia_earth/models/aware/scarcityWeightedWaterUse.py +8 -16
  2. hestia_earth/models/cache_sites.py +3 -2
  3. hestia_earth/models/cml2001Baseline/abioticResourceDepletionFossilFuels.py +2 -1
  4. hestia_earth/models/cml2001Baseline/abioticResourceDepletionMineralsAndMetals.py +3 -2
  5. hestia_earth/models/config/Cycle.json +82 -60
  6. hestia_earth/models/config/ImpactAssessment.json +12 -4
  7. hestia_earth/models/config/Site.json +33 -22
  8. hestia_earth/models/cycle/animal/input/hestiaAggregatedData.py +1 -1
  9. hestia_earth/models/cycle/animal/input/properties.py +1 -1
  10. hestia_earth/models/cycle/cycleDuration.py +2 -2
  11. hestia_earth/models/cycle/input/hestiaAggregatedData.py +12 -14
  12. hestia_earth/models/cycle/input/properties.py +1 -1
  13. hestia_earth/models/cycle/siteDuration.py +3 -3
  14. hestia_earth/models/cycle/transformation.py +1 -1
  15. hestia_earth/models/cycle/utils.py +0 -6
  16. hestia_earth/models/data/ecoinventV3/__init__.py +15 -13
  17. hestia_earth/models/ecoalimV9/__init__.py +13 -0
  18. hestia_earth/models/ecoalimV9/cycle.py +128 -0
  19. hestia_earth/models/ecoalimV9/impact_assessment.py +125 -0
  20. hestia_earth/models/ecoalimV9/utils.py +31 -0
  21. hestia_earth/models/ecoinventV3/__init__.py +6 -14
  22. hestia_earth/models/ecoinventV3/utils.py +1 -29
  23. hestia_earth/models/ecoinventV3AndEmberClimate/__init__.py +8 -2
  24. hestia_earth/models/emissionNotRelevant/__init__.py +33 -8
  25. hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py +1 -1
  26. hestia_earth/models/geospatialDatabase/croppingIntensity.py +4 -4
  27. hestia_earth/models/geospatialDatabase/longFallowRatio.py +4 -4
  28. hestia_earth/models/geospatialDatabase/region.py +3 -2
  29. hestia_earth/models/geospatialDatabase/utils.py +6 -5
  30. hestia_earth/models/haversineFormula/transport/distance.py +5 -4
  31. hestia_earth/models/{koble2014 → hestia}/aboveGroundCropResidue.py +4 -5
  32. hestia_earth/models/{cycle → hestia}/aboveGroundCropResidueTotal.py +2 -2
  33. hestia_earth/models/{site → hestia}/brackishWater.py +1 -1
  34. hestia_earth/models/{site → hestia}/cationExchangeCapacityPerKgSoil.py +1 -1
  35. hestia_earth/models/{cycle → hestia}/coldCarcassWeightPerHead.py +1 -1
  36. hestia_earth/models/{cycle → hestia}/coldDressedCarcassWeightPerHead.py +1 -1
  37. hestia_earth/models/{cycle → hestia}/concentrateFeed.py +1 -1
  38. hestia_earth/models/{cycle → hestia}/cropResidueManagement.py +1 -1
  39. hestia_earth/models/{cycle → hestia}/croppingIntensity.py +1 -1
  40. hestia_earth/models/{cycle → hestia}/energyContentLowerHeatingValue.py +2 -2
  41. hestia_earth/models/{cycle → hestia}/excretaKgMass.py +7 -2
  42. hestia_earth/models/{cycle → hestia}/excretaKgN.py +1 -1
  43. hestia_earth/models/{cycle → hestia}/excretaKgVs.py +1 -1
  44. hestia_earth/models/{cycle → hestia}/feedConversionRatio/__init__.py +1 -1
  45. hestia_earth/models/{site → hestia}/flowingWater.py +1 -1
  46. hestia_earth/models/{site → hestia}/freshWater.py +1 -1
  47. hestia_earth/models/{cycle → hestia}/inorganicFertiliser.py +1 -1
  48. hestia_earth/models/{cycle → hestia}/irrigatedTypeUnspecified.py +14 -19
  49. hestia_earth/models/hestia/landCover.py +31 -27
  50. hestia_earth/models/hestia/landTransformation100YearAverageDuringCycle.py +2 -1
  51. hestia_earth/models/hestia/landTransformation20YearAverageDuringCycle.py +2 -1
  52. hestia_earth/models/{cycle → hestia}/liveAnimal.py +1 -1
  53. hestia_earth/models/{cycle → hestia}/longFallowRatio.py +1 -1
  54. hestia_earth/models/{site → hestia}/management.py +5 -3
  55. hestia_earth/models/{cycle → hestia}/materialAndSubstrate.py +1 -1
  56. hestia_earth/models/{cycle → hestia}/milkYield.py +1 -1
  57. hestia_earth/models/{site → hestia}/netPrimaryProduction.py +1 -1
  58. hestia_earth/models/{site → hestia}/organicCarbonPerHa.py +1 -1
  59. hestia_earth/models/{cycle → hestia}/pastureGrass.py +1 -1
  60. hestia_earth/models/{cycle → hestia}/pastureSystem.py +1 -1
  61. hestia_earth/models/{site → hestia}/potentialEvapotranspirationAnnual.py +3 -3
  62. hestia_earth/models/{site → hestia}/potentialEvapotranspirationMonthly.py +3 -3
  63. hestia_earth/models/{site → hestia}/precipitationAnnual.py +3 -3
  64. hestia_earth/models/{site → hestia}/precipitationMonthly.py +3 -3
  65. hestia_earth/models/{site → hestia}/rainfallAnnual.py +3 -3
  66. hestia_earth/models/{site → hestia}/rainfallMonthly.py +3 -3
  67. hestia_earth/models/{cycle → hestia}/readyToCookWeightPerHead.py +1 -1
  68. hestia_earth/models/{cycle → hestia}/residueBurnt.py +1 -1
  69. hestia_earth/models/{cycle → hestia}/residueIncorporated.py +1 -1
  70. hestia_earth/models/{cycle → hestia}/residueLeftOnField.py +1 -1
  71. hestia_earth/models/hestia/residueRemoved.py +65 -13
  72. hestia_earth/models/{site → hestia}/salineWater.py +1 -1
  73. hestia_earth/models/hestia/seed_emissions.py +1 -1
  74. hestia_earth/models/{site → hestia}/soilMeasurement.py +1 -1
  75. hestia_earth/models/{cycle → hestia}/stockingDensityAnimalHousingAverage.py +1 -1
  76. hestia_earth/models/{site → hestia}/temperatureAnnual.py +3 -3
  77. hestia_earth/models/{site → hestia}/temperatureMonthly.py +3 -3
  78. hestia_earth/models/{site → hestia}/totalNitrogenPerKgSoil.py +1 -1
  79. hestia_earth/models/{cycle → hestia}/unknownPreSeasonWaterRegime.py +1 -1
  80. hestia_earth/models/hestia/utils.py +93 -0
  81. hestia_earth/models/{site → hestia}/waterDepth.py +1 -1
  82. hestia_earth/models/hestia/waterSalinity.py +78 -0
  83. hestia_earth/models/impact_assessment/emissions.py +1 -1
  84. hestia_earth/models/impact_assessment/product/economicValueShare.py +1 -1
  85. hestia_earth/models/impact_assessment/product/value.py +1 -1
  86. hestia_earth/models/ipcc2019/aboveGroundBiomass.py +1 -1
  87. hestia_earth/models/ipcc2019/animal/fatContent.py +2 -2
  88. hestia_earth/models/ipcc2019/animal/milkYieldPerAnimal.py +2 -2
  89. hestia_earth/models/ipcc2019/animal/trueProteinContent.py +2 -2
  90. hestia_earth/models/ipcc2019/belowGroundBiomass.py +1 -1
  91. hestia_earth/models/ipcc2019/biomass_utils.py +2 -4
  92. hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py +7 -2
  93. hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py +163 -78
  94. hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py +1 -0
  95. hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py +2 -1
  96. hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py +31 -20
  97. hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py +2 -1
  98. hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py +16 -9
  99. hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py +36 -47
  100. hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1.py +94 -9
  101. hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py +167 -13
  102. hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py +7 -5
  103. hestia_earth/models/koble2014/cropResidueManagement.py +1 -1
  104. hestia_earth/models/koble2014/residueBurnt.py +1 -1
  105. hestia_earth/models/koble2014/residueRemoved.py +1 -1
  106. hestia_earth/models/koble2014/utils.py +3 -3
  107. hestia_earth/models/mocking/search-results.json +1263 -1229
  108. hestia_earth/models/pooreNemecek2018/excretaKgN.py +1 -1
  109. hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py +1 -1
  110. hestia_earth/models/pooreNemecek2018/utils.py +12 -3
  111. hestia_earth/models/schmidt2007/ch4ToAirWasteTreatment.py +1 -6
  112. hestia_earth/models/schmidt2007/h2SToAirWasteTreatment.py +1 -6
  113. hestia_earth/models/schmidt2007/n2OToAirWasteTreatmentDirect.py +1 -6
  114. hestia_earth/models/schmidt2007/nh3ToAirWasteTreatment.py +1 -6
  115. hestia_earth/models/site/pre_checks/country.py +4 -2
  116. hestia_earth/models/transformation/input/excreta.py +1 -1
  117. hestia_earth/models/utils/aggregated.py +12 -15
  118. hestia_earth/models/utils/background_emissions.py +52 -0
  119. hestia_earth/models/utils/blank_node.py +24 -6
  120. hestia_earth/models/utils/impact_assessment.py +26 -17
  121. hestia_earth/models/utils/lookup.py +48 -39
  122. hestia_earth/models/utils/measurement.py +3 -3
  123. hestia_earth/models/utils/product.py +1 -1
  124. hestia_earth/models/utils/source.py +2 -1
  125. hestia_earth/models/utils/term.py +26 -1
  126. hestia_earth/models/version.py +1 -1
  127. {hestia_earth_models-0.69.1.dist-info → hestia_earth_models-0.70.1.dist-info}/METADATA +2 -2
  128. {hestia_earth_models-0.69.1.dist-info → hestia_earth_models-0.70.1.dist-info}/RECORD +214 -209
  129. tests/models/aware/test_scarcityWeightedWaterUse.py +1 -12
  130. tests/models/cycle/input/test_hestiaAggregatedData.py +18 -16
  131. tests/models/ecoalimV9/__init__.py +0 -0
  132. tests/models/ecoalimV9/test_cycle.py +21 -0
  133. tests/models/ecoalimV9/test_impact_assessment.py +24 -0
  134. tests/models/environmentalFootprintV3_1/test_scarcityWeightedWaterUse.py +4 -2
  135. tests/models/geospatialDatabase/test_region.py +1 -1
  136. tests/models/geospatialDatabase/test_utils.py +1 -1
  137. tests/models/haversineFormula/transport/test_distance.py +2 -2
  138. tests/models/{koble2014 → hestia}/test_aboveGroundCropResidue.py +3 -3
  139. tests/models/{cycle → hestia}/test_aboveGroundCropResidueTotal.py +1 -1
  140. tests/models/{site → hestia}/test_brackishWater.py +1 -1
  141. tests/models/{site → hestia}/test_cationExchangeCapacityPerKgSoil.py +1 -1
  142. tests/models/{cycle → hestia}/test_coldCarcassWeightPerHead.py +1 -1
  143. tests/models/{cycle → hestia}/test_coldDressedCarcassWeightPerHead.py +1 -1
  144. tests/models/{cycle → hestia}/test_concentrateFeed.py +1 -1
  145. tests/models/{cycle → hestia}/test_cropResidueManagement.py +1 -1
  146. tests/models/{cycle → hestia}/test_croppingIntensity.py +1 -1
  147. tests/models/{cycle → hestia}/test_energyContentLowerHeatingValue.py +5 -3
  148. tests/models/{cycle → hestia}/test_excretaKgMass.py +1 -1
  149. tests/models/{cycle → hestia}/test_excretaKgN.py +1 -1
  150. tests/models/{cycle → hestia}/test_excretaKgVs.py +1 -1
  151. tests/models/{cycle → hestia}/test_feedConversionRatio.py +1 -1
  152. tests/models/{site → hestia}/test_flowingWater.py +1 -1
  153. tests/models/{site → hestia}/test_freshWater.py +1 -1
  154. tests/models/{cycle → hestia}/test_inorganicFertiliser.py +1 -1
  155. tests/models/{cycle → hestia}/test_irrigatedTypeUnspecified.py +2 -5
  156. tests/models/hestia/test_landCover.py +4 -34
  157. tests/models/{cycle → hestia}/test_liveAnimal.py +1 -1
  158. tests/models/{cycle → hestia}/test_longFallowRatio.py +1 -1
  159. tests/models/{site → hestia}/test_management.py +1 -1
  160. tests/models/{cycle → hestia}/test_materialsAndSubstrate.py +1 -1
  161. tests/models/{cycle → hestia}/test_milkYield.py +1 -1
  162. tests/models/{site → hestia}/test_netPrimaryProduction.py +1 -1
  163. tests/models/{site → hestia}/test_organicCarbonPerHa.py +1 -1
  164. tests/models/{site → hestia}/test_organicCarbonPerKgSoil.py +1 -1
  165. tests/models/{site → hestia}/test_organicCarbonPerM3Soil.py +1 -1
  166. tests/models/{site → hestia}/test_organicMatterPerKgSoil.py +1 -1
  167. tests/models/{site → hestia}/test_organicMatterPerM3Soil.py +1 -1
  168. tests/models/{cycle → hestia}/test_pastureGrass.py +1 -1
  169. tests/models/{cycle → hestia}/test_pastureSystem.py +1 -1
  170. tests/models/{site → hestia}/test_potentialEvapotranspirationAnnual.py +1 -1
  171. tests/models/{site → hestia}/test_potentialEvapotranspirationMonthly.py +1 -1
  172. tests/models/{site → hestia}/test_precipitationAnnual.py +1 -1
  173. tests/models/{site → hestia}/test_precipitationMonthly.py +1 -1
  174. tests/models/{site → hestia}/test_rainfallAnnual.py +1 -1
  175. tests/models/{site → hestia}/test_rainfallMonthly.py +1 -1
  176. tests/models/{cycle → hestia}/test_readyToCookWeightPerHead.py +1 -1
  177. tests/models/{cycle → hestia}/test_residueBurnt.py +1 -1
  178. tests/models/{cycle → hestia}/test_residueIncorporated.py +1 -1
  179. tests/models/{cycle → hestia}/test_residueLeftOnField.py +1 -1
  180. tests/models/hestia/test_residueRemoved.py +15 -3
  181. tests/models/{site → hestia}/test_salineWater.py +1 -1
  182. tests/models/{site → hestia}/test_soilMeasurement.py +2 -2
  183. tests/models/{cycle → hestia}/test_stockingDensityAnimalHousingAverage.py +1 -1
  184. tests/models/{site → hestia}/test_temperatureAnnual.py +1 -1
  185. tests/models/{site → hestia}/test_temperatureMonthly.py +1 -1
  186. tests/models/{site → hestia}/test_totalNitrogenPerKgSoil.py +1 -1
  187. tests/models/{cycle → hestia}/test_unknownPreSeasonWaterRegime.py +1 -1
  188. tests/models/{site → hestia}/test_waterDepth.py +1 -1
  189. tests/models/hestia/test_waterSalinity.py +26 -0
  190. tests/models/ipcc2019/test_ch4ToAirEntericFermentation.py +11 -0
  191. tests/models/ipcc2019/test_ch4ToAirFloodedRice.py +10 -42
  192. tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py +2 -1
  193. tests/models/ipcc2019/test_nonCo2EmissionsToAirNaturalVegetationBurning.py +22 -8
  194. tests/models/ipcc2019/test_organicCarbonPerHa.py +4 -2
  195. tests/models/pooreNemecek2018/test_landOccupationDuringCycle.py +3 -0
  196. tests/models/site/pre_checks/test_country.py +4 -3
  197. tests/models/test_ecoinventV3.py +2 -2
  198. tests/models/test_ecoinventV3AndEmberClimate.py +2 -2
  199. tests/models/test_emissionNotRelevant.py +0 -8
  200. tests/models/utils/test_measurement.py +1 -1
  201. tests/models/utils/test_source.py +15 -5
  202. tests/orchestrator/test_models.py +1 -0
  203. hestia_earth/models/cycle/residueRemoved.py +0 -54
  204. hestia_earth/models/hestia/nh3ToSurfaceWaterAquacultureSystems.py +0 -64
  205. hestia_earth/models/site/utils.py +0 -93
  206. tests/models/cycle/test_residueRemoved.py +0 -37
  207. tests/models/hestia/test_nh3ToSurfaceWaterAquacultureSystems.py +0 -51
  208. /hestia_earth/models/{cycle → hestia}/feedConversionRatio/feedConversionRatioCarbon.py +0 -0
  209. /hestia_earth/models/{cycle → hestia}/feedConversionRatio/feedConversionRatioDryMatter.py +0 -0
  210. /hestia_earth/models/{cycle → hestia}/feedConversionRatio/feedConversionRatioEnergy.py +0 -0
  211. /hestia_earth/models/{cycle → hestia}/feedConversionRatio/feedConversionRatioFedWeight.py +0 -0
  212. /hestia_earth/models/{cycle → hestia}/feedConversionRatio/feedConversionRatioNitrogen.py +0 -0
  213. /hestia_earth/models/{site → hestia}/organicCarbonPerKgSoil.py +0 -0
  214. /hestia_earth/models/{site → hestia}/organicCarbonPerM3Soil.py +0 -0
  215. /hestia_earth/models/{site → hestia}/organicMatterPerKgSoil.py +0 -0
  216. /hestia_earth/models/{site → hestia}/organicMatterPerM3Soil.py +0 -0
  217. {hestia_earth_models-0.69.1.dist-info → hestia_earth_models-0.70.1.dist-info}/LICENSE +0 -0
  218. {hestia_earth_models-0.69.1.dist-info → hestia_earth_models-0.70.1.dist-info}/WHEEL +0 -0
  219. {hestia_earth_models-0.69.1.dist-info → hestia_earth_models-0.70.1.dist-info}/top_level.txt +0 -0
@@ -1,10 +1,10 @@
1
1
  hestia_earth/__init__.py,sha256=G-d438vPx7m_ks5e9XTtM3u7LDRO5dSSukibukWmyPM,56
2
2
  hestia_earth/models/__init__.py,sha256=qEFeq3yuf3lQKVseALmL8aPM8fpCS54B_5pry00M3hk,76
3
- hestia_earth/models/cache_sites.py,sha256=-95yq3NYkg8H0B0hr0_ZYYHMmwv8zuZQ9RtKQE0RT9M,6294
3
+ hestia_earth/models/cache_sites.py,sha256=BOhLkkdVWLJ-4Z7kxfQ8swqrYgZ43sACn1uzxYN8hMQ,6345
4
4
  hestia_earth/models/log.py,sha256=eRuH86v7Thuw-QXdKqaqVmA_MkwnOCo0UBEwtuDq4Oc,3554
5
5
  hestia_earth/models/preload_requests.py,sha256=vK_G1UzhNMhYy7ymnCtHUz_vv3cfApCSKqv29VREEBQ,1943
6
6
  hestia_earth/models/requirements.py,sha256=eU4yT443fx7BnaokhrLB_PCizJI7Y6m4auyo8vQauNg,17363
7
- hestia_earth/models/version.py,sha256=5P1nCE8Q18-xTrQH50u058MKyJwY_-ZUI-3602XVMxM,19
7
+ hestia_earth/models/version.py,sha256=ceL_ZXeQ-01oI1RQrqwg54aJTkMN3Dnq1Liv7wCHX-U,19
8
8
  hestia_earth/models/agribalyse2016/__init__.py,sha256=WvK0qCQbnYtg9oZxrACd1wGormZyXibPtpCnIQeDqbw,415
9
9
  hestia_earth/models/agribalyse2016/fuelElectricity.py,sha256=1ngl8pdxeNhlVV8keAeWRwGorr_1uFXM9EoPUWx-uSc,4382
10
10
  hestia_earth/models/agribalyse2016/machineryInfrastructureDepreciatedAmountPerCycle.py,sha256=queToXuzq0tQ9_XuUJ2pJgSywXmbt9uX3ZoIKgqkROM,2660
@@ -15,15 +15,15 @@ hestia_earth/models/akagiEtAl2011AndIpcc2006/nh3ToAirCropResidueBurning.py,sha25
15
15
  hestia_earth/models/akagiEtAl2011AndIpcc2006/noxToAirCropResidueBurning.py,sha256=Drsob8QtbGpCddmjB3lXm8SJF9e2xkhIx4woa0wnu4g,1642
16
16
  hestia_earth/models/akagiEtAl2011AndIpcc2006/utils.py,sha256=aHsit7ezqCE-RfRmZX19kdYN9nmAVFqFfjAH9bXA4cA,633
17
17
  hestia_earth/models/aware/__init__.py,sha256=F8XRo9nRiX-fHAqyeMARYtFmJWRPs-hnIaCiHcZhyMw,406
18
- hestia_earth/models/aware/scarcityWeightedWaterUse.py,sha256=In5I33hLtIUuSswTN7MI1STyewn2_uZj4B8wWpCv4j4,4048
18
+ hestia_earth/models/aware/scarcityWeightedWaterUse.py,sha256=-87ici2uuLVHQGg_RCveUbKiefWtBJiPoTVSEWDIyvM,3779
19
19
  hestia_earth/models/chaudharyBrooks2018/__init__.py,sha256=LKxQu7-6gyWPpdXaYHDTawzsBNm7CpDrk98I5_TTLhA,420
20
20
  hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandOccupation.py,sha256=qsOClIL45FT9qbglvyB5NPOHlWLm8TZl8LDT0duQyfw,3905
21
21
  hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandTransformation.py,sha256=q3kGrb20LPpAGcprVKkf29IKiTvv84Txv58KHcrMRcE,3242
22
22
  hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsTotalLandUseEffects.py,sha256=11H8j9i2h2zChea92CdzPodWZfdegkAnQx6qYC6Ym9A,2623
23
23
  hestia_earth/models/chaudharyBrooks2018/utils.py,sha256=T7mfzA7bWdVBNqOuueACIWO3m9cMLxygmSyjhwOIVm4,1670
24
24
  hestia_earth/models/cml2001Baseline/__init__.py,sha256=0uGrCKDNUH-MUkpvts9MyPMnZKao-M03gU8uKquUozQ,416
25
- hestia_earth/models/cml2001Baseline/abioticResourceDepletionFossilFuels.py,sha256=IjfNhVAgxMHBWg_Dg6gTm30LpSEJUflTAMHCfRJ7Q48,4711
26
- hestia_earth/models/cml2001Baseline/abioticResourceDepletionMineralsAndMetals.py,sha256=tWf5DIof3iZRmEXbAkpWB8ou_yZGSgk96mxCUZyy9ps,5132
25
+ hestia_earth/models/cml2001Baseline/abioticResourceDepletionFossilFuels.py,sha256=K7rq8jARCGvxA_nstNNGCnNrqtF0AsdMKElbYVNdx6M,4731
26
+ hestia_earth/models/cml2001Baseline/abioticResourceDepletionMineralsAndMetals.py,sha256=RT69ZgQjwtY72Qxrxq7Kw7L6WLTfPttYANYVs9OMRnA,5151
27
27
  hestia_earth/models/cml2001Baseline/eutrophicationPotentialExcludingFate.py,sha256=nUWKsn3COqAOrYNmiBKnA2rUs88pj4o3k4fHKA0TVbU,1068
28
28
  hestia_earth/models/cml2001Baseline/resourceUseEnergyDepletionDuringCycle.py,sha256=C9pXq8Al971s4Xn50S85mXmtw7OYHzKRnPH6kcqZTCY,5237
29
29
  hestia_earth/models/cml2001Baseline/resourceUseEnergyDepletionInputsProduction.py,sha256=hXGdx1IA5yeVLHrRrSZWCP0s7ucSRWelYNr6aQ9YTyU,1205
@@ -33,55 +33,30 @@ hestia_earth/models/cml2001Baseline/terrestrialAcidificationPotentialIncludingFa
33
33
  hestia_earth/models/cml2001NonBaseline/__init__.py,sha256=vI8wp8Og_e8DiJqYYvp33YoI3t4ffAC31LWlnV20JTg,419
34
34
  hestia_earth/models/cml2001NonBaseline/eutrophicationPotentialIncludingFateAverageEurope.py,sha256=lcgyRHY08KCBFPERJNqV4DYGEJCvyHBDnJXD0kEkVqM,1097
35
35
  hestia_earth/models/cml2001NonBaseline/terrestrialAcidificationPotentialExcludingFate.py,sha256=xcrxfs9UoV_EWvV-XzMt35oPWCUsTzqg2SGA3j2MFIw,1091
36
- hestia_earth/models/config/Cycle.json,sha256=JQwuJNv1MfQl2uqsmGaKY_4eJFkbwN1ZqRfvdPltgGI,56592
37
- hestia_earth/models/config/ImpactAssessment.json,sha256=guiY7xxE6qNzeeeE2B3X4ulk_lKcgKKaWBzpl4mYBmA,55964
38
- hestia_earth/models/config/Site.json,sha256=BLVGtddRroPEI7A5hcml-fxZS6rAkvx80wmJyT7MSn0,13366
36
+ hestia_earth/models/config/Cycle.json,sha256=ObtsrTirct3x3U5QyAu6gDlxg1ODwUh25jy2F5GMNkI,57115
37
+ hestia_earth/models/config/ImpactAssessment.json,sha256=R22Pa6Szl05s13xFGKmrVZ4EgKD4UyUrruxxVujsJt4,56201
38
+ hestia_earth/models/config/Site.json,sha256=NAzX8EWfcmBjzF_RXy-XriSQb3Lm7zgrxnLnUiyHrWQ,13684
39
39
  hestia_earth/models/config/__init__.py,sha256=l1WqL7ezlank86ABP4zUia_hIvM9ba-sOE3z6wNrea8,2333
40
40
  hestia_earth/models/config/run-calculations.json,sha256=e3nJ4M6CP1iFzfv8ou_ZUFbFxYkDxJgwuNDXTm4PBDc,615
41
41
  hestia_earth/models/config/trigger-calculations.json,sha256=3dmn2bRuj6QEtSTOLdIy31ho7thgUXyDsnqZzPV9rAQ,623
42
42
  hestia_earth/models/cycle/__init__.py,sha256=VowO3kOHb0LpURsljNaJsYO7s6vgjhul6bF_85UjUEI,406
43
- hestia_earth/models/cycle/aboveGroundCropResidueTotal.py,sha256=2VsLL3yA4p2Mb6yQwvnv-UpZ-uxyiAwfWc7ejUR1XBE,2708
44
- hestia_earth/models/cycle/coldCarcassWeightPerHead.py,sha256=fQ7huuxyS5PQkRmR_tRCOz9rV3LJwLfLQJjH_TcTz6k,2955
45
- hestia_earth/models/cycle/coldDressedCarcassWeightPerHead.py,sha256=k0xg5SIfJGwEKteFr2Fh-lh8yDC_sqQw_lBnnfwl9zU,3069
46
- hestia_earth/models/cycle/concentrateFeed.py,sha256=VSsA7LxbNze2_j80XokRKbawNHMlPJkP5HpXM_zE0Hw,6640
47
- hestia_earth/models/cycle/cropResidueManagement.py,sha256=-9F7vVXW1c5f8e4hsQjwuLgB6watpAoKOmJ70VuGGM0,2216
48
- hestia_earth/models/cycle/croppingIntensity.py,sha256=44CgDqXg9CBRfTPYTyOleQT-M4_tsQgPba-0vjjk_C4,1770
49
- hestia_earth/models/cycle/cycleDuration.py,sha256=4ijfRFwNO11mtmE2HpeJazdFaJjOyt4wZJWwigOabMM,2923
43
+ hestia_earth/models/cycle/cycleDuration.py,sha256=UON8NjmfPpU2z0sRYmhytjv-zlGewbAzdl5OCVGWDc0,2925
50
44
  hestia_earth/models/cycle/endDate.py,sha256=lRJza_G41eC-48uRtn5qcx9V1u90T6dVIYuypNaEvDY,1499
51
- hestia_earth/models/cycle/energyContentLowerHeatingValue.py,sha256=AyVKCQbb3Pto3Ca__F0KJ_wlwTxbPd7mUyehZW7AJPM,2212
52
- hestia_earth/models/cycle/excretaKgMass.py,sha256=oRsqgifHnVRJ-nI96RPQfzsY6dvb7sLBajZSz428smI,3848
53
- hestia_earth/models/cycle/excretaKgN.py,sha256=4I3htPrwod4dS98uJuEQvHsMnTfrw05XZfhf91Hl6JU,2850
54
- hestia_earth/models/cycle/excretaKgVs.py,sha256=EuiHHptQDoVsJWsuTW_QjjVEJOETQvgiOAJdipIk08Q,2853
55
- hestia_earth/models/cycle/inorganicFertiliser.py,sha256=IdIEM8tzux1iAMvT5w5pwG41pJjcJjAd0DG6m-P8Sos,8923
56
- hestia_earth/models/cycle/irrigatedTypeUnspecified.py,sha256=KlIa5eDvT47Twz6Q1kpw0rMlRjCK25CExaW58DEvc9w,2125
57
- hestia_earth/models/cycle/liveAnimal.py,sha256=33XfV5u7b_PsjmmvnuaEV_8movz8V2eV0LLv2g4jQfA,3853
58
- hestia_earth/models/cycle/longFallowRatio.py,sha256=_h0kub99sACO87IfjMeiu8IgdK2jaeBlgGA9A9-ViZA,1683
59
- hestia_earth/models/cycle/materialAndSubstrate.py,sha256=6ZG9P9DP6x8-Td5rnTkvExwp3Xo35shWQqnbDcFiB9c,5123
60
- hestia_earth/models/cycle/milkYield.py,sha256=4KDdUv5Kd0dA02n-kLx0-oO9MfQoRa-MNZ6JziOR114,5534
61
45
  hestia_earth/models/cycle/otherSitesArea.py,sha256=ZBuoYG9YyEnwrUsORw5RDPB56JZMSSY_GHApeJdYBAs,1492
62
46
  hestia_earth/models/cycle/otherSitesUnusedDuration.py,sha256=Zuy_ifJf1Gls0VStroRtSIYKI4JZR0RPJtuHVEGcZ00,2729
63
- hestia_earth/models/cycle/pastureGrass.py,sha256=8-LakhdpoP3Z9DmShxceWkcfQa4at8OaRopEaw4ye28,1268
64
- hestia_earth/models/cycle/pastureSystem.py,sha256=YWwrY2BuQqEYEY1ZxPROmyx4MFcvJzQ-beJfJ5GiDek,2566
65
- hestia_earth/models/cycle/readyToCookWeightPerHead.py,sha256=R1Rt3WsTzwnI2Bqljx03RpdG0A1-bGV4M7EqmcP7Dzg,2955
66
- hestia_earth/models/cycle/residueBurnt.py,sha256=HwU1D9ibiIul-FlXDUcEMDEc_KxpB8ug0SLz-4rXxKk,2106
67
- hestia_earth/models/cycle/residueIncorporated.py,sha256=9_s2RMOy5D20eq9ziDBEA_Y7RiFFMeK0bDJ65CW4qlE,2763
68
- hestia_earth/models/cycle/residueLeftOnField.py,sha256=qYxKGAdUORN7Vjqj7AZC2VGV_rM3MN0-padDGhgjiNU,2175
69
- hestia_earth/models/cycle/residueRemoved.py,sha256=jxDu_Jfcyd-rm-qo8ZuRIf-GGxtFBMpmGy1zHOavwy0,2135
70
47
  hestia_earth/models/cycle/siteArea.py,sha256=i4YrHN11m1i4WNS07bRwetXDJ5Jf09rUcYtexSZdGd0,2597
71
- hestia_earth/models/cycle/siteDuration.py,sha256=jjWvlfCKOCCNNFaExDagzrZMow_FD5WIlE83pDli45A,2011
48
+ hestia_earth/models/cycle/siteDuration.py,sha256=qAhrwSmqnRCmGXKS8L38Xo6hqS4Rhc2O_AEMyNDpVQA,2030
72
49
  hestia_earth/models/cycle/siteUnusedDuration.py,sha256=AHhU57E8R3i9pkTKQ37yMv6WK7CcNknOTWmk9RQEUsM,1994
73
50
  hestia_earth/models/cycle/startDate.py,sha256=F42dxaRUFsd2tr8Wm3gJCstfLvpFP50LcmE7tYdNhxY,2509
74
51
  hestia_earth/models/cycle/startDateDefinition.py,sha256=2sD4V6Jv-yGLM1nkA4eT-RHTnTNfPpl4L5p4jPKzmLo,1991
75
- hestia_earth/models/cycle/stockingDensityAnimalHousingAverage.py,sha256=f1houLdigq6EGMrG3dL8WqAaGVlpXNJB74VbSxWQUCY,1843
76
- hestia_earth/models/cycle/transformation.py,sha256=80oI8dP6Y_sujlNBS89iIqKI7A4WS-5Hx8hdgFYNdpQ,1151
77
- hestia_earth/models/cycle/unknownPreSeasonWaterRegime.py,sha256=s0vO5-6yNA2I2PbQvoXDO-THxU4k7wveieQFY-q26c0,1453
78
- hestia_earth/models/cycle/utils.py,sha256=SaJyQEufLlUCeA6P2rgK5nev1D8J1eCthPUwG0ZPvRE,1407
52
+ hestia_earth/models/cycle/transformation.py,sha256=s4vlje5g-pMKEMF-IqcrjfPOagBS3v8VItoU19EBc0A,1150
53
+ hestia_earth/models/cycle/utils.py,sha256=cobuyIyG_sVMNSzeczHp9xBlswmFPcBropXOEgr5cjM,1137
79
54
  hestia_earth/models/cycle/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
55
  hestia_earth/models/cycle/animal/milkYield.py,sha256=A4l8Ir02Kifvv3NW83lKaodlPpS_fSQN5QhmDQ8hIFw,2137
81
56
  hestia_earth/models/cycle/animal/properties.py,sha256=KYCjznw9-e0BOLh3jep86DC_BmDGaZ0Y6TG-m3YnxHE,466
82
57
  hestia_earth/models/cycle/animal/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
- hestia_earth/models/cycle/animal/input/hestiaAggregatedData.py,sha256=7hRyotfEaX4pGUiYVoaelD1i1ZK2CHONNdSSUgYxFtE,2170
84
- hestia_earth/models/cycle/animal/input/properties.py,sha256=2vViYkaA2y5Z7TArllPYN4MzdCJc2pDZFDLrnVMKp2I,3147
58
+ hestia_earth/models/cycle/animal/input/hestiaAggregatedData.py,sha256=pb5tKzH1Gwl9PfYmWjui5zYscosrd2dMVAEryB-9K80,2197
59
+ hestia_earth/models/cycle/animal/input/properties.py,sha256=PoW8qBlPuWSQRBNK4iBhI6dNaCF74LKdM_4HEGyLqxk,3174
85
60
  hestia_earth/models/cycle/completeness/__init__.py,sha256=bQ-tpeCbUsIdSPGla06Mg2IZWpGp7TgWXlgZTYeLsKk,1512
86
61
  hestia_earth/models/cycle/completeness/animalFeed.py,sha256=_qUJcQ2ggdy0fBCBkHmeRDL71HuX4b9KfnSm7JqPgFM,830
87
62
  hestia_earth/models/cycle/completeness/cropResidue.py,sha256=7SNfYvP4erJ2keem3DHdOzuzzuAsrj15iffacWNgJHE,2653
@@ -91,15 +66,9 @@ hestia_earth/models/cycle/completeness/freshForage.py,sha256=YpZ3bbZh93Cbqjup38V
91
66
  hestia_earth/models/cycle/completeness/material.py,sha256=cF33MJkVBUnoicmecdsR78Snrv1Zng097aUeEfYDfdc,1185
92
67
  hestia_earth/models/cycle/completeness/seed.py,sha256=O4OygpPOeXHbn_32rdUk8m1BcZiQ6QpmvV463UOCmKY,1763
93
68
  hestia_earth/models/cycle/completeness/soilAmendment.py,sha256=glioQWyh0oaTw2BGE92CYMZyqsmmAsEzcwVEZVWfIB8,1203
94
- hestia_earth/models/cycle/feedConversionRatio/__init__.py,sha256=28bB2lN7gY-b0XuUZNIIlBdzJmzfdpqB4Q8JSZ_Drsk,2505
95
- hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioCarbon.py,sha256=21_PXoKXJCxPOPOspKqqq-E7dh-2tVQnR4cnGZ9JGj8,1992
96
- hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioDryMatter.py,sha256=zf-v-cAPLpSe7sr1auzUUXkjXwpXRTVvsCrzbZrwBI8,2388
97
- hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioEnergy.py,sha256=C6ZyjZDUHU4UlIr6tlvHoCQfsC5jRQ87U7stSn95jzA,1984
98
- hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioFedWeight.py,sha256=7Dss1AIbG7GimQ3-Ecv2wsx1PrblZhHFYhMHWoyvPc4,2140
99
- hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioNitrogen.py,sha256=RV7lLd4PiFRCkH83-DvuZKnOCA9bXbYOcDHea8Wz4LY,2603
100
69
  hestia_earth/models/cycle/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
- hestia_earth/models/cycle/input/hestiaAggregatedData.py,sha256=-WDW64neQiyHsYXrz2ekQr3sxd_cggg-VwDYaNf7eXk,5695
102
- hestia_earth/models/cycle/input/properties.py,sha256=sHAq_RmHPE5A3anlhfGUjPwprygWEQ6ewxmPU2QUJP4,2725
70
+ hestia_earth/models/cycle/input/hestiaAggregatedData.py,sha256=u4sNTBe9vQHe1-Jlz_qCQ6DyioJTN_hq7L56nCf9vhs,5696
71
+ hestia_earth/models/cycle/input/properties.py,sha256=-bsKbgS92AicE7_0GSamFG2-O3Rvn2LnXcmlrEt72dA,2752
103
72
  hestia_earth/models/cycle/input/value.py,sha256=TUcqoaMheIhlM0c7Ki7qWSdHpxes3SEVORAUNdyR8Rg,1391
104
73
  hestia_earth/models/cycle/post_checks/__init__.py,sha256=5ThdvGKp7ilFOzn8Tq23c4XXqhA345PYIe63yOtGJTY,336
105
74
  hestia_earth/models/cycle/post_checks/cache.py,sha256=UNWR3IxZyv7GvBUZOkdj1HqMDa0BQ3q6exGmMQ8ywWA,215
@@ -123,12 +92,16 @@ hestia_earth/models/cycle/product/value.py,sha256=JYHlfmOakU1xgDcgGWc78WzRd50HYq
123
92
  hestia_earth/models/dammgen2009/__init__.py,sha256=dZ8tIXl6e3ZEixYrWiW7rzoqRJVFOoxi4RPvM3N0L1E,412
124
93
  hestia_earth/models/dammgen2009/noxToAirExcreta.py,sha256=QTavWhklMVD00Z5YyinTrheqZwW85frjYEJPYtHWKDg,1744
125
94
  hestia_earth/models/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
- hestia_earth/models/data/ecoinventV3/__init__.py,sha256=oevyurRuioXy_CsQCtG-S_FXEpiEDeQ-UK5a0jPBXcI,1155
95
+ hestia_earth/models/data/ecoinventV3/__init__.py,sha256=iCJsrHQpe7VhG_ifbXZ0gbwEm18Xr15nWszTum-2qSk,1222
127
96
  hestia_earth/models/deRuijterEtAl2010/__init__.py,sha256=lbH6mB98dmZZlwdZctNYtEmVwAow957l80Dv7JSPDsI,418
128
97
  hestia_earth/models/deRuijterEtAl2010/nh3ToAirCropResidueDecomposition.py,sha256=2z10WqMsGUDDO8xJ3lmXvSUHgzz2t6PPRDha5NHoT5s,3291
129
- hestia_earth/models/ecoinventV3/__init__.py,sha256=kOozX7g0_PVowPDZH8ZN-YxEyY6c_nKbfw73AKg8QwY,5411
130
- hestia_earth/models/ecoinventV3/utils.py,sha256=odmFDw2PfudZM-fRQg2hBLBD7Qd3rq8SWJWTvy9ZWWw,1517
131
- hestia_earth/models/ecoinventV3AndEmberClimate/__init__.py,sha256=OXP79mQTGppzqBHJ47kg0qKR_URdVMOD9xgA4-eSCrA,5245
98
+ hestia_earth/models/ecoalimV9/__init__.py,sha256=_evwL-DZejYohms9PUi4TNqLic44-UbOzw178wak7Pk,410
99
+ hestia_earth/models/ecoalimV9/cycle.py,sha256=i_Ydzqt9JN3akmZMToz_JJq_nd_pCUZ-4D0wM_0BhgY,4725
100
+ hestia_earth/models/ecoalimV9/impact_assessment.py,sha256=HY2hvAq9Fv-rreroHdWpXxRCP3s6GD_5eWpcB8UWzhs,4506
101
+ hestia_earth/models/ecoalimV9/utils.py,sha256=AWmWQhjvze3J6s35bH-EQIGc58xCeMA8_56hQD7CX8A,1170
102
+ hestia_earth/models/ecoinventV3/__init__.py,sha256=qKJRphRIlcE52yxUARkolijZgXoB27t3hJeU6nRDKpA,5084
103
+ hestia_earth/models/ecoinventV3/utils.py,sha256=RxqaHB9hr0RdTKSjfvDN0pC8DIOyxMCr4I_xjas1POw,460
104
+ hestia_earth/models/ecoinventV3AndEmberClimate/__init__.py,sha256=7deu8P0SUfYe1u-Y2MOgI2psddgzr3U9BN6H3oU6n0E,5764
132
105
  hestia_earth/models/ecoinventV3AndEmberClimate/utils.py,sha256=AzslK6YB0jxVMLfkLVmhHpkM7mx639N0mIWbErD6GMw,1133
133
106
  hestia_earth/models/edip2003/__init__.py,sha256=nyB0CI2gNmRAXj-203aJHQMmETYhcY-dHbMABOhJ7YI,409
134
107
  hestia_earth/models/edip2003/ozoneDepletionPotential.py,sha256=YkBct4eDUidGukaVdd2iaEouq_FckuG8l_7pgBQgCBw,1033
@@ -143,7 +116,7 @@ hestia_earth/models/emepEea2019/pm25ToAirAnimalHousing.py,sha256=IzGQrRv9Pk0o1Vq
143
116
  hestia_earth/models/emepEea2019/so2ToAirFuelCombustion.py,sha256=8B1GVsn5gEXVW3iZYBct-s_OTRaH-asXo6JvGW_jls0,1431
144
117
  hestia_earth/models/emepEea2019/tspToAirAnimalHousing.py,sha256=TaT5GyYK6MyJQHKApBe-u4fMjqXXdmuBEtUcRYnkhac,1381
145
118
  hestia_earth/models/emepEea2019/utils.py,sha256=oTHjbRRwJZv_tpO9MOlfpyQRmN0a1kvEZsVHUPliZpQ,4014
146
- hestia_earth/models/emissionNotRelevant/__init__.py,sha256=il4tAkk0vrE_HuKlhOrJtAIh0hCSu3_5ANA8c-v69OQ,2068
119
+ hestia_earth/models/emissionNotRelevant/__init__.py,sha256=yAunIZI_4nGV0khRiGhbZAmXmMiuICzEH-pvzWX1lpM,3000
147
120
  hestia_earth/models/environmentalFootprintV3_1/__init__.py,sha256=tF2WrWiV1Wzi2vnRiNXdfPWfmVxgVu9w9-7eA6PA7-s,473
148
121
  hestia_earth/models/environmentalFootprintV3_1/environmentalFootprintSingleOverallScore.py,sha256=tRx2rRlSDupAWTfB9MqvqwrUCWHy-r-3gHjbgVOYLTs,5239
149
122
  hestia_earth/models/environmentalFootprintV3_1/freshwaterEcotoxicityPotentialCtue.py,sha256=N_gw2aNoCMW5Z1XM-uAyCF1kfpZUI07giv_bo3Lmr5Q,918
@@ -169,19 +142,19 @@ hestia_earth/models/faostat2018/utils.py,sha256=r-5krLwm2Gymq6alxvGbo7NRprRFOjCp
169
142
  hestia_earth/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
143
  hestia_earth/models/faostat2018/product/price.py,sha256=EdshQnQLYLnRawsDYEBKr1KibQ_Pgxuu9JWw0XuaoUM,7718
171
144
  hestia_earth/models/frischknechtEtAl2000/__init__.py,sha256=Fixyy9UwoCGP5-MHyJu_ctS40SQ2imfvZo8a547029U,421
172
- hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py,sha256=2aFL6PY1daD6dqEOUz_hQn-naqSpoqrizjnOpWiNjVg,4428
145
+ hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py,sha256=W2R5rjnorfWhderyDy3iGpcIZdL3rYvRh5wh0wlvI0k,4430
173
146
  hestia_earth/models/geospatialDatabase/__init__.py,sha256=TH-FW3aoL7r1GquRChr7rde7uQonKQRDR00udG8tDrQ,957
174
147
  hestia_earth/models/geospatialDatabase/altitude.py,sha256=TDo9_8fmvRsI2GvvdX63HFDndPnvLykeJexBmcp-P4Q,1960
175
148
  hestia_earth/models/geospatialDatabase/awareWaterBasinId.py,sha256=_4HFoZR5PQrEYZegMjj33rjUFR_kktt69D4J_moZXHo,1249
176
149
  hestia_earth/models/geospatialDatabase/clayContent.py,sha256=u8SQKx-zu3vhMQ-XOJgqyUn-tlCCIy-VG7zpl5AyjtY,3386
177
- hestia_earth/models/geospatialDatabase/croppingIntensity.py,sha256=ZtnvMX8Ax00VbPtKXDkivL9bw1T7xSqEEl8XkaShSbc,2477
150
+ hestia_earth/models/geospatialDatabase/croppingIntensity.py,sha256=d1WIrxO4rFj5Oj-k8f1eaVIOR6sfke2CYH8lwtuE_BM,2565
178
151
  hestia_earth/models/geospatialDatabase/drainageClass.py,sha256=CVagB2wxLnHgQQauDyYCJCfJw21OPB7Ry8BVyt2uPak,1883
179
152
  hestia_earth/models/geospatialDatabase/ecoClimateZone.py,sha256=WBeaYmzer3CeviHnnfK0xIn_3inpkDKqxszFluz0xPQ,2658
180
153
  hestia_earth/models/geospatialDatabase/ecoregion.py,sha256=Hr2zJd-KGmOB5PU6nAbTtnUDWMBwhFOUf8PwT-lcPis,1206
181
154
  hestia_earth/models/geospatialDatabase/erodibility.py,sha256=M62CetEcHuExeXl7P7DVKZWWbk9tenjaDFvjMsWbga4,1843
182
155
  hestia_earth/models/geospatialDatabase/heavyWinterPrecipitation.py,sha256=54pvHOfcfEUNNhTIWIPGRzqO_t59ACh-zhnLidO2xro,1956
183
156
  hestia_earth/models/geospatialDatabase/histosol.py,sha256=5zwKdF1t9aOjTzBoear62T0Kzpjco-IJXu4oRYrUFQ8,2387
184
- hestia_earth/models/geospatialDatabase/longFallowRatio.py,sha256=yHpS9VU4ZCfe2lRe1cSXqepRiVcJQ9ymUQ6JFIyS1dk,2473
157
+ hestia_earth/models/geospatialDatabase/longFallowRatio.py,sha256=X-qJS0euYVwhGHd4rCnlRSL3KOMLQJl5kO8QqSREcpA,2561
185
158
  hestia_earth/models/geospatialDatabase/nutrientLossToAquaticEnvironment.py,sha256=uEsoYJ1mzgUo6fQhUrcJ-ATcFw1j9oEgqMXKbQuFRxQ,1973
186
159
  hestia_earth/models/geospatialDatabase/organicCarbonPerKgSoil.py,sha256=O_3GdoyY3FrwAq37MHleb0kiXZhsqpuAcik9TYpAvU4,2830
187
160
  hestia_earth/models/geospatialDatabase/potentialEvapotranspirationAnnual.py,sha256=x8-108UuysEZNgCBvLGOWsYvvBAIlE_5h6y2Kl-Tl40,2396
@@ -190,7 +163,7 @@ hestia_earth/models/geospatialDatabase/potentialEvapotranspirationMonthly.py,sha
190
163
  hestia_earth/models/geospatialDatabase/precipitationAnnual.py,sha256=VMrz4z4FmA0SLIwYr1mT5RWX41XbmubQlwdQvU2eq80,2657
191
164
  hestia_earth/models/geospatialDatabase/precipitationLongTermAnnualMean.py,sha256=wZ_QprRT9ILSNpiUhPdKtTERUsGofQT1kqUaHuJjDOs,2390
192
165
  hestia_earth/models/geospatialDatabase/precipitationMonthly.py,sha256=jQ3XLN8Zh7q2LZgLmybzvwR0X2vdi6IDz301EUVbAmE,3261
193
- hestia_earth/models/geospatialDatabase/region.py,sha256=D9IXaAoQQJO0LOrQYU8d7Cl4gAMjgzkxeWiDBnjY_II,1378
166
+ hestia_earth/models/geospatialDatabase/region.py,sha256=55tjxaffUaQnJ_kqWd-eejhLMs-5N2CjUQd9FU1wWoU,1448
194
167
  hestia_earth/models/geospatialDatabase/sandContent.py,sha256=dzaefKcnMeBRu7b1X11MG_-I6iDuXkHVCrkdbawB3Tw,3386
195
168
  hestia_earth/models/geospatialDatabase/siltContent.py,sha256=rFUlQ3SlwCJFcMYQd5F6t3bnDMjcRilsXk2rShoa5Tk,3786
196
169
  hestia_earth/models/geospatialDatabase/slope.py,sha256=g1SpuYks60injv2w-CMjESNfu8KM1JsiYnRT9XZfSuY,1859
@@ -201,25 +174,79 @@ hestia_earth/models/geospatialDatabase/temperatureLongTermAnnualMean.py,sha256=y
201
174
  hestia_earth/models/geospatialDatabase/temperatureMonthly.py,sha256=E2k2kkhVDtmeFEB4_AZhhq5od57lRDMWu6AqaurgqvQ,3194
202
175
  hestia_earth/models/geospatialDatabase/totalNitrogenPerKgSoil.py,sha256=DrjiPyakM1SJ1XO-arhvjLDj2qb3M-i58gJ1kFFM6kI,2821
203
176
  hestia_earth/models/geospatialDatabase/totalPhosphorusPerKgSoil.py,sha256=5oasLMYgfnPwSse0D8EEe_pV57AMusac853BgVSUh5E,2070
204
- hestia_earth/models/geospatialDatabase/utils.py,sha256=y8QOS30TxEKG0BhR9ur1J3fKnG59eKayVKKGqaZcumc,6741
177
+ hestia_earth/models/geospatialDatabase/utils.py,sha256=tQW1r_0xSFY8IVnptz3PljXPonmceFUY8Amh2kJLfW8,6744
205
178
  hestia_earth/models/geospatialDatabase/waterDepth.py,sha256=Xy2UxwAJrgdOkcw59NetEHMt5vgRYE6qg4fgXb1ptlU,1643
206
179
  hestia_earth/models/globalCropWaterModel2008/__init__.py,sha256=vQxexzFCl2Uv2RiIJfcppkRi9RgzBsJ68yhVDK4GvAU,425
207
180
  hestia_earth/models/globalCropWaterModel2008/rootingDepth.py,sha256=5HXiZHk5iFOhOIB-0OnatgJ4PHJVvV0gH47U3EvQ6Y0,4081
208
181
  hestia_earth/models/haversineFormula/__init__.py,sha256=o155nR-XI67iCSBVNYIu4sPRIF3C2Y1NnUZ6lfpi0Do,417
209
182
  hestia_earth/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
- hestia_earth/models/haversineFormula/transport/distance.py,sha256=nh2MB6gXo-WrPOJrLxRWOpmQSrwShJ1LmVEfmpa2Dqc,3882
183
+ hestia_earth/models/haversineFormula/transport/distance.py,sha256=l00mmyRgWsHWFtk4OTFrhqyOmc-73C4Wkfn5WKM99TA,3990
211
184
  hestia_earth/models/hestia/__init__.py,sha256=o5vAmPzSaK9XPgL8GCne3-lugfCOgZhHELYolNgqyyY,407
212
- hestia_earth/models/hestia/landCover.py,sha256=llEyY41_dOYysv_CwD0ngwOp59f1VXAojwLQArqJl_M,31563
213
- hestia_earth/models/hestia/landTransformation100YearAverageDuringCycle.py,sha256=hlavkXxsqAoWbTZSBFDzvHl5rdUGYvZSbMAW-mHJX5I,989
214
- hestia_earth/models/hestia/landTransformation20YearAverageDuringCycle.py,sha256=SdZ7CHknZ_ln-5d4mFhIoHNLvwS53RLN5quXW0TWltI,987
215
- hestia_earth/models/hestia/nh3ToSurfaceWaterAquacultureSystems.py,sha256=IthPrK7r3CpvT5s_ozarngfR26OHm2E-Ih9nMM_XzZk,1785
216
- hestia_earth/models/hestia/residueRemoved.py,sha256=doSLJaWfuOYy9HiqOBLRthji04ghBQ1Qws1xfK6zh9U,2656
185
+ hestia_earth/models/hestia/aboveGroundCropResidue.py,sha256=lo4Y3qjGsL7F-VixsoCsTZxIULJO-LQmm9HvLG03f1s,5860
186
+ hestia_earth/models/hestia/aboveGroundCropResidueTotal.py,sha256=NcaHzSLTmTP0yTO_2mqqouNzkCVYRkDm31LZqOCiFD4,2715
187
+ hestia_earth/models/hestia/brackishWater.py,sha256=znc-p3W7sclCeytj3Jg6YUzGu2tFD8inswjapn-_8ds,1285
188
+ hestia_earth/models/hestia/cationExchangeCapacityPerKgSoil.py,sha256=GtF-X2ogdXLX0dKed8d2L3baI5MfpN6UXZbZm2aG3Es,3660
189
+ hestia_earth/models/hestia/coldCarcassWeightPerHead.py,sha256=IkOyrLYqSNidrTfuuZcAGXaT5XEDBFmRWPNxAEAORNU,2962
190
+ hestia_earth/models/hestia/coldDressedCarcassWeightPerHead.py,sha256=NE1aw4-rmKsslwsyQkRl2TT9Zng-8NNsYXsajHHmU30,3076
191
+ hestia_earth/models/hestia/concentrateFeed.py,sha256=HnuG3zAECtFVdPRbTATGz5ImO2Ve1NruqD8brbrO2c4,6647
192
+ hestia_earth/models/hestia/cropResidueManagement.py,sha256=5t32oILM-lbOsPiP6tDiITpuLZ0eISlB6Lp0goDH8eE,2223
193
+ hestia_earth/models/hestia/croppingIntensity.py,sha256=xev3GOE06nBJ8ZY3XtbnE0eR2YR_kqAFPnrTuKFtLrQ,1777
194
+ hestia_earth/models/hestia/energyContentLowerHeatingValue.py,sha256=2gR7Iu5nUUCGSXjFrkTnss6XBGtQz-yKwexCQoy8TJU,2214
195
+ hestia_earth/models/hestia/excretaKgMass.py,sha256=2xAZE6lRIonV0kaGBKEJL4hCf1kYY7WU6mImHFtxXeg,4015
196
+ hestia_earth/models/hestia/excretaKgN.py,sha256=-GfHPx6AECNPW2i_ioCuf-DhW7Xau201xqe-qWcK474,2857
197
+ hestia_earth/models/hestia/excretaKgVs.py,sha256=fzBV7hgznevLTcvHyHKQk9upkCgmJ0xH1NuMETeSF8A,2860
198
+ hestia_earth/models/hestia/flowingWater.py,sha256=Iy5PCWun7GMrr0zszd0zpp9lKADpXesjC3doqLY4n28,1603
199
+ hestia_earth/models/hestia/freshWater.py,sha256=EHUWNFmgIqr9y7DTcn1_HcpJdI7WP1cv4LMrkpaf8zQ,1262
200
+ hestia_earth/models/hestia/inorganicFertiliser.py,sha256=SQv5X4vkgmvUIUV79dJ71Y9u2EW3T5Scu2GoTr3K0Yw,8930
201
+ hestia_earth/models/hestia/irrigatedTypeUnspecified.py,sha256=VdYzfYxcRzWv21qxRkDn9HBid7-Bt_CgIv4iyXJH03g,1929
202
+ hestia_earth/models/hestia/landCover.py,sha256=S72I3GhQdrW_FcJc0s49l14T3LMyWgjNEZSIYjbI_Js,31742
203
+ hestia_earth/models/hestia/landTransformation100YearAverageDuringCycle.py,sha256=7KWgpAo2gILzsxdgnO8gI3tAf3tF0IhyGkneYI6PEDc,1018
204
+ hestia_earth/models/hestia/landTransformation20YearAverageDuringCycle.py,sha256=1StzrYhMsX-hdwBTeLnLMZWl5EEnCoEYpGPRkqy8a-A,1016
205
+ hestia_earth/models/hestia/liveAnimal.py,sha256=95HfqgFA_qRhdIeR2X5MJ9zzIm4nMHDvJ0BCnuTYe5Q,3860
206
+ hestia_earth/models/hestia/longFallowRatio.py,sha256=LkJaER1VNDI5351-oC8tru-LgiPK3sNMg0NhB5ic9RE,1690
207
+ hestia_earth/models/hestia/management.py,sha256=SSetfZNGghs_Ohm1BkH5tJ3XFIFRSxGJir0GwNerzfk,14889
208
+ hestia_earth/models/hestia/materialAndSubstrate.py,sha256=abmM_7FOY5yaNb2yZEm-ncI4wFFcbzaebtnG9XWEA6M,5130
209
+ hestia_earth/models/hestia/milkYield.py,sha256=__3AdxRTUTWwS_GsqxFpPGklmTnnpADiN0khlRCMAss,5541
210
+ hestia_earth/models/hestia/netPrimaryProduction.py,sha256=uU4AZ7X6tbtWgR5YClA_aLpYWtlivq9lPQGZgt3-qoQ,1856
211
+ hestia_earth/models/hestia/organicCarbonPerHa.py,sha256=-Mk2d9MjvvXA2U-c8UdsGYl7WADE9yc8dWKuPD-CMn0,14923
212
+ hestia_earth/models/hestia/organicCarbonPerKgSoil.py,sha256=t--wAshiAKS-JvEKhLFRadGvgSBv5NFZ68jdyms_wh4,1945
213
+ hestia_earth/models/hestia/organicCarbonPerM3Soil.py,sha256=pdv5V-ojcfhlGzPwRS9s-vEnxiHZQPZP-ESVcz2pt0g,1945
214
+ hestia_earth/models/hestia/organicMatterPerKgSoil.py,sha256=fJpFVkpuCjnrBhgV0RtwKqQHvAJWWtZO9xtmnJnl8O4,1945
215
+ hestia_earth/models/hestia/organicMatterPerM3Soil.py,sha256=FTNc0FKnWt91BvbsIrBx_0SoGfuqnAC0AlTUL5RvzZ8,1945
216
+ hestia_earth/models/hestia/pastureGrass.py,sha256=2k3wvHDozW4cHW5JpmRvMOitA1x-80OIhRHhnRC1e0s,1275
217
+ hestia_earth/models/hestia/pastureSystem.py,sha256=Cremfv1q55pX1U1FYNvLz8gvZ-DX33o4P_i4VEfJsKo,2573
218
+ hestia_earth/models/hestia/potentialEvapotranspirationAnnual.py,sha256=FTMY7fjTg1Z4owSoXrxDKpWaIpVUm5HQ47jz4EdcQqU,2011
219
+ hestia_earth/models/hestia/potentialEvapotranspirationMonthly.py,sha256=UCjpq7pqkCYrrFoPSZKq2Pqt3t9OhYfcj-8dIm0Ta_M,1890
220
+ hestia_earth/models/hestia/precipitationAnnual.py,sha256=ypAkk627MeiJGi_qAa03m57J17wndhCkzpIlcqnz0H8,1969
221
+ hestia_earth/models/hestia/precipitationMonthly.py,sha256=C4gAj5CwOdjbGIEnjVtsx7JTOoWrmlOEhcVfz1SQB84,1848
222
+ hestia_earth/models/hestia/rainfallAnnual.py,sha256=AqpePlWUuBihnH30QRaR97JcAs3mypCW_rrgS9uduQI,1954
223
+ hestia_earth/models/hestia/rainfallMonthly.py,sha256=ZO9VQnAI05dx4jsxbr0RjQ6pwH19TQUxVs4I8QCdxOw,1833
224
+ hestia_earth/models/hestia/readyToCookWeightPerHead.py,sha256=LhxRGUWgABI33IQTJHbp42NgFQN5ujZqa0Zb9jQsZro,2962
225
+ hestia_earth/models/hestia/residueBurnt.py,sha256=lVJNeLwsq-43_-n7m-3QqE-IkUBh2K7sD6lrPMM7JaI,2113
226
+ hestia_earth/models/hestia/residueIncorporated.py,sha256=fMlZHIrsy5JQCQ-a0sMucU9iCUrZv8jhDgwALxU0GPw,2770
227
+ hestia_earth/models/hestia/residueLeftOnField.py,sha256=EZoPlDhh1aNJvPT52Bvro6xcHwHctmID1sUvJfuzN1M,2182
228
+ hestia_earth/models/hestia/residueRemoved.py,sha256=2I4wTJJcORrhkWiRJOzjwxRMIn3Jjeggh1dhFC2CK4Y,4969
217
229
  hestia_earth/models/hestia/resourceUse_utils.py,sha256=SYMN-40NW76LaVo2jVdnCbTgYN03mmSqvYRzgDzm5jI,8564
218
- hestia_earth/models/hestia/seed_emissions.py,sha256=2LWKU0k-cZMBs2kQFv-dtfJB0jM0eqgz6R2kSXad_u0,11021
219
- hestia_earth/models/hestia/utils.py,sha256=TX53XPLeu3XgBcy9XN8xDD3J7y7fjmVweRNKaEZ-qzE,1455
230
+ hestia_earth/models/hestia/salineWater.py,sha256=NB9nu1oiqbUd0k-9chBsY92vOsg5mDrSf1OCR3tlA6k,1263
231
+ hestia_earth/models/hestia/seed_emissions.py,sha256=Mn1iEaLrl6gz66Pqd7sD3JhR8UOrGwXLdg641nzUME0,11048
232
+ hestia_earth/models/hestia/soilMeasurement.py,sha256=lVmVHL9R0hR7FeXOktHhjrIBHFlkk9yPdGbr8SLJwXI,7081
233
+ hestia_earth/models/hestia/stockingDensityAnimalHousingAverage.py,sha256=Ce0RZmAADDtGksfXzhX4lh-jdAs3WlCQqy2FAF3xFjo,1850
234
+ hestia_earth/models/hestia/temperatureAnnual.py,sha256=IhMoO-SkSp1JBxgu9bSr1OCtr7QQlZsoCXqhsWeEprs,1963
235
+ hestia_earth/models/hestia/temperatureMonthly.py,sha256=sY4MrjCTm7X3BoDTUC0ZkxD7CWxvl51JW2UxDykCKzg,1842
236
+ hestia_earth/models/hestia/totalNitrogenPerKgSoil.py,sha256=iy3JNCAqTlGA1csNnXjI4bdJ6HOkuJNYQPaljtr9nNs,1945
237
+ hestia_earth/models/hestia/unknownPreSeasonWaterRegime.py,sha256=Ix7Eg4NVW1iKvPKIOqOdSkahn7BlJNtPM8nlrogrfcM,1460
238
+ hestia_earth/models/hestia/utils.py,sha256=oTdk7VKuaxDTKj9Cz4t3qp3RZ5wSt3bZXpPiImgIIto,4768
239
+ hestia_earth/models/hestia/waterDepth.py,sha256=gnvd1kwbTCt9HjgxlKzuCGkPi8Sq7nQiHFbk8xBAZV0,1251
240
+ hestia_earth/models/hestia/waterSalinity.py,sha256=3AkdcmyKxZZKDGXVXeLalqzbX2KuZzIsGeQuxuT7-r0,2657
241
+ hestia_earth/models/hestia/feedConversionRatio/__init__.py,sha256=G4T1jfN1OqERsywiWyrBiFneUZs5QXpChz7dgGfg9Ko,2512
242
+ hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioCarbon.py,sha256=21_PXoKXJCxPOPOspKqqq-E7dh-2tVQnR4cnGZ9JGj8,1992
243
+ hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioDryMatter.py,sha256=zf-v-cAPLpSe7sr1auzUUXkjXwpXRTVvsCrzbZrwBI8,2388
244
+ hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioEnergy.py,sha256=C6ZyjZDUHU4UlIr6tlvHoCQfsC5jRQ87U7stSn95jzA,1984
245
+ hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioFedWeight.py,sha256=7Dss1AIbG7GimQ3-Ecv2wsx1PrblZhHFYhMHWoyvPc4,2140
246
+ hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioNitrogen.py,sha256=RV7lLd4PiFRCkH83-DvuZKnOCA9bXbYOcDHea8Wz4LY,2603
220
247
  hestia_earth/models/impact_assessment/__init__.py,sha256=B6UO8z3NR6JjIycyT7adZbnNKcBC49qnF2bOhVcufy4,355
221
248
  hestia_earth/models/impact_assessment/allocationMethod.py,sha256=x52IjSmyu8vSyr9_IfMzF00w_DcQyav4WBqnHOdkJHA,1090
222
- hestia_earth/models/impact_assessment/emissions.py,sha256=ywx2Gj8FgPnP6BsvmfEOiclDN0DqwWCq-NoKtP11Df0,3886
249
+ hestia_earth/models/impact_assessment/emissions.py,sha256=6oimd954XEcIw5A-MZAQksrNd0v81MQ_z97KQjDM_mA,3859
223
250
  hestia_earth/models/impact_assessment/irrigated.py,sha256=syD3r4wykOHnC9PC-J67QXlWHnJ6K6MjTC2InccWxXI,674
224
251
  hestia_earth/models/impact_assessment/organic.py,sha256=FtYco3NwhSJEsMjjK_JDRyxwuSoKH_8y17x-RBl3exM,645
225
252
  hestia_earth/models/impact_assessment/post_checks/__init__.py,sha256=rkHO4Z3Zz8LCT1OoDgHmUuGURvXsdzh2nQqgU2M4tjU,304
@@ -229,8 +256,8 @@ hestia_earth/models/impact_assessment/pre_checks/__init__.py,sha256=rkHO4Z3Zz8LC
229
256
  hestia_earth/models/impact_assessment/pre_checks/cycle.py,sha256=TfX41aYPbA9dXEKIoJfH5X2Rwrr-Ni_-m4yGW8HixmA,812
230
257
  hestia_earth/models/impact_assessment/pre_checks/site.py,sha256=YEx5-HS_PadrIR-YzA4Sg5UlqTeqAkikyOS6iJ2U0dU,667
231
258
  hestia_earth/models/impact_assessment/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
232
- hestia_earth/models/impact_assessment/product/economicValueShare.py,sha256=IYAqT3F2EfteyIC2uSU2WCaXTuneSfgNpk4Lef0-kk8,1307
233
- hestia_earth/models/impact_assessment/product/value.py,sha256=ydR0EodgS1WIShDpLrBB5LZKEyeX4uS8G4xNPLB1up4,1209
259
+ hestia_earth/models/impact_assessment/product/economicValueShare.py,sha256=ssyuAUWpzH1DVrbb0SvMtznWv9Z33_qC2epGrb2hfRU,1280
260
+ hestia_earth/models/impact_assessment/product/value.py,sha256=NaqKctYbXtbxLqJ8DougTDEDygDVvMZpwc9cLPD6TXE,1182
234
261
  hestia_earth/models/ipcc2006/__init__.py,sha256=ReUFPLqIyp16QEOGaiHmz41QbuwYBQYDKVtw6KuRDIA,409
235
262
  hestia_earth/models/ipcc2006/aboveGroundCropResidueRemoved.py,sha256=6FDgMH5eiO1mEn20oerYpWty6t9058JS3MCdfVmeY_o,2714
236
263
  hestia_earth/models/ipcc2006/aboveGroundCropResidueTotal.py,sha256=vD_kpvOJmjTOjDEnlqSYBSZxjuPGvzpmCr0JIC84GKE,3431
@@ -251,22 +278,22 @@ hestia_earth/models/ipcc2013ExcludingFeedbacks/gwp100.py,sha256=2fFEHTXxel_XPiMX
251
278
  hestia_earth/models/ipcc2013IncludingFeedbacks/__init__.py,sha256=VJ16KIGQQHybzZiTvu3mpZy_3j0xcd06RHHCfPrCMgU,427
252
279
  hestia_earth/models/ipcc2013IncludingFeedbacks/gwp100.py,sha256=HR2vnOc64mg_fxe9m5NmqxBZ8-aFuKb44gmItyuRL1s,1041
253
280
  hestia_earth/models/ipcc2019/__init__.py,sha256=LdRpu8KbEc-MroIwXfKDjfj-xbgmfUYgctjKVvtpRfQ,409
254
- hestia_earth/models/ipcc2019/aboveGroundBiomass.py,sha256=81K_EUVsGgT9XDu4i4ZZZM4jnXSuBw3hcZXY6WxGbzs,20434
281
+ hestia_earth/models/ipcc2019/aboveGroundBiomass.py,sha256=odf2zQni0zgFJnFXkp9USVi4A70Me_IMUfPPpnFD25w,20441
255
282
  hestia_earth/models/ipcc2019/aboveGroundCropResidueTotal.py,sha256=lT2QVV5c2LvQqZRfPEvFT_bMTayMXgIsFLnx8I6iYzw,3089
256
- hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=4wdz5HZzG2JSTrNHLvsN9gRWEyAtQWJH6Rymu7WLvR4,19439
283
+ hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=z4Z0gDCFV9p50hMpLf7WrA8aw4kA13xAFPUxvLBVZjs,19446
257
284
  hestia_earth/models/ipcc2019/belowGroundCropResidue.py,sha256=7AFU2Q0qPAvv6uEKWByS38jl77FvjTPbGm2GQ53waGg,3499
258
- hestia_earth/models/ipcc2019/biomass_utils.py,sha256=R7t-YWq5K-AMHihlWh8hWHfhaoGZMmDf8SNFM6-wGdU,15895
285
+ hestia_earth/models/ipcc2019/biomass_utils.py,sha256=bPvge2EOVACkxJlxMoFhlRMRQHdUEiBqaFX_aEmyyC0,15812
259
286
  hestia_earth/models/ipcc2019/carbonContent.py,sha256=tlQvu4Auhpjmaz7XrZz86xwxVrJhsYYf8DFA_aQeev4,7255
260
287
  hestia_earth/models/ipcc2019/ch4ToAirAquacultureSystems.py,sha256=q6yyEiYQhHJ2VyQy2Fa84cuTl1D8bjBXOK3UpaRuo20,3196
261
- hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=k6UPhbITdsJEZOodxtigqZnGaBUJSe4holrEWUS_V3U,12209
288
+ hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=8w78X5nJkPmoXuTy1WMxSGj-D5ubajNeqnyBknSqEtA,12477
262
289
  hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=UTTx7US4mGTGW9dX6OAgbhDSwtHfsbWJ5d0iF0TGMpE,6564
263
- hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py,sha256=sn2IGCNNBeL3Mtdgc18jheHrdbJEThI44V_bh055Uyw,7335
264
- hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py,sha256=s0zViR8Ab_b_sMDwMzopN4SAWdm6wpzGs-Hf_TtWaiw,6641
265
- hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py,sha256=trinj_A8H6H_zMaQMjYXcBePvjDKXhbqmIpeet0lW6g,6691
266
- hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py,sha256=LVX0E_Vs-9z-UBzcpywl3pEaJQs6iJ8BtcN09D-odlY,57967
290
+ hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py,sha256=iPkFNesDum7H0zoQ2SZGwi8RmKpHF8sVMnAN65r_iQo,10155
291
+ hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py,sha256=mZdDEk1ViC8D_6-CsaeCl5lKRntX0s-r8J-N5Lo4--c,6670
292
+ hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py,sha256=Uu3SnbZvORYlfwi9RdaKLJ0O2G65tpMO-BMTiE19Rd0,6718
293
+ hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py,sha256=pKDZptqIldIO888Vvyh4aQKwwMvlwLDC6a1O-WatCws,58377
267
294
  hestia_earth/models/ipcc2019/co2ToAirLimeHydrolysis.py,sha256=7z0zdqiiWQwkyJCgSNMoK2mft3cJkTRlqwKrMuSKdWI,2454
268
- hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py,sha256=LY-ZT7Jg3HUxFWpWExqRO2SctcXovrYRbB5VyTHUW4o,6703
269
- hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py,sha256=Ofld5SuRKndcKB3FFFoUdzSgNq-gc4kmiNyyrPKQ3Io,3580
295
+ hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py,sha256=NqoHf9OnMAHdreCBBkY4IsweUCI0n5GvHUErO1AXEGQ,6730
296
+ hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py,sha256=3TXZa2zuj-Df54qAPz3CUcml5T3MpAvGH8vDPIGha_c,3738
270
297
  hestia_earth/models/ipcc2019/croppingDuration.py,sha256=wgXzEHsl2demqzKnZK6Ak7UKUu_CVU41ZsmwxG2uiOg,3055
271
298
  hestia_earth/models/ipcc2019/ligninContent.py,sha256=Qh-UH4lv1TIf7wWlbAPwIZZHxzbbmQgND3m15pt5Si8,7285
272
299
  hestia_earth/models/ipcc2019/n2OToAirCropResidueDecompositionDirect.py,sha256=Fand7NbT27unwgFTxi_9NxT024s63vQ7U6-tk9yp3d8,3990
@@ -284,25 +311,25 @@ hestia_earth/models/ipcc2019/no3ToGroundwaterCropResidueDecomposition.py,sha256=
284
311
  hestia_earth/models/ipcc2019/no3ToGroundwaterExcreta.py,sha256=07Eb9XmziJjYymyXQowESZklbKbqvjP_ookZKi4_GX0,4517
285
312
  hestia_earth/models/ipcc2019/no3ToGroundwaterInorganicFertiliser.py,sha256=eyPfyIi8EqigOTsEA0BSyoUePyy_AjMlQNJ6Z8yyJ_Q,3413
286
313
  hestia_earth/models/ipcc2019/no3ToGroundwaterOrganicFertiliser.py,sha256=px2SN-uaus2cftXzlsYCUAxLuon6BnDXmaFI9xhQrgU,3347
287
- hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=Zx2-96RKELrO-zTPz_d4EfVAyHXvTB-QVUGfdpi8ozw,34981
314
+ hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=vvq-GAzFtPw9BTKs7RnwRJwzZJDmU3vPVAzIC7WxrhM,34600
288
315
  hestia_earth/models/ipcc2019/noxToAirInorganicFertiliser.py,sha256=fmmFgjtvOD2TrrLY03jYly_KvDnCsAXqhL_tmZQQt-A,4480
289
316
  hestia_earth/models/ipcc2019/noxToAirOrganicFertiliser.py,sha256=9dx_MRTwJGxJRq6mj2EJQMdQ2w6j7lw0fQk0If_cIGc,4152
290
317
  hestia_earth/models/ipcc2019/organicCarbonPerHa.py,sha256=D8Lph5clGjXb5F7sk-jlnqE30C2lokhqndpA0hUMwTk,7791
291
- hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1.py,sha256=Q_O6_ueMww9hWshpeoInQHp5n4HzGbMxhuyMfhnewDA,75622
292
- hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py,sha256=TJ9kg2OdN0AJsUjgwD85gzi4CX5YQpyLYcu89bdf3yk,63551
293
- hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=FFcjdkYq5NJwAu4bWZJUao4MoDHvgbXmXCnUNKD-a3w,9842
318
+ hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1.py,sha256=8g1kJbxCnXAOFUdbB9zzMsuDOzMgvVy7A5MwtJvGUaY,78547
319
+ hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py,sha256=UVf85mcq-cNqkNEldg7h6RY5qa0RAtlXVKeb-GaFmAA,68913
320
+ hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=s_F3fyHhPuqragrHxluqdK0GCGnEor17jGlGKue0UsA,9867
294
321
  hestia_earth/models/ipcc2019/pastureGrass.py,sha256=_EwlAooSfrkcSy4rl_rk4PpeX1pcIiQcb7HE2lQkyn8,9847
295
322
  hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=KvjIQ3xwbq1rk3thHlkGgQaWKgh0hCkNnzC53JW9634,14178
296
323
  hestia_earth/models/ipcc2019/utils.py,sha256=MSDMu15D9DnilFUgi4_6jYXC0FaKso3OODauGTMB6hs,6229
297
324
  hestia_earth/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
298
- hestia_earth/models/ipcc2019/animal/fatContent.py,sha256=V-NO5FGxYc2VglQNcnA3zaFqnOivCSy8iWrV4DCfNg0,992
325
+ hestia_earth/models/ipcc2019/animal/fatContent.py,sha256=rnFergteN5rwH9KLyVQR7iolh5Onj2gF785DnLIbIHI,994
299
326
  hestia_earth/models/ipcc2019/animal/hoursWorkedPerDay.py,sha256=BBByUzgM7OymWnuU-IFMD-3cp_KXSNqXtoO-QdVjroU,965
300
327
  hestia_earth/models/ipcc2019/animal/liveweightGain.py,sha256=TXEKI0PZFDj7zlg_pmgfwhRT0LS1x1hEswulQYD7Dkg,956
301
328
  hestia_earth/models/ipcc2019/animal/liveweightPerHead.py,sha256=86HRowJnTbwHKDKU0rGaco2-8B1wIQ4nIe_KNqzdXsk,965
302
- hestia_earth/models/ipcc2019/animal/milkYieldPerAnimal.py,sha256=fD4cqdzKkj6Qy9lcVwC-MVOIeJZtWxNAj2-53VghG_w,2600
329
+ hestia_earth/models/ipcc2019/animal/milkYieldPerAnimal.py,sha256=p7o3qvQbgq3QWqp4rW8NoyINkSFMQ9QOn9auf7e6gww,2602
303
330
  hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=lT74m-NljewFYdQJIe4he2uYJ9rWWSZSm1MCUrxj0gQ,11742
304
331
  hestia_earth/models/ipcc2019/animal/pregnancyRateTotal.py,sha256=zib2AW3WJTL4NRYN4a0rRiqSJ5PZLRtwDYia7gigQFY,968
305
- hestia_earth/models/ipcc2019/animal/trueProteinContent.py,sha256=-_f1CnPQVLCiuENdfocd4bAtAuQD3AA30ee0f-QRlhU,1008
332
+ hestia_earth/models/ipcc2019/animal/trueProteinContent.py,sha256=fgV0u4sEtLmCk-vUHF6mM03uy1w9nVPDzmxSkLXgPBo,1010
306
333
  hestia_earth/models/ipcc2019/animal/utils.py,sha256=mYnSFOU7WcuJugTUKRV4mXzduZk_Q9MjDMS6o3S1tQM,4361
307
334
  hestia_earth/models/ipcc2019/animal/weightAtMaturity.py,sha256=bdNunYwW3D6i81AkWQ-vtv6PObv6V_oZdVvqzk4Caug,2869
308
335
  hestia_earth/models/ipcc2021/__init__.py,sha256=VTgGFKhwMmk_nuI1RRq0in27fHYVPBonlXlPK00K8no,409
@@ -310,12 +337,11 @@ hestia_earth/models/ipcc2021/gwp100.py,sha256=EQ-OBQrahSgMBFtGregiNlbm3DHVwr67o4
310
337
  hestia_earth/models/jarvisAndPain1994/__init__.py,sha256=ercUwy29sV7oPIESj8UjsGB5lqiBCss9OZcbjxeeG8E,418
311
338
  hestia_earth/models/jarvisAndPain1994/n2ToAirExcreta.py,sha256=003gtGusD1MFJqb2iRck4d54fw25-1h_O2Zoy8mFHrc,1452
312
339
  hestia_earth/models/koble2014/__init__.py,sha256=jRciLONEhGHtMLu2rlWXEEVwcJqA-URsfH1cCt-Qti4,410
313
- hestia_earth/models/koble2014/aboveGroundCropResidue.py,sha256=6a0tyfj8pIrCzlU_Z8fnvO5VdxHsdYHekwnnHgtRolk,5882
314
- hestia_earth/models/koble2014/cropResidueManagement.py,sha256=XZ3Ej2h1lT3s5vThqrKFKpw8_xn2Ga_nK2jEY41Eeac,2702
315
- hestia_earth/models/koble2014/residueBurnt.py,sha256=7iro5OFoBnZaKXyA7sYKYOLnfniFymnweNtCD-VJ9gs,2025
340
+ hestia_earth/models/koble2014/cropResidueManagement.py,sha256=WvO_eqiNO0jdWITEkjHPtrndjCnrDb9BXEbkwHVpr6k,2702
341
+ hestia_earth/models/koble2014/residueBurnt.py,sha256=vw1PqppcrisqRmEQTaPVQ3RNkfZbrYWEK2AsXcPG0F4,2025
316
342
  hestia_earth/models/koble2014/residueLeftOnField.py,sha256=BENMR_BUk0nYfe1YjTSz7y9hP9chZisl1Je1pP7KEyA,382
317
- hestia_earth/models/koble2014/residueRemoved.py,sha256=p33EsXFv2PSdXGNvm40UCboCLhgfJ42ZM6b6u-zBBVg,1799
318
- hestia_earth/models/koble2014/utils.py,sha256=yGFRVFKPEhDKZu7pYFQXYkUPJdlMNNX4_JPgmKwrwSA,2941
343
+ hestia_earth/models/koble2014/residueRemoved.py,sha256=P9JkS4sVHvX_4O2K3ggXPhh0YUR_eY64SETzJoVSRrY,1799
344
+ hestia_earth/models/koble2014/utils.py,sha256=zQslKDPWq9MPfdstI29XLTlmlPDY8Qjpi8aLCILSN5E,2934
319
345
  hestia_earth/models/lcImpactAllEffects100Years/__init__.py,sha256=Z15q1K369kIkH4JC3X2mN0PdNHhUn6dscug6g4DvAxc,427
320
346
  hestia_earth/models/lcImpactAllEffects100Years/damageToFreshwaterEcosystemsClimateChange.py,sha256=BrkLQgt-BuQUTdA_Uzn46RGC50BQfsD9uLLP9MRpDAQ,1100
321
347
  hestia_earth/models/lcImpactAllEffects100Years/damageToFreshwaterEcosystemsFreshwaterEcotoxicity.py,sha256=o_eE5GmSEzYOrT1uec_C6oP7vwzC-0tvah1tkV1jNeE,959
@@ -412,14 +438,14 @@ hestia_earth/models/linkedImpactAssessment/utils.py,sha256=S1zlux02gU2Lajrtoq-zQ
412
438
  hestia_earth/models/mocking/__init__.py,sha256=9VX50c-grz-snfd-7MBS0KfF7AadtbKuj7kK6PqtsgE,687
413
439
  hestia_earth/models/mocking/build_mock_search.py,sha256=p15ccEUmkmLp1RiGNznxMz3OFHbI8P1-29ExuohiQN8,1355
414
440
  hestia_earth/models/mocking/mock_search.py,sha256=ccFe_WrI73JElFmxp4hPNLCX7eeU--lBC1JFR901KJY,1069
415
- hestia_earth/models/mocking/search-results.json,sha256=lFajXvkFfmZgA1_Twixexq7Sa5xwTTEGGxKNWfswX9k,162167
441
+ hestia_earth/models/mocking/search-results.json,sha256=VS3ZVdv3Kzz2SBSU7MQoEbdWYct78mP0sm7VyizJSnc,162733
416
442
  hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
417
443
  hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=Qt-mel4dkhK6N5uUOutNOinCTFjbjtGzITaaI0LvYc4,2396
418
444
  hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=JT0RybbvWVlo01FO8K0Yj41HrEaJT3Kj1xfayr2X-xw,2315
419
445
  hestia_earth/models/pooreNemecek2018/ch4ToAirAquacultureSystems.py,sha256=k_dB5iwOg6swQWb4fvfMCZ1dm1PnRff8Rpm1aclKOqA,6517
420
- hestia_earth/models/pooreNemecek2018/excretaKgN.py,sha256=8c7VdJmRbZGavDxupglESgp7SnjAEruMlB0KRbVisC4,5859
446
+ hestia_earth/models/pooreNemecek2018/excretaKgN.py,sha256=RstXknuNCB-BeCOIV0LHf3QRwOG2gQlxLzaGXWKG4hc,5858
421
447
  hestia_earth/models/pooreNemecek2018/excretaKgVs.py,sha256=eIiiZPWjLya0ZOqiYXFKH10K693cAKFygP2p-WPcLyg,9278
422
- hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py,sha256=rBWK_SzR9siorMxNORqB_BGQEadjyvzSh_SKOqRwFV0,3947
448
+ hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py,sha256=QWWS9P_q_mPruvCYm4PJ0PNcYJJ8QS3WEV7HN-6MneY,3920
423
449
  hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py,sha256=gSUzPuzzLwQsBiX_Tgx6mWJ4pEB5qhlKoOtaEdmDGQ4,3431
424
450
  hestia_earth/models/pooreNemecek2018/longFallowDuration.py,sha256=Wdm6QyOttCFP9Y3OjbaYrvdMmivOmMIT-m5Eg9SM9rY,1511
425
451
  hestia_earth/models/pooreNemecek2018/n2OToAirAquacultureSystemsDirect.py,sha256=n3G4p1ed7-45Ts09kbGGyJ4wea4dp8cY4lTm_9HAsP8,2375
@@ -438,7 +464,7 @@ hestia_earth/models/pooreNemecek2018/plantationLifespan.py,sha256=FudC-csC1IkiFO
438
464
  hestia_earth/models/pooreNemecek2018/plantationProductiveLifespan.py,sha256=Q54woX67eUab0qEEAuW2naFGhnVPJHrMas3bG92KNeg,1740
439
465
  hestia_earth/models/pooreNemecek2018/rotationDuration.py,sha256=j5hW_NEKYQbeMcdsqp2nQIDXCnUdZIKURzAmPCiegQk,1525
440
466
  hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py,sha256=Vx4T5qTM2GubwR-gRa4JEhkVi6LWYkt3jWN7VB0lHgY,2511
441
- hestia_earth/models/pooreNemecek2018/utils.py,sha256=S01BuGIgUvb0l38ZF0m8SguPYWN3vgsniY-sFvKrw8I,3499
467
+ hestia_earth/models/pooreNemecek2018/utils.py,sha256=q3vVRch8waL8EzE-q0WtDRxsrbKhJfvx0olznNtTwcs,3790
442
468
  hestia_earth/models/poschEtAl2008/__init__.py,sha256=nvyyGglxCTV4PpxcOjY7jJb0v8Bjzj435Zt1j6VcryM,414
443
469
  hestia_earth/models/poschEtAl2008/terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=1pd7RX4Q0ilASi9k3l1zNnz3bUg2MakR8luJQVxYxKA,1418
444
470
  hestia_earth/models/poschEtAl2008/terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=z6i-wYpPrchNmivb4Cvr9wOsc4WvDRQadORFOq_YiYM,1420
@@ -504,38 +530,14 @@ hestia_earth/models/schererPfister2015/pToGroundwaterSoilFlux.py,sha256=tH-jyd8P
504
530
  hestia_earth/models/schererPfister2015/pToSurfaceWaterSoilFlux.py,sha256=evd2jmFZ9lq-uwXiBTgP5wJ-KTjNBVztjSp8eW9-8qg,2947
505
531
  hestia_earth/models/schererPfister2015/utils.py,sha256=prdPZKnxJAIqBmHN6FCmfvRU4rLSTx2bvVGSMzoM5NY,3235
506
532
  hestia_earth/models/schmidt2007/__init__.py,sha256=xheSN6LOGXpWx7Hnv83onhe60Xk1_jk1PJg1nH_aZOQ,412
507
- hestia_earth/models/schmidt2007/ch4ToAirWasteTreatment.py,sha256=-N5uLvVHlA2djOs_lwR_8RmbeCfkPw5p3vmbqG2kzkI,1474
508
- hestia_earth/models/schmidt2007/h2SToAirWasteTreatment.py,sha256=f8a5ZRuCltpO8GWwQ0l1laWrw2yPGqOPaq8j6ZOJFTE,1474
509
- hestia_earth/models/schmidt2007/n2OToAirWasteTreatmentDirect.py,sha256=3i7tgar2DODXzug36HBAbbx94ybst15Efode7AzvVEs,1480
510
- hestia_earth/models/schmidt2007/nh3ToAirWasteTreatment.py,sha256=yGrw7LHTrgRU_LyUsdl96TO6omEZju7JaBbW_A8ufX4,1474
533
+ hestia_earth/models/schmidt2007/ch4ToAirWasteTreatment.py,sha256=YADAFxJl0UB_UCxr9mtrwMb4A749nh5hElAoLhu1Itg,1351
534
+ hestia_earth/models/schmidt2007/h2SToAirWasteTreatment.py,sha256=Ma20xG4Crk7bp12FvpDQkyVwXyikFz9Bnn0pFoWSu64,1351
535
+ hestia_earth/models/schmidt2007/n2OToAirWasteTreatmentDirect.py,sha256=a0uv1788OxF6Cw01y7SWywS9WevI6aimhPR3RETuXjI,1357
536
+ hestia_earth/models/schmidt2007/nh3ToAirWasteTreatment.py,sha256=UOOcEOZsW9-UOlS8pcgBkSl1V1kFbURn1hNx20Ubtq0,1351
511
537
  hestia_earth/models/schmidt2007/utils.py,sha256=tbTFg5TXAyS12JCa-OXQg37M1YymHxKW8Gok_SslqAM,980
512
538
  hestia_earth/models/site/__init__.py,sha256=aVuLLhq0OQVm-_MZoq4JAKMidqexUWJBg_7mmojmDzc,405
513
- hestia_earth/models/site/brackishWater.py,sha256=vLEhIZv5PUKwzwvIuYrWi7K---fq7ZXn0oJvfDZdMs4,1278
514
- hestia_earth/models/site/cationExchangeCapacityPerKgSoil.py,sha256=0eH4A-tXJ0hvIkiYXWxlx8TfrdbIKUGYUDk97-yQJgg,3653
515
539
  hestia_earth/models/site/defaultMethodClassification.py,sha256=1EIWC99Fegu7B8GFlpysvWhuXaLDmABom3wDelIYUjc,1068
516
540
  hestia_earth/models/site/defaultMethodClassificationDescription.py,sha256=4YXf8grO9Zf5N7bPomKAqXKPOa7JhmLCXm6sO53I4is,1213
517
- hestia_earth/models/site/flowingWater.py,sha256=vZz4WRH6KEzf0OC76e283ICNI0DvW_MpQOD0G7zNz9I,1596
518
- hestia_earth/models/site/freshWater.py,sha256=FXs3Vt8V4e-wn325_dwSTOKlZtn5ksNUpvYGDeLJShY,1255
519
- hestia_earth/models/site/management.py,sha256=7uVl4v1TRbOwAM2e6ZMKspvJHZ63a6JwqCXI2X9GrvI,14751
520
- hestia_earth/models/site/netPrimaryProduction.py,sha256=UIIQkYd911qVzrWjxBLrC37e-RARIVgDwLdARY9BuLw,1849
521
- hestia_earth/models/site/organicCarbonPerHa.py,sha256=F2ShinHf0m9qKa1nCYBspsDkRY6jzOl0wM8mSDre22I,14916
522
- hestia_earth/models/site/organicCarbonPerKgSoil.py,sha256=t--wAshiAKS-JvEKhLFRadGvgSBv5NFZ68jdyms_wh4,1945
523
- hestia_earth/models/site/organicCarbonPerM3Soil.py,sha256=pdv5V-ojcfhlGzPwRS9s-vEnxiHZQPZP-ESVcz2pt0g,1945
524
- hestia_earth/models/site/organicMatterPerKgSoil.py,sha256=fJpFVkpuCjnrBhgV0RtwKqQHvAJWWtZO9xtmnJnl8O4,1945
525
- hestia_earth/models/site/organicMatterPerM3Soil.py,sha256=FTNc0FKnWt91BvbsIrBx_0SoGfuqnAC0AlTUL5RvzZ8,1945
526
- hestia_earth/models/site/potentialEvapotranspirationAnnual.py,sha256=uz_vTS_f6P8UE309SeCLQkH5kZV0D5PY37lLw75W6OY,2006
527
- hestia_earth/models/site/potentialEvapotranspirationMonthly.py,sha256=l3Wg6RdF5M8wQEimRM2p2lV4hr-g0TxBxfDtr-Em_qg,1885
528
- hestia_earth/models/site/precipitationAnnual.py,sha256=VQFRqm1tK2rpnBRbbxlHXdrf6p2vjNb6cSaBjr-zDcU,1964
529
- hestia_earth/models/site/precipitationMonthly.py,sha256=S-xVIeoIFJ-tFS9fkPm7TbKlLy0T5rsutubyO_iUeOE,1843
530
- hestia_earth/models/site/rainfallAnnual.py,sha256=4aEqmWUrRuK3n2fVS-2BPaj-fA3ECOs59IXurwAXsUk,1949
531
- hestia_earth/models/site/rainfallMonthly.py,sha256=7ZA3nuh6cm5a3nkbkAw4rnL2wRh6rcx0WZl0FD8eDmM,1828
532
- hestia_earth/models/site/salineWater.py,sha256=wO_Dyufqni66qSCpunrJUr0ou45QrcpZc8-GtZDH9VU,1256
533
- hestia_earth/models/site/soilMeasurement.py,sha256=GyhNQst3v7k_dsbnSu4ilzrTqSTBysE1aWjJUkFkmDU,7086
534
- hestia_earth/models/site/temperatureAnnual.py,sha256=WpcjiRYsbQBMleIYDHKrZ_p0cOPzR1qMRvVospIcdIA,1958
535
- hestia_earth/models/site/temperatureMonthly.py,sha256=1p058KGoyrvsx3fOoPnE1C6mA6S3p4RkShaYiDcAtRY,1837
536
- hestia_earth/models/site/totalNitrogenPerKgSoil.py,sha256=8ERrTZpN_yCRUyFg_EYaX4abE9jLcyX3lx3MO4Bi6CE,1938
537
- hestia_earth/models/site/utils.py,sha256=b5y6jNmTclC1Vs8FzwW22u3sVyFsvs5if3NJzvLZQLs,3176
538
- hestia_earth/models/site/waterDepth.py,sha256=jlphpSAHp-xBlTQsl_j_3xEH50HD7YrvvB7HHuSww-M,1244
539
541
  hestia_earth/models/site/measurement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
540
542
  hestia_earth/models/site/measurement/value.py,sha256=D09-nYYqAEQEaiaAnYtZQGp-JNP0CVFapDoIFj7iOTA,1484
541
543
  hestia_earth/models/site/post_checks/__init__.py,sha256=wgAeEJ-1oeUZP5yS8_7n5PclohdQeP57xnHnXmmYCaI,310
@@ -545,7 +547,7 @@ hestia_earth/models/site/pre_checks/__init__.py,sha256=Bt14IKDWnpxjeoVn8aXMfOLOR
545
547
  hestia_earth/models/site/pre_checks/cache_geospatialDatabase.py,sha256=NK75zG9At5_ClRQv7lDI2iVq8_prKslCTzXOb0F-1W8,5615
546
548
  hestia_earth/models/site/pre_checks/cache_sources.py,sha256=VrIprhnHhVFJIifXwDf3c41KEAlgZzg2WnNpGD-V2uc,180
547
549
  hestia_earth/models/site/pre_checks/cache_years.py,sha256=GSMwQ4MdlCbVEEA_Z8onE-bQ7UfohwMd1ctpiNTln5Q,787
548
- hestia_earth/models/site/pre_checks/country.py,sha256=ym10Kwn5-gH7W6CpxkF7pHb-1LGYtfATzs_slmMVKwc,153
550
+ hestia_earth/models/site/pre_checks/country.py,sha256=SDaIOxK1aoJROnOYSCXCr_LI4uR3yS6lBN3vgdL3XTA,224
549
551
  hestia_earth/models/stehfestBouwman2006/__init__.py,sha256=EhvD4NK6oEPevusLb1WdYV3GT_fCtQx4gvdMhK_dEIQ,420
550
552
  hestia_earth/models/stehfestBouwman2006/n2OToAirCropResidueDecompositionDirect.py,sha256=6BDeQUwC2tgvZGB8FbyPVLCDqxH-h1RGM73RXucwkuo,2733
551
553
  hestia_earth/models/stehfestBouwman2006/n2OToAirExcretaDirect.py,sha256=k7LZrHUDzgBNlqBxMhSurDVhAeLdE_ZM9BdoItLqurw,2913
@@ -565,7 +567,7 @@ hestia_earth/models/stehfestBouwman2006GisImplementation/noxToAirOrganicFertilis
565
567
  hestia_earth/models/stehfestBouwman2006GisImplementation/noxToAirSoilFlux_utils.py,sha256=yRsk-WcI13mVz4jerCAxJY91hqNs2JelXhbufP83Km0,3403
566
568
  hestia_earth/models/transformation/__init__.py,sha256=63Y_fXFBn4sX2l7F0hMsWkgIvxk5Tw9XoDBQr6bUBQQ,352
567
569
  hestia_earth/models/transformation/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
568
- hestia_earth/models/transformation/input/excreta.py,sha256=oDqsSOX8YxGrio3fT4x2VGBBAjP6JTkLsja16bpTYbo,4147
570
+ hestia_earth/models/transformation/input/excreta.py,sha256=LwxWzyGR1AyxEbt5s7z4CfdFyX52ft7Yd8xLusMPMak,4147
569
571
  hestia_earth/models/transformation/input/max.py,sha256=vGPUx2HTZ4PDCUTpQ8Rp_xCggLG5hXRLkJXQQYkpzBw,1246
570
572
  hestia_earth/models/transformation/input/min.py,sha256=dAlViQtZYGDVpHceNhGsMw3vVIaCdZvKiJPpCisKSFA,1246
571
573
  hestia_earth/models/transformation/input/properties.py,sha256=C4lgvoIa1YWsarir6PM8O-8rMTKdPKFoIsh2tOfG3po,2074
@@ -577,11 +579,12 @@ hestia_earth/models/transformation/product/excreta.py,sha256=tggXIoUujzu8O949_3K
577
579
  hestia_earth/models/usetoxV2/__init__.py,sha256=pK37V3H-KvYcvRKw4Mv8CWrB2N0LFLzmv0jKLdhGGqs,409
578
580
  hestia_earth/models/usetoxV2/freshwaterEcotoxicityPotentialCtue.py,sha256=pPX8u-Aq6Pg5Y9xw0CS0S2WkAHQpOMl0lL2tLQwwOuU,918
579
581
  hestia_earth/models/utils/__init__.py,sha256=eGcAyjoTta9GiU8Dr2urd12jsTany7dv3v2QMoUK914,6815
580
- hestia_earth/models/utils/aggregated.py,sha256=cTUzS60t44_viF1wMnTTVpFq8-6cKJTQuQXPHGq6RgY,5102
582
+ hestia_earth/models/utils/aggregated.py,sha256=gZLSY9D8MMr3VGZ2sai_5LTxdPMReuW3CXVpjPLS8xk,4807
581
583
  hestia_earth/models/utils/animalProduct.py,sha256=M5IunAKGY6oZv3j1Ascl34ywyeLWApqOIlBzbtlA2FE,721
582
584
  hestia_earth/models/utils/aquacultureManagement.py,sha256=dxrbC1Xf140cohxTbSw6TxLAnAASWTdNZwBBam4yQnw,171
583
585
  hestia_earth/models/utils/array_builders.py,sha256=ko1pDZKaUudZqxOZ99vJamKAdoR6ND4ZmxVrYH6YjPc,19498
584
- hestia_earth/models/utils/blank_node.py,sha256=zO65iYoz4oL2NwZtmP22FnbBfu_tm9zpMTFMWJ8u8fc,53860
586
+ hestia_earth/models/utils/background_emissions.py,sha256=R0tCA63q1_2DaZ87oI7FFjZsxAZ4Zds3Rr4fDf9KhkM,1850
587
+ hestia_earth/models/utils/blank_node.py,sha256=pA3SuViNohbaXpeRMEorTBd25zbWNZLY95vSn5JWvEk,54867
585
588
  hestia_earth/models/utils/cache_sources.py,sha256=MBkrPpjwNiC4ApDjeYVHZjWBbpvAerXRDrMHpjasAZ0,377
586
589
  hestia_earth/models/utils/completeness.py,sha256=iRG4uviOAQQ4T2Nr4LlelPVTS_F1felGZNJYxek_JG8,1239
587
590
  hestia_earth/models/utils/constant.py,sha256=6wLx8xb2R8HtpEpVy5e-PbioOo7QCu2n-W72fs6OvgE,3411
@@ -597,27 +600,27 @@ hestia_earth/models/utils/excretaManagement.py,sha256=U8OeSILHMfCGR5x7Pw8R2tpzCv
597
600
  hestia_earth/models/utils/feedipedia.py,sha256=mfGd3EaTQGh9aZaF9pxVJRH_vLEIqktwbwTKQWHv7hs,3967
598
601
  hestia_earth/models/utils/fertiliser.py,sha256=DBO4OBNgnQJ0fCQMDkIk_ZGZX-uKGaTFZCEXfAnJciY,690
599
602
  hestia_earth/models/utils/fuel.py,sha256=XzOELV3dn506PkMKjFQ_ZKVZInd2lL2x6PKdsa6Po4M,1429
600
- hestia_earth/models/utils/impact_assessment.py,sha256=4dOgonj66gze_187cQwRL21aGUVGJW55mNDvFJfMeMM,8160
603
+ hestia_earth/models/utils/impact_assessment.py,sha256=YeO7Z-9_KYyIsb1JpRJmUBbsik0FcIuLAzafF2v9yQQ,7933
601
604
  hestia_earth/models/utils/indicator.py,sha256=qdXJP9PDQbEzcGYERp3d3exkDGFmgj1-2987Ls6Hums,772
602
605
  hestia_earth/models/utils/inorganicFertiliser.py,sha256=Uxum83qAbwRct3jLn9F12_v09NYhhhT5FTEF6TplneE,1766
603
606
  hestia_earth/models/utils/input.py,sha256=lSGQFmO7yKP962zwIoGd7Unj9YLnXuHFMa_lyK7V6bA,5139
604
607
  hestia_earth/models/utils/landCover.py,sha256=8-nfynzCx9gf9YfhpuoH6Cn4kQwWFpYA5RmoGW-0ETE,300
605
608
  hestia_earth/models/utils/liveAnimal.py,sha256=GnajBPZw5d94raf80KtLloaOqlfqGAPwUtP9bRlGWeE,1754
606
- hestia_earth/models/utils/lookup.py,sha256=xfpdhX7L_LJWkBcC1EOabsGlIeti9zU_SNJC48rJTwI,6007
609
+ hestia_earth/models/utils/lookup.py,sha256=UCkg_MluWfgkznQBCXCZECahGmI7VNszVclLGRoXhlA,6190
607
610
  hestia_earth/models/utils/management.py,sha256=urvoHvTw5wrO12POjGQ50Or25X1Y4Gx26l4fDoVt-Ck,376
608
- hestia_earth/models/utils/measurement.py,sha256=dxaEJu9VtZedk7-BocXTXx6pVNkVoFchawv7SAymMu8,11101
611
+ hestia_earth/models/utils/measurement.py,sha256=CzSLmddbF-YMOn5mF0Y5eT1np5kUCmsSep5HYwyf44c,11093
609
612
  hestia_earth/models/utils/method.py,sha256=ZYN2_Fyeiwr9pmvD84ZPg7ZHBlvaIY2A6XL4F_KByS0,740
610
613
  hestia_earth/models/utils/organicFertiliser.py,sha256=2HY-a0EBzUw4DkEAXClLMXVCEZTKYf0BwFHBo7lQ5Tg,363
611
614
  hestia_earth/models/utils/pesticideAI.py,sha256=_mlhKnA1TxF-x39CPNnOGXk6754SoSQqrkHVH2y6rv8,2038
612
615
  hestia_earth/models/utils/practice.py,sha256=GEu2G2yMPbcIHldOzgv5OFp8bQ1Jt9OFgj0c_0F_kUc,372
613
- hestia_earth/models/utils/product.py,sha256=4WrEBJZT2Vp07A5hsGN6UjQGG9Nf0x-kRpZmGUKe5qg,10089
616
+ hestia_earth/models/utils/product.py,sha256=JsS0ZY7YZQV1jwBm9rr536-ULMS-UGAq3dQS7t4AB9g,10083
614
617
  hestia_earth/models/utils/productivity.py,sha256=rTJX_nemxHpOcPN7jiM2hFHknoLUIW8y-hFxVxIkg70,593
615
618
  hestia_earth/models/utils/property.py,sha256=S3ekpMQdpNJjw_r7jzN4YFfIKINJlsssyfWJKOunSho,5145
616
619
  hestia_earth/models/utils/site.py,sha256=ZYCxaBXZ3Zh4judbzOM_E5SNROiMH-S2LEkkklN5HK4,4041
617
- hestia_earth/models/utils/source.py,sha256=o6PeqftW4EztNf06fKHZIH2Z1bX8DhyoG-LIIWnSHwQ,2369
620
+ hestia_earth/models/utils/source.py,sha256=D_QlW7Ul_NV1iOucMNE3szT64b1RdSdecIEm6OukYhw,2459
618
621
  hestia_earth/models/utils/stats.py,sha256=-0vvhSDAhp4ZYXD1l6sO2hdok8_HgUM6OjCSYGSTHqU,15291
619
622
  hestia_earth/models/utils/temperature.py,sha256=ljlG4-yCgFFb6LRZweb18cZKLrr7K2mqd4E4Hz_D1f8,476
620
- hestia_earth/models/utils/term.py,sha256=KpFVyKlDM7OW-eIWnqPWCQNOWTl3ZzSu15fQcYTsvBs,20766
623
+ hestia_earth/models/utils/term.py,sha256=EJFj7Vt5Yjz1OSYQGXo9sDVrKLVvmYEJVVSg1aCi334,21473
621
624
  hestia_earth/models/utils/time_series.py,sha256=vuv033qUZ1gAw3T3wlLNG7vJmXCCsHEzciYbxw_b_NI,3223
622
625
  hestia_earth/models/utils/transformation.py,sha256=nyT5Mz4_VgFwhkL8JoNX9kxxow0zuxzsYl3W8xOu2p0,370
623
626
  hestia_earth/models/webbEtAl2012AndSintermannEtAl2012/__init__.py,sha256=Niv7ZFMBCwThlbCKGOwA17QdkpOUDFrqrFItGNqnZAA,434
@@ -642,9 +645,9 @@ hestia_earth/orchestrator/strategies/run/always.py,sha256=D0In6_kr28s-fgqspawgvj
642
645
  tests/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
643
646
  tests/models/test_cache_sites.py,sha256=eZkbgAhfA-67GhPgE4lk8byHnYvX2Ate1KPsE6jH1-c,2954
644
647
  tests/models/test_config.py,sha256=w27OA_pk9NuDbxzMD--l72Ea97SL1HS6bos6mOUCy8k,3386
645
- tests/models/test_ecoinventV3.py,sha256=JcNWvup7CpGNNfsI08ikGkyvA2EWOvVxkPFFBE-51m8,2027
646
- tests/models/test_ecoinventV3AndEmberClimate.py,sha256=_EOxdrdavXP6L5_LtvaVbXb_-56UJXSaiPhpGntmwVc,801
647
- tests/models/test_emissionNotRelevant.py,sha256=YXTdRfcdR_JepHuj2P3Y3r0aFMKNOmsXQHY48tmLTQo,1316
648
+ tests/models/test_ecoinventV3.py,sha256=SvBn1ZomoturZhjj4BE2EU46Sq0il-tOJIqutmGadWs,2023
649
+ tests/models/test_ecoinventV3AndEmberClimate.py,sha256=_7sX0s07Xr00uNcVk78L1AdSqI1OpUV3tkkG1hVSY2w,803
650
+ tests/models/test_emissionNotRelevant.py,sha256=TsIV47lpn7joLGx-LlPVqWbshcLf2c6pUvB3FZwLvwY,1023
648
651
  tests/models/agribalyse2016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
649
652
  tests/models/agribalyse2016/test_fuelElectricity.py,sha256=u_wNlqngJc8NELPr16kYsYQ-_2PcL8BnrfJucY7dccU,1353
650
653
  tests/models/agribalyse2016/test_machineryInfrastructureDepreciatedAmountPerCycle.py,sha256=75yJ0yuPbIizpSsHr7CpZnUv01LZbuYsm5s9hE0VL_o,1090
@@ -655,7 +658,7 @@ tests/models/akagiEtAl2011AndIpcc2006/test_nh3ToAirCropResidueBurning.py,sha256=
655
658
  tests/models/akagiEtAl2011AndIpcc2006/test_noxToAirCropResidueBurning.py,sha256=Jy2ltPv7FXOtVahqBR2KjUVsfJMEaIu17leay9FGUfk,1480
656
659
  tests/models/akagiEtAl2011AndIpcc2006/test_utils.py,sha256=sCkqGJU8RGwHaxlwiyx2YtYHsQQVlTo3Z6lkRJjfHiI,941
657
660
  tests/models/aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
658
- tests/models/aware/test_scarcityWeightedWaterUse.py,sha256=JmwOQFxcFm45IKn_aJU1K6o8Cp5w_wllcRDAhwbXMj0,2278
661
+ tests/models/aware/test_scarcityWeightedWaterUse.py,sha256=Tl888UE-v5xQCInOXxn291Tkx3Qyz_bKkd5inVwlDNc,2003
659
662
  tests/models/chaudharyBrooks2018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
660
663
  tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsLandOccupation.py,sha256=zHIig6bQWb9XxAjcS-jRXQZxRfG5DwpTLNk9lCD_KMw,1908
661
664
  tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsLandTransformation.py,sha256=lcyMTaNMbIjzZrbPxejujfYyAEj2XOH5Ei9pmAQAi7k,1912
@@ -673,45 +676,19 @@ tests/models/cml2001NonBaseline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
673
676
  tests/models/cml2001NonBaseline/test_eutrophicationPotentialIncludingFateAverageEurope.py,sha256=Snt0zwI1fF2_ome79rTRZjl5Oc8dZfbcqX8lXwxabVs,910
674
677
  tests/models/cml2001NonBaseline/test_terrestrialAcidificationPotentialExcludingFate.py,sha256=zytN80ZmXjLBSiXPj_G0aaMyMx1aVukJaGouZQDMLBs,907
675
678
  tests/models/cycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
676
- tests/models/cycle/test_aboveGroundCropResidueTotal.py,sha256=qXx--kj9VHfiHqJfpAffSRvfaAcyYJppqTqgjQkXG4w,1311
677
- tests/models/cycle/test_coldCarcassWeightPerHead.py,sha256=mfl8B69EUwOGQlqLZjDNUYjD--n16PXmyxWVLY3vGEY,1435
678
- tests/models/cycle/test_coldDressedCarcassWeightPerHead.py,sha256=g_neoqsCsqIFhrORM5_JwS_HJts0xdcay1KZrH3snjI,1449
679
679
  tests/models/cycle/test_completeness.py,sha256=Ku1ZSApGaACkXe3ae14yP01C4GssHMwlPG_UPrSytPo,1625
680
- tests/models/cycle/test_concentrateFeed.py,sha256=JrJOf1hQ879ZV-tdVy-gug2A_GKfFj8T97IXM6F3uX0,2011
681
- tests/models/cycle/test_cropResidueManagement.py,sha256=vQWl7rDYLJjiKyBQlCiOA76LpzM4dI2t7JJ30uF8H9M,2020
682
- tests/models/cycle/test_croppingIntensity.py,sha256=o5nA5tGbnk1IFdOhlN_Dh9oKcSq_yzSwkbBJzYfmYMg,1565
683
680
  tests/models/cycle/test_cycleDuration.py,sha256=2KExiliuOa7_j88rJuPObJKZqq0xsRnFAb0ZEqc5KEM,846
684
681
  tests/models/cycle/test_endDate.py,sha256=6JijuD_-Rih-o-k5DMP1T6fEXgc7F9GhjYLojYJmVKA,1013
685
- tests/models/cycle/test_energyContentLowerHeatingValue.py,sha256=w068SwIl4hb6ZtlYQz30aBoI0AcshqRM71_GD2iDF8I,1202
686
- tests/models/cycle/test_excretaKgMass.py,sha256=dwH1FgBiWKWdNse92iomyUNntFpt-s8lQJ1oRtNGl6s,2923
687
- tests/models/cycle/test_excretaKgN.py,sha256=xoe0PF-DwhVkihN-1BonUa7u_QNM9lr7CmGXsOozQ0Y,1090
688
- tests/models/cycle/test_excretaKgVs.py,sha256=A5IzG9vcjJxba_ZjBeTprjGL4hO3NkwrS0LSqgX8eOs,1093
689
- tests/models/cycle/test_feedConversionRatio.py,sha256=Hd6poZiCUDk_GH8DG2hWuiy-HDLz53v3jdWzTwy-q5g,2139
690
- tests/models/cycle/test_inorganicFertiliser.py,sha256=c-JDYC0qDK4JWlYDaGX53AcKfetz_YifSfdhy-v-WMo,642
691
- tests/models/cycle/test_irrigatedTypeUnspecified.py,sha256=9YGwpDO_RHMaldvjJZ0xdrdfUzYDnLPt6nMJ2eRXSTI,2151
692
- tests/models/cycle/test_liveAnimal.py,sha256=rKcd4GKl9kKlp4bft3HEr58Btv-cPQq94XdAL9O1ky8,2138
693
- tests/models/cycle/test_longFallowRatio.py,sha256=sztr1pysldwedTC78JWUHAVWl2oL0jTIQ13c6Nxzlso,1512
694
- tests/models/cycle/test_materialsAndSubstrate.py,sha256=pYaNZiLVmmogAebUZjOri41pa7k78gjy7OOD8OXm4bk,1429
695
- tests/models/cycle/test_milkYield.py,sha256=gl0e9O0idVT6ld9mGc--EYWTJo452C2HOzGzHKrsq_g,1777
696
682
  tests/models/cycle/test_otherSitesArea.py,sha256=Mop7guZXEyX4ZFOBpqzsbu-cuaBFAqfIRZhe-WEvVwc,2131
697
683
  tests/models/cycle/test_otherSitesUnusedDuration.py,sha256=zQejrYNwq14Pwe3d0zmfhxjdif5s_udbdVCiZcTuC8w,1635
698
- tests/models/cycle/test_pastureGrass.py,sha256=zIv3VVqDJGD49bIOD_3qNJzszbeJ9n9N3ykmGwnk504,1023
699
- tests/models/cycle/test_pastureSystem.py,sha256=VlPn4mlaNimiu3liV5EMELJueUCqSSJ1l82yMV0UK90,1590
700
684
  tests/models/cycle/test_post_checks.py,sha256=yeUm-uZ4Om8poct2TgpFQEy-Hg72LNacyQcQ2Qh4Yyw,286
701
685
  tests/models/cycle/test_pre_checks.py,sha256=ZFQOq6vIe-xMLisvSsJAPjt3XIgKk-x3G5cFJIzfOWc,284
702
- tests/models/cycle/test_readyToCookWeightPerHead.py,sha256=_gRBrmb6bU7mzauEhMlyIs-hRrUVO-8VqDPnglFvGRk,1435
703
- tests/models/cycle/test_residueBurnt.py,sha256=eBAzGR1210cBYH_s6oI1yCG6tVKUj9gGs2LnN_q6Iq4,1272
704
- tests/models/cycle/test_residueIncorporated.py,sha256=esB_wnpf6W0PB24HW0YUgtfD9mxLDIY22eNVD4WAYFA,1719
705
- tests/models/cycle/test_residueLeftOnField.py,sha256=_8CoSp-7z3BBLGN5Hv067FRYz8yDFw5fi_Cu5n6Rl3g,1290
706
- tests/models/cycle/test_residueRemoved.py,sha256=R5v8lwGyz_4a9_X_LnugBEmgVgcisS5LTM5GFCtKIco,1278
707
686
  tests/models/cycle/test_siteArea.py,sha256=CFuYLfjTdjaJPwSl1NxpcnRHhTfmbqAtkY6NDWvGoss,1465
708
687
  tests/models/cycle/test_siteDuration.py,sha256=x98shgDOAPp7Bf8j7R251qzn4oVZyqmtlmwcoG2nVwE,2358
709
688
  tests/models/cycle/test_siteUnusedDuration.py,sha256=5h9R3guw6ErU_sE5omoiK9Fpke74SmQWsJYWYURE9Fo,1532
710
689
  tests/models/cycle/test_startDate.py,sha256=KUlGLFrLp5GSSTsnyVOkwyuT-H_0F0uNemA8Sjvtu8k,1750
711
690
  tests/models/cycle/test_startDateDefinition.py,sha256=42BmsT1I7Jq_YMVN-VNU7a0fIZ2w3i5jgwy4H_r4dNM,920
712
- tests/models/cycle/test_stockingDensityAnimalHousingAverage.py,sha256=WlnuKxhK_3h6fWt036kfw1d8DIAt9L1vlsPDTiGCG18,1310
713
691
  tests/models/cycle/test_transformations.py,sha256=Ws_8KhNqeHogGFXTQ4qZXQ5Ph2I3ZUaY0yO1itFUHLk,464
714
- tests/models/cycle/test_unknownPreSeasonWaterRegime.py,sha256=4JSSpDvBQEQrDoytNVzuIcm9UVio4TzZpZm52iMWBVA,1220
715
692
  tests/models/cycle/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
716
693
  tests/models/cycle/animal/test_milkYield.py,sha256=E6WLhuSRydREyKmqmOuOPB8VH1nwZwUMcUULshIdj7k,873
717
694
  tests/models/cycle/animal/test_properties.py,sha256=ND9ltZQie1xXtQvAzoDUkBYGV_N3rw5D5W-irARvO0s,715
@@ -728,7 +705,7 @@ tests/models/cycle/completeness/test_material.py,sha256=bA1_32wmtdd77cD8vinkIjsp
728
705
  tests/models/cycle/completeness/test_seed.py,sha256=NvCh4-YTUVoo2K5tX9h7-Wo7GjZGsRn-Nxn76iTw3sY,1043
729
706
  tests/models/cycle/completeness/test_soilAmendment.py,sha256=2kXOyux6wVIbjIbsaCFNEN3Ic-RMLtli-pH7fAXZpo4,641
730
707
  tests/models/cycle/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
731
- tests/models/cycle/input/test_hestiaAggregatedData.py,sha256=exH0kAT19ElPSCUUC4ZjywNoSjcebz20pO3jwpYYyuc,3316
708
+ tests/models/cycle/input/test_hestiaAggregatedData.py,sha256=cT2xxlC1iaMzySZbirpIifpbpdDLYFb7q-f5iiB1Z5A,3513
732
709
  tests/models/cycle/input/test_properties.py,sha256=5O2ubBE_WSLz5NRtLTGwsE-gADIcw7sZyJqL0w7GYcQ,1962
733
710
  tests/models/cycle/input/test_value.py,sha256=NR7KHsqnPnw43BB1efT0KPaszY4DKY293Av-lVde-DI,977
734
711
  tests/models/cycle/post_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -752,6 +729,9 @@ tests/models/dammgen2009/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
752
729
  tests/models/dammgen2009/test_noxToAirExcreta.py,sha256=RWd9QvzmJtN9M6UC6KDHkXwtKvwv0aAfMuI9HtsJLvk,1213
753
730
  tests/models/deRuijterEtAl2010/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
754
731
  tests/models/deRuijterEtAl2010/test_nh3ToAirCropResidueDecomposition.py,sha256=kS1nUBVohOSCb386g6Wq7iVclmx0haekUDYo7VQ4NCA,2030
732
+ tests/models/ecoalimV9/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
733
+ tests/models/ecoalimV9/test_cycle.py,sha256=Wb-i6BJM48JGSlwF6cZ0-CxG973Tq_xEyq02hiIs5bU,640
734
+ tests/models/ecoalimV9/test_impact_assessment.py,sha256=9Br_jis2MT85kS1IvBfPE9x7mKD41x8hYf3kzlR7WgE,838
755
735
  tests/models/edip2003/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
756
736
  tests/models/edip2003/test_ozoneDepletionPotential.py,sha256=z0kimdTxzSr8_K5eScbkxq2SB9nbBp41IHqVNR4Nh4Y,688
757
737
  tests/models/emepEea2019/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -770,7 +750,7 @@ tests/models/environmentalFootprintV3_1/test_environmentalFootprintSingleOverall
770
750
  tests/models/environmentalFootprintV3_1/test_freshwaterEcotoxicityPotentialCtue.py,sha256=WE-DcerljCjXMYE4f3Sv5ZCVHP0oTjbWkOGuvaa4p10,926
771
751
  tests/models/environmentalFootprintV3_1/test_marineEutrophicationPotential.py,sha256=kY_pu_7SjSZl_l41mttMn4BpKl13TTV9jQYSHFMNXhI,968
772
752
  tests/models/environmentalFootprintV3_1/test_photochemicalOzoneCreationPotentialHumanHealthNmvocEq.py,sha256=Z4KGhYmnao0J1rC_jY9P_8Lu9UKe-_RyrdO5k56EIsg,1022
773
- tests/models/environmentalFootprintV3_1/test_scarcityWeightedWaterUse.py,sha256=zEdWXjtlZv5Nyv0EZxvLxe4BQ-4_ME38bMfNvFZXjl8,1169
753
+ tests/models/environmentalFootprintV3_1/test_scarcityWeightedWaterUse.py,sha256=TJptYKhplwbwiDObmPMBJweDgtwvIUdwBzNwAPCpbTc,1265
774
754
  tests/models/environmentalFootprintV3_1/test_soilQualityIndexLandOccupation.py,sha256=-E8Q5JxIdfF11oqGwRJqcqGO0Ao_Bva164ELMR7sRsI,6197
775
755
  tests/models/environmentalFootprintV3_1/test_soilQualityIndexLandTransformation.py,sha256=xRTBMfQ1Qxs_NIoEFtshM_uzAAcFb80k1qGuFLJa2Dw,7650
776
756
  tests/models/environmentalFootprintV3_1/test_soilQualityIndexTotalLandUseEffects.py,sha256=ugM3qfvCuNQbzF5IPkEQQYF2V4IHxg3GQsXWqU9wqFE,2614
@@ -811,7 +791,7 @@ tests/models/geospatialDatabase/test_potentialEvapotranspirationMonthly.py,sha25
811
791
  tests/models/geospatialDatabase/test_precipitationAnnual.py,sha256=OhN7dbLZUG8ofvV7C56RKE_hGFXGtOuzXYz3EwFcQyg,744
812
792
  tests/models/geospatialDatabase/test_precipitationLongTermAnnualMean.py,sha256=wGGKXGemg3OEgDRRXy52oFf5p8jU57iraTgQMWDzusQ,1033
813
793
  tests/models/geospatialDatabase/test_precipitationMonthly.py,sha256=FTmnMXqwxuV_FwNzx8ZJsF5DCdaOdXPNV9UQ5gFKALs,748
814
- tests/models/geospatialDatabase/test_region.py,sha256=5q3q5TK7yzvoZI2gknf-TPNcmDqVkMo0D3-KY401J2k,882
794
+ tests/models/geospatialDatabase/test_region.py,sha256=Q3doDB8gEUxxKMXYCagfTkCZdcuqnKHYuwjQelMkVJk,880
815
795
  tests/models/geospatialDatabase/test_sandContent.py,sha256=7H-GNxyn4EGQJd3J3r_SdtSfpPMqR-IlmLo188KAWSU,1797
816
796
  tests/models/geospatialDatabase/test_siltContent.py,sha256=DNXa7Ih4TWe3zmBJIAgzZpdyjSRo77hwErkoBluIGaw,1194
817
797
  tests/models/geospatialDatabase/test_slope.py,sha256=OQBjH1K1VDgbZ5B9hSy-oPzPnaqYU8Bkb2Cvd-KMqa0,1007
@@ -822,20 +802,69 @@ tests/models/geospatialDatabase/test_temperatureLongTermAnnualMean.py,sha256=Wrz
822
802
  tests/models/geospatialDatabase/test_temperatureMonthly.py,sha256=eUaI1TZ-9sXFxWR2UoKBbca8dzW21zp5jGcfbooTt3M,746
823
803
  tests/models/geospatialDatabase/test_totalNitrogenPerKgSoil.py,sha256=fZuFjIJ_-bF8HqoNfzA0odmABiSgnttlGQw2Rphqu70,1632
824
804
  tests/models/geospatialDatabase/test_totalPhosphorusPerKgSoil.py,sha256=N5Vqf3YKlxHxWRe1PP3Kpbd30bhPOsB8eYr2IGS7quk,1026
825
- tests/models/geospatialDatabase/test_utils.py,sha256=2AOTtxs7KjPUVQXyErHsm7578523a5WNODVbbuxafAY,758
805
+ tests/models/geospatialDatabase/test_utils.py,sha256=bdQfDkCTj5DtuUou2iRhHau-l0nrF28z3t-_5W1TQQY,756
826
806
  tests/models/geospatialDatabase/test_waterDepth.py,sha256=v1y6OcEdSOKu5wlIOYD9UctAx2k7ODP3eLf0WHZZz5w,954
827
807
  tests/models/globalCropWaterModel2008/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
828
808
  tests/models/globalCropWaterModel2008/test_rootingDepth.py,sha256=lSjN_3AHoqajnQ2JfeuzLReL9au1d0uiCG2NZbvFXkM,2688
829
809
  tests/models/haversineFormula/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
830
810
  tests/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
831
- tests/models/haversineFormula/transport/test_distance.py,sha256=IemXHJdD04JxZYjlz84xI8oGOEupogItXz-z8qNQcDw,969
811
+ tests/models/haversineFormula/transport/test_distance.py,sha256=tNYMl4d6nlrztjiqQVDS1PWrAFCcycbalYAUxqKjfr4,963
832
812
  tests/models/hestia/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
833
- tests/models/hestia/test_landCover.py,sha256=y2-KHqfJ1psaxgf-FJYCrRb2OX_MmaQW3rBHZSGeIuA,7443
813
+ tests/models/hestia/test_aboveGroundCropResidue.py,sha256=FjYKk9wp04h5NiPkSRGyWv4Gxp1jzgfdk_1K2f10kXI,2123
814
+ tests/models/hestia/test_aboveGroundCropResidueTotal.py,sha256=rcd8QGcHkvnqeXeUFIAIhvAsLfr5fFoJc6-ZAPmhT7I,1312
815
+ tests/models/hestia/test_brackishWater.py,sha256=_ofSKiJuaejsRLYqPUxRWmEnsuebi3SCMj24awLKA5k,988
816
+ tests/models/hestia/test_cationExchangeCapacityPerKgSoil.py,sha256=pcwEtPjfIHiSc0ZVYaHCpSe_0czsiZZe9B6LtBs7gwQ,1077
817
+ tests/models/hestia/test_coldCarcassWeightPerHead.py,sha256=9dFhdxP4jazE1L8bB5H2WHl8G81kXsXTwe068VENJJ8,1436
818
+ tests/models/hestia/test_coldDressedCarcassWeightPerHead.py,sha256=5UwhLh0DjPlOcRFmhK6OOdYPaYuahfwhkv1PdMt0Fbw,1450
819
+ tests/models/hestia/test_concentrateFeed.py,sha256=knFM7SlKZhvmRu9T6T5H1fitFAZBuEBdxiBQpnekn4M,2012
820
+ tests/models/hestia/test_cropResidueManagement.py,sha256=zjHY0dlrJN7pqlRIs3rpssuwqOFJtjv4El3V39QpoFs,2021
821
+ tests/models/hestia/test_croppingIntensity.py,sha256=YIBeAj3HSpLTKKjTNpQyy273w36xKSnv2lUbeO_-cb0,1566
822
+ tests/models/hestia/test_energyContentLowerHeatingValue.py,sha256=sjFrRFNMGvZy8i5WWqfR3Z_92wd9lUTtdZv0YFXidR8,1222
823
+ tests/models/hestia/test_excretaKgMass.py,sha256=tY4he1xRDHZi976slnFra-4lRqWwogx2fXkpXfJxpOY,2924
824
+ tests/models/hestia/test_excretaKgN.py,sha256=7yuF9-nrwfkcmU_VsQtFBYSO92RqEDtUU9kdL0ERiUk,1091
825
+ tests/models/hestia/test_excretaKgVs.py,sha256=3dNFATeYM5LI1y3Q3m5cbazvNp-zMKLwtEDqcI3Dvhk,1094
826
+ tests/models/hestia/test_feedConversionRatio.py,sha256=med3-jZgvLl8vKpCX-n3YCGli_fdYny0UPGFhtesTP8,2140
827
+ tests/models/hestia/test_flowingWater.py,sha256=0-70Iyr0HKQHHC5jFEF9LUQQZ23spOo5tFWXQ8kfR7w,1372
828
+ tests/models/hestia/test_freshWater.py,sha256=v2UD69csKrniKP3MXkOEHxQeE6O3-lvIViCvLA7Zgws,984
829
+ tests/models/hestia/test_inorganicFertiliser.py,sha256=v2Zs1Ig-ChOaq9gXuurcBt12izkH2bRUUuzW6rh3rqQ,643
830
+ tests/models/hestia/test_irrigatedTypeUnspecified.py,sha256=bluZADFagxfXW4QyI0CIJzG97D2V33w333Z9Vwjqo0M,2015
831
+ tests/models/hestia/test_landCover.py,sha256=I1ASRtGgLK02VQqHWrDdo9S19ID5ZMgKoBo_uptV8aY,6775
834
832
  tests/models/hestia/test_landTransformation100YearAverageDuringCycle.py,sha256=3qa4rWUFqP1VM5-vm_182rhiBYJDxPqJwWtBqJ5K028,956
835
833
  tests/models/hestia/test_landTransformation20YearAverageDuringCycle.py,sha256=bUByojQuVeuCfko1_2YtNJi1PT9yktHlcbPi_p-MPvk,1001
836
- tests/models/hestia/test_nh3ToSurfaceWaterAquacultureSystems.py,sha256=4-V3bHYiSjHJSykdlXANcjQ24NJtbx9CE6IzzRR9o8U,1463
837
- tests/models/hestia/test_residueRemoved.py,sha256=WkyWaW_Ym-KBXFYJHcMR-mliiQX4vwy2u1Mxnb5t9fs,640
834
+ tests/models/hestia/test_liveAnimal.py,sha256=3K9cL1fwr6LlBl1_D8zIaeCOuiExqkDEU7BXx1JK_dk,2139
835
+ tests/models/hestia/test_longFallowRatio.py,sha256=OVd6NByAXeCAOx9ux_m8IJwnEF-fqIaBOoKFSGWhyO0,1513
836
+ tests/models/hestia/test_management.py,sha256=h5rNqAgh3ehTlH4MEGBp4ryhZOoA2EXj_Q3lZcufbUk,1738
837
+ tests/models/hestia/test_materialsAndSubstrate.py,sha256=szM6aBBc1_9MDQFM1-OiW4SOKvEIO6mYYEpjHB-wI9g,1430
838
+ tests/models/hestia/test_milkYield.py,sha256=m7SRiKb_u8SDF7Q5gX39AKr4bsrNqibXgMgzSmJJEPA,1778
839
+ tests/models/hestia/test_netPrimaryProduction.py,sha256=--q6NB90gmpeJNBR16l3AgBsXGXwww_d1vOcWiMa-k8,1110
840
+ tests/models/hestia/test_organicCarbonPerHa.py,sha256=PsJl7IVwg1WgW34heyZRQ5VAk-2U8MaF8lGaApCjqtY,3209
841
+ tests/models/hestia/test_organicCarbonPerKgSoil.py,sha256=pHG4WrBW6j-NZp0sJ1wrk8UrUuEL9lu3fujhc4RjHn8,1089
842
+ tests/models/hestia/test_organicCarbonPerM3Soil.py,sha256=lJ35Qsn-D1d6r_eR-SBTs68-_1l3_dIbaQKLUnfoc1Q,1089
843
+ tests/models/hestia/test_organicMatterPerKgSoil.py,sha256=WorZv3aGr4F5pnEwGbHdPqn-nmg9ydxF5v9uUBcWH1c,1089
844
+ tests/models/hestia/test_organicMatterPerM3Soil.py,sha256=x4qELmNSKQFTlt0mc6FrPlk-U0w_jPxZIlO5TNR6YTQ,1089
845
+ tests/models/hestia/test_pastureGrass.py,sha256=L1xwPFXEzMVOKJho49NPFJXThdCHRbUdIP134kqZim4,1024
846
+ tests/models/hestia/test_pastureSystem.py,sha256=rYfngWC5-j2Tcdicjq9Ck92-ok5wjhPIXrincXVIU-M,1591
847
+ tests/models/hestia/test_potentialEvapotranspirationAnnual.py,sha256=xJhWAfy8ZMTzSTp_EZbMW-hTtCpk0VeOo_ymEdd52Wg,1026
848
+ tests/models/hestia/test_potentialEvapotranspirationMonthly.py,sha256=Dhz6bY8b8hVry-ltBOAVXZvKAmKsJ3GJ00iBa9F-lV4,1025
849
+ tests/models/hestia/test_precipitationAnnual.py,sha256=8oTKVVyHtL7ltgOxG-rNFlWt0ixDPPLScOHzeOrp_vA,998
850
+ tests/models/hestia/test_precipitationMonthly.py,sha256=k1htrs1It8cSy14cvGr834liFzE9WDFbb5K8uuYBjFg,997
851
+ tests/models/hestia/test_rainfallAnnual.py,sha256=IPk652_NLAPOfhVeRHkdm6MKluVLftyByM9PtvWI76M,988
852
+ tests/models/hestia/test_rainfallMonthly.py,sha256=B-5RlUE8m5lYGwzcWtOWUIeGNaVk7ozcPiDq8FkxdrM,987
853
+ tests/models/hestia/test_readyToCookWeightPerHead.py,sha256=SBfxdfBuw1jhyvcsiboTtDE91W27dkWJuKGXgGy-f7A,1436
854
+ tests/models/hestia/test_residueBurnt.py,sha256=24pd9RtF9KzrJDpuA_jD8funJg8FneA4lnvVtvVTAUU,1273
855
+ tests/models/hestia/test_residueIncorporated.py,sha256=3yFfv13x9uHKz8HbAYMwW9fAZZlVaui6cZu6pnA1RF4,1720
856
+ tests/models/hestia/test_residueLeftOnField.py,sha256=asOZqi2PtKXESa2aCtcb_DORukmYfLvFtvi_LiCzFp8,1291
857
+ tests/models/hestia/test_residueRemoved.py,sha256=FZ2zfI-uEDWXRs2tSg2B6qszphgY1pX-piGZTC4Xc40,1069
858
+ tests/models/hestia/test_salineWater.py,sha256=a-JNyzcAPlP-VAQnJbJ6igYWkZ0GCJT_CbpslChYUjc,987
838
859
  tests/models/hestia/test_seed_emissions.py,sha256=dCUuJBkhwNFBhhcypQN7eMqrWZ9iGCnypoidO5DfQYw,921
860
+ tests/models/hestia/test_soilMeasurement.py,sha256=MTL1C0U6uIzSK4t44cKPmWCFLPeXeYD2wIB97StVUT8,4403
861
+ tests/models/hestia/test_stockingDensityAnimalHousingAverage.py,sha256=ZKLKU75FoYHiKIXqDuXPpfPN06InLA8ZHJFtkkLBhOY,1311
862
+ tests/models/hestia/test_temperatureAnnual.py,sha256=vYqcZu2efQgWfCKXTCTse_9trmMzmBwPz6IN81NzRoI,994
863
+ tests/models/hestia/test_temperatureMonthly.py,sha256=3fuyr-bBmRAb8f9LRJg9W02DcgQ-eIIF2OaXo_aWJYs,993
864
+ tests/models/hestia/test_totalNitrogenPerKgSoil.py,sha256=vecubyhWVSjwTASZZc3dGLk64AwMtirTNlOe7eXybL8,1163
865
+ tests/models/hestia/test_unknownPreSeasonWaterRegime.py,sha256=ZilBXNREiinmub5LG4sdigVPIva4hMDuNl5MyUDo-Q8,1221
866
+ tests/models/hestia/test_waterDepth.py,sha256=LR56IBuXYmO1RMkRc__Wbr4McfGgzioWQm15-Tnramw,1121
867
+ tests/models/hestia/test_waterSalinity.py,sha256=6BSjLyhsLcQxFXiC_Gc4ryB0dlbNjYy2rtJKiNfShRY,869
839
868
  tests/models/impact_assessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
840
869
  tests/models/impact_assessment/test_allocationMethod.py,sha256=HkUt6oWdEyFSdxMpx8y_Oxk0nO2Fi9B_kUZcVte9tzg,1223
841
870
  tests/models/impact_assessment/test_emissions.py,sha256=nygoe5JeuQ1rbMQSqAr8oBSm6jC4ygZb2XNHyEx85lo,990
@@ -878,14 +907,14 @@ tests/models/ipcc2019/test_belowGroundCropResidue.py,sha256=no71pfxgOhn_tEWc_Ewu
878
907
  tests/models/ipcc2019/test_biomass_utils.py,sha256=I2q4pDGAD0aY_kpZCMPJoC-KbRYxdzY1rhr4xtJFWIA,3592
879
908
  tests/models/ipcc2019/test_carbonContent.py,sha256=_GWF5nGy-PxiqBZ5V7W_sHMz75YRzmxr79R-sZZg7yk,4146
880
909
  tests/models/ipcc2019/test_ch4ToAirAquacultureSystems.py,sha256=o7bHOS4JkwexRrDhLzpfr8nyYCctgRL32YZbam5RBrI,1891
881
- tests/models/ipcc2019/test_ch4ToAirEntericFermentation.py,sha256=lvX0U77b4Ac8idVAe9JRK4WAvskdGECPoY_uPyTQTcM,7892
910
+ tests/models/ipcc2019/test_ch4ToAirEntericFermentation.py,sha256=tf85b3U0RjmRgRAZ1i8NrQO3dDHRlf8G71pXhSI9NGw,8689
882
911
  tests/models/ipcc2019/test_ch4ToAirExcreta.py,sha256=e58NXmBW2SNVLUqQO9A66Xq6jiGTyhdFZDZk51JApF8,2902
883
- tests/models/ipcc2019/test_ch4ToAirFloodedRice.py,sha256=FAp5b45WdX5Ih4yGUOZ4CmVD8smW1Lw1tnulx9AKVBI,1980
912
+ tests/models/ipcc2019/test_ch4ToAirFloodedRice.py,sha256=YRyxNaGPAgsCJBRXhwhEsZ6r44dawHMSN-Qmi-yS0xI,1025
884
913
  tests/models/ipcc2019/test_co2ToAirAboveGroundBiomassStockChange.py,sha256=WFqufrVclKH5fBx9u-a6yGCqr9rX1FGLCM7RCULdB6w,4470
885
914
  tests/models/ipcc2019/test_co2ToAirBelowGroundBiomassStockChange.py,sha256=AiVIuop4RBKUbeRET5WZLFaD3JAUzNpSFOW_HRyCHmY,4399
886
915
  tests/models/ipcc2019/test_co2ToAirCarbonStockChange_utils.py,sha256=wCEtrbMl6zef8V-n_Ci_rtlQAlfuKm3khUVltr8eAcc,2173
887
916
  tests/models/ipcc2019/test_co2ToAirLimeHydrolysis.py,sha256=e5iuZ-kQNEVih0ZRgRPWqaUtXcLpfkoU7sQypbqA9_Y,1345
888
- tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py,sha256=gW1_VKmLzVYyWhS9fsBDzeuiWhgItIDk5sFUe8eRARE,5549
917
+ tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py,sha256=j7CEqclrZ4CKHctz2NzHntmh586veyC_kLTr8j5JeyE,5577
889
918
  tests/models/ipcc2019/test_co2ToAirUreaHydrolysis.py,sha256=MmtEME0xjsa3KojFk_fxOLK6RZM_6p5HIpY2DOFHVu4,1530
890
919
  tests/models/ipcc2019/test_croppingDuration.py,sha256=1oRW1QaEwQvBadyVhaDi-jlkjuNqodyAinl88TdPmiY,1879
891
920
  tests/models/ipcc2019/test_ligninContent.py,sha256=eIKEN__ab-0R52EhlhPSBiHnmTl6xOf1XbI33O-W9A4,4146
@@ -904,10 +933,10 @@ tests/models/ipcc2019/test_no3ToGroundwaterCropResidueDecomposition.py,sha256=4_
904
933
  tests/models/ipcc2019/test_no3ToGroundwaterExcreta.py,sha256=EOb7wBGzoIcYWTNL68_gMVrsHkfJjbbkaCAiwnHY0h4,2146
905
934
  tests/models/ipcc2019/test_no3ToGroundwaterInorganicFertiliser.py,sha256=e7REnQ9r9a8xroq5aPp0NIzmkad_6MyTuceRTYoKdkE,1613
906
935
  tests/models/ipcc2019/test_no3ToGroundwaterOrganicFertiliser.py,sha256=e1ZViD12qB3bLdH3TJw3GbBP8iqMen-UJbcFkytb3VQ,1609
907
- tests/models/ipcc2019/test_nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=xtZM7S1UcuOLq5artNIg9edM8KiWPnovLpB4U1-nvyw,2628
936
+ tests/models/ipcc2019/test_nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=Edv07swcBbP1PhM5nPV6P2FFTkMfGWj1M4pWP2aZ0a0,3306
908
937
  tests/models/ipcc2019/test_noxToAirInorganicFertiliser.py,sha256=NZBSBJLM_j2PEpHRON2ysgKNF8x5sHfQVoAKQdGsfzk,1537
909
938
  tests/models/ipcc2019/test_noxToAirOrganicFertiliser.py,sha256=LR5pjV5vRbgSSQAw8kYRp_ij4CHInzgaDS6EggQuBiw,1104
910
- tests/models/ipcc2019/test_organicCarbonPerHa.py,sha256=rdNYi-fZEqpj_jlHN52fvbk-OTfkn1F0msqx5fAc_Pk,15447
939
+ tests/models/ipcc2019/test_organicCarbonPerHa.py,sha256=g_uOqzj6EiyvoAZRpd4PakMYQ7Vfn0QiDGLCTVz92A8,15607
911
940
  tests/models/ipcc2019/test_organicCarbonPerHa_tier_1.py,sha256=7ISfBTgFqZLyU7l_UW3Hxpx8dNi1X3UurNS5I7DhH-U,20432
912
941
  tests/models/ipcc2019/test_organicCarbonPerHa_tier_2.py,sha256=OKkISE_gcF1yrEHzHowk65MbDRdgy-ILdzGWIy6X8JU,5502
913
942
  tests/models/ipcc2019/test_organicCarbonPerHa_utils.py,sha256=Zd2QlN_Q3k9djuByOH62A00tryVzlvNtsd46N79TTeU,1778
@@ -927,7 +956,6 @@ tests/models/ipcc2021/test_gwp100.py,sha256=r3pDw_TUcOrNlNRWtFAN3CBWfG5FCkHExypV
927
956
  tests/models/jarvisAndPain1994/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
928
957
  tests/models/jarvisAndPain1994/test_n2ToAirExcreta.py,sha256=aMCuR9fmGDmum7VqLb1oBOsTCjBz5O9XQn2DWtP8HVM,1057
929
958
  tests/models/koble2014/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
930
- tests/models/koble2014/test_aboveGroundCropResidue.py,sha256=Wn2u6GNsaIA55_zBZKEJ1jM2uFy8ecnZj1D4t8jUabE,2122
931
959
  tests/models/koble2014/test_cropResidueManagement.py,sha256=QwmMcVpOoW7Pedowldd0GFdnvE6lesGEfWGGMO2TQbQ,621
932
960
  tests/models/koble2014/test_residueBurnt.py,sha256=XneISYwqiVlHORshGg-0K9t4zZ_GJqjoedTOIhoTB8E,730
933
961
  tests/models/koble2014/test_residueLeftOnField.py,sha256=gzydTRiQOp_qJ4cZx1OFrrW22Ex_R5r2qP8c4Te_XHc,777
@@ -1032,7 +1060,7 @@ tests/models/pooreNemecek2018/test_ch4ToAirAquacultureSystems.py,sha256=p_n0NZim
1032
1060
  tests/models/pooreNemecek2018/test_excretaKgN.py,sha256=HExbvxYBDumOg0u6wkXZ9F_2rW0vxgsTDaEp9lj6Nos,4054
1033
1061
  tests/models/pooreNemecek2018/test_excretaKgVs.py,sha256=VQCfF6y7oPQAQ7DgwPHWoeFcgVSuLzhU2G0VgEfECOo,3252
1034
1062
  tests/models/pooreNemecek2018/test_freshwaterWithdrawalsDuringCycle.py,sha256=5QxDU6VzcwWup3Nuhn32kJoIlAkqcSggGr4CmoRqrFA,1623
1035
- tests/models/pooreNemecek2018/test_landOccupationDuringCycle.py,sha256=rEhRHN6h6i4l89mZpyHE-pfsFM8lQUHw__jLu6FKz54,1728
1063
+ tests/models/pooreNemecek2018/test_landOccupationDuringCycle.py,sha256=R8tiV9FtpvwDNcxt4zs1RUDDLNKRjGHS1fS9ZJKZYgA,1986
1036
1064
  tests/models/pooreNemecek2018/test_longFallowDuration.py,sha256=kelZajIbKyvVm1vX_grRZy0IUrtejGI5GPn03qbElnw,925
1037
1065
  tests/models/pooreNemecek2018/test_n2OToAirAquacultureSystemsDirect.py,sha256=Dvgnk1tOxJteXzULyDr0dVbqkYe_TYnjGJcAK2kZujk,1977
1038
1066
  tests/models/pooreNemecek2018/test_n2ToAirAquacultureSystems.py,sha256=h2x3_9d2ZzFpjnE3LcZUqCzO6SsiT5iPHYmI-F61AnY,1970
@@ -1120,31 +1148,8 @@ tests/models/schmidt2007/test_n2OToAirWasteTreatmentDirect.py,sha256=xgikZTGcDqi
1120
1148
  tests/models/schmidt2007/test_nh3ToAirWasteTreatment.py,sha256=22x5Hc0keF41LYMKvARrJvmPtOjIKJ6vCrF2d8AOyAc,1454
1121
1149
  tests/models/schmidt2007/test_utils.py,sha256=rmtOV3xiFynjgx8lQNGsJqquG8HDxz3LDmh1efN8AkI,1278
1122
1150
  tests/models/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1123
- tests/models/site/test_brackishWater.py,sha256=YGCp4glaWudKklYBSp-50KbfvIRtp3F4Qrj5T81ECTk,986
1124
- tests/models/site/test_cationExchangeCapacityPerKgSoil.py,sha256=tNMhN998vcjQ15I-5mNnFh2d7mHzEBIBO6o1VSfQNUE,1075
1125
1151
  tests/models/site/test_defaultMethodClassification.py,sha256=MoG9inlu5GrNL2QJpO0AWJZpc4682zDnO8-0mVgeV88,667
1126
1152
  tests/models/site/test_defaultMethodClassificationDescription.py,sha256=7Dg40MLSZnW1X3ZXg2dXMzc1hUqIUIuiga5KX9cVscU,767
1127
- tests/models/site/test_flowingWater.py,sha256=t_rxvdlmUVDsFBoDF20_zDM-0iiLKkNCV7knO9l1T7o,1370
1128
- tests/models/site/test_freshWater.py,sha256=GOeAxHhPW_2E1wQdQRX4W-r7mnb_LgmiAVLImitoApw,982
1129
- tests/models/site/test_management.py,sha256=iMA9SpP7yOhHpsvCyizCsSbvw0ZSayvJ5koEZ-Kjbs0,1736
1130
- tests/models/site/test_netPrimaryProduction.py,sha256=JCxG0MODbKVvl3hOqmKzh4FjHYn3Xs9KsVod6LvKQII,1108
1131
- tests/models/site/test_organicCarbonPerHa.py,sha256=XtGrE7ZqthTF0x8lDxJ1slNd_GvYHEyEydcRgA46jEc,3207
1132
- tests/models/site/test_organicCarbonPerKgSoil.py,sha256=0M-NMg_T3UXzGT_VlKOKhSxg4cZ0_zhd3FRgY5Hpj6o,1087
1133
- tests/models/site/test_organicCarbonPerM3Soil.py,sha256=_teZwZKVM7b6YIokWJdqkYbIlSDY8eeOX4vZo7-0Mdo,1087
1134
- tests/models/site/test_organicMatterPerKgSoil.py,sha256=ustKqQcv4GWa-0SdHvLlxJBDlY2zU9kdBCQoUIKO2BI,1087
1135
- tests/models/site/test_organicMatterPerM3Soil.py,sha256=2ZbiruH_F8R0cl62OXIl3luxT9jgNFXMqgq4_etAPss,1087
1136
- tests/models/site/test_potentialEvapotranspirationAnnual.py,sha256=E-LobjSgQ1B7j_16mZgnmx5ruOvrD_ejgg-98yRR89I,1024
1137
- tests/models/site/test_potentialEvapotranspirationMonthly.py,sha256=GDOH9tFRM8nKU1-n1BSi5dN0CGxP3ehnH8eAtYnelAo,1023
1138
- tests/models/site/test_precipitationAnnual.py,sha256=h0tXvykZw4Zaw225RHfvw-3DvAyN8foyaMTroyACxqU,996
1139
- tests/models/site/test_precipitationMonthly.py,sha256=iccr-_ZrseM_OT3AKZbTNQhRFSIe-R6wXTDS-2wIVew,995
1140
- tests/models/site/test_rainfallAnnual.py,sha256=4YYna66qjJptPJ_URvdcQuRC3dri9SB0xmWP8DFwslM,986
1141
- tests/models/site/test_rainfallMonthly.py,sha256=A3gIe2Yxt9CLtLcAJNCQ0-8aRB49VdfKBLBy-7eDgJw,985
1142
- tests/models/site/test_salineWater.py,sha256=by_goKU4q5Dr-ctqosfrjFPZsG9KeG26Y_xMWEHBhpA,985
1143
- tests/models/site/test_soilMeasurement.py,sha256=hZVgNmN5fgrHyTeXO1HrZ4tPm6Ko0yiTNbBfkDsdrUE,4398
1144
- tests/models/site/test_temperatureAnnual.py,sha256=nOJG9ZJ8NCMM8T47uxxBeloIYLFN6-xtvUBqJsqt8xk,992
1145
- tests/models/site/test_temperatureMonthly.py,sha256=C2lv-lpYqH7VUGOlxNLE6d7k_dFS6NYe8BvMlrJorCw,991
1146
- tests/models/site/test_totalNitrogenPerKgSoil.py,sha256=2ILrA0jQKGniiKwS5FF3ZLtudgUgjcMnzFtrHpJKPTc,1161
1147
- tests/models/site/test_waterDepth.py,sha256=rK5zXf55b-gLgE9ArZsWvzrbyQ7MhjDNBfv2qE0N2eg,1119
1148
1153
  tests/models/site/measurement/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1149
1154
  tests/models/site/measurement/test_value.py,sha256=i6w7X0Qb9utIGeopjQLz4S3tBrXVVFzZTh2q1JSxXu0,1001
1150
1155
  tests/models/site/post_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1153,7 +1158,7 @@ tests/models/site/post_checks/test_country.py,sha256=LENeyFF5V440H06l-gYxl9fozBm
1153
1158
  tests/models/site/pre_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1154
1159
  tests/models/site/pre_checks/test_cache_geospatialDatabase.py,sha256=2t8XSo12yGu1e7mmbKLiyomwHFBcvHbyOsCfxNWTwSg,658
1155
1160
  tests/models/site/pre_checks/test_cache_years.py,sha256=sU0OhXGa4wC2DKduzlcxQVc51srS0Oks3L1gh1nJGf8,756
1156
- tests/models/site/pre_checks/test_country.py,sha256=XXgtoROcsdTD7Bq4fMuvO2Q-CQYneyncLxRveqRcEfY,379
1161
+ tests/models/site/pre_checks/test_country.py,sha256=f96w3K1kxt-2_D39P7ekhdAyytXOeZR-blQvXL5hTlo,439
1157
1162
  tests/models/stehfestBouwman2006/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1158
1163
  tests/models/stehfestBouwman2006/test_n2OToAirCropResidueDecompositionDirect.py,sha256=NF0wADubo9boAuYMtUGH30s4tieHE8LNrf547JgmlAE,677
1159
1164
  tests/models/stehfestBouwman2006/test_n2OToAirExcretaDirect.py,sha256=9j-gLUiZfrkZO8KnuwVancRD1r31159t5VpBlMk-W6s,660
@@ -1196,19 +1201,19 @@ tests/models/utils/test_impact_assessment.py,sha256=rZVGzf_ZKOttdTxyyalR5DtcG9vH
1196
1201
  tests/models/utils/test_indicator.py,sha256=zEBSwHO-0py20lydi_9Lsg1RGsPnJ2e6JccvhtxVzIY,636
1197
1202
  tests/models/utils/test_input.py,sha256=oUjgIYrqPf-KxgJB1mjbPlj95MbBp-4gQygQTJpI4rI,2441
1198
1203
  tests/models/utils/test_liveAnimal.py,sha256=bntT4vULWsDF2DOigtiMjpS0gJS5ipalPsfrk-JxC-I,986
1199
- tests/models/utils/test_measurement.py,sha256=8HAZhVivR6QlTTMx1TJrOBwgT-Oi5WTWCXcQelE9_j8,3678
1204
+ tests/models/utils/test_measurement.py,sha256=IGrcjqZCs0nvAXOOFl4uW-_eclhG1CDYxj9SOZBDyNQ,3673
1200
1205
  tests/models/utils/test_practice.py,sha256=_vUJZp1GyRtrH3GES5R00sqGz3Bho6hngqaN_0p5hOk,618
1201
1206
  tests/models/utils/test_product.py,sha256=heEJiDMGP4h7iHEz0ukQ_7-5VxLLOJdSrQ9PFqwvRyI,2302
1202
1207
  tests/models/utils/test_property.py,sha256=n69G6f2LimZopjh3l-0n4cjrKusy4GWH4XsOwOmfXKc,624
1203
1208
  tests/models/utils/test_site.py,sha256=6jy4iCKAlxo_r1T0sXlkVTSIGT9C1r6qk9rfLCMmHo8,3115
1204
- tests/models/utils/test_source.py,sha256=3rtjBea7lM7Jv4fyaBk8yAOPO4FvD3fef0syWbqshS8,1112
1209
+ tests/models/utils/test_source.py,sha256=P40VGf1Yr-cMUPQ4k3OT4AdWPsX2R5xTmhnRzGRQvo4,2018
1205
1210
  tests/models/utils/test_stats.py,sha256=S8MiRh_-VJ7bqpeVGFR4DxLhm_4WYq-1vK7Z_ryKCqI,7119
1206
1211
  tests/models/utils/test_term.py,sha256=M5Sa26v2gzQYbZ4H_fo7DspnaCx__-WtL-MULGapCWk,3509
1207
1212
  tests/models/utils/test_time_series.py,sha256=LMhRPf8rp3nAriKAC-2K3FDkrMWntRTUUCERw7Lt68g,2686
1208
1213
  tests/models/webbEtAl2012AndSintermannEtAl2012/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1209
1214
  tests/models/webbEtAl2012AndSintermannEtAl2012/test_nh3ToAirOrganicFertiliser.py,sha256=qi2FNXS5Af2WDtm7nq_FsprH3BfCF0XxnE0XHmC4aIY,2244
1210
1215
  tests/orchestrator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1211
- tests/orchestrator/test_models.py,sha256=v5VnyELmrSEcTOtw4lyk2U0r016z8Xx34EFs0FJm5AA,1972
1216
+ tests/orchestrator/test_models.py,sha256=uElZTnDKJeI-HWyfWQCWl74p93uP6qBIfDBXGxJnUgs,2045
1212
1217
  tests/orchestrator/test_orchestrator.py,sha256=dlO4CKn04m__SZhDtvy1npvQUavVNhdcRe4Unj7wg6g,742
1213
1218
  tests/orchestrator/test_utils.py,sha256=Sqysl2ocifLUeSbgGUdeRn0Sof0xVEeH4dgoXfe18yw,3050
1214
1219
  tests/orchestrator/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1225,8 +1230,8 @@ tests/orchestrator/strategies/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
1225
1230
  tests/orchestrator/strategies/run/test_add_blank_node_if_missing.py,sha256=K4xg4UAXfNhSaLyknKVPO7MGBF44Z_gD7CuZ_pe28gU,3512
1226
1231
  tests/orchestrator/strategies/run/test_add_key_if_missing.py,sha256=hKwvk1ohcBVnQUCTiDhRW99J0xEa29BpwFi1KC0yWLE,329
1227
1232
  tests/orchestrator/strategies/run/test_always.py,sha256=w5-Dhp6yLzgZGAeMRz3OrqZbbAed9gZ1O266a3z9k7w,134
1228
- hestia_earth_models-0.69.1.dist-info/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
1229
- hestia_earth_models-0.69.1.dist-info/METADATA,sha256=3TjaUvCoJ-x7LnRq7_JoqwKsbJ_XFw9blK6NOxbChOc,4045
1230
- hestia_earth_models-0.69.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1231
- hestia_earth_models-0.69.1.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
1232
- hestia_earth_models-0.69.1.dist-info/RECORD,,
1233
+ hestia_earth_models-0.70.1.dist-info/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
1234
+ hestia_earth_models-0.70.1.dist-info/METADATA,sha256=mN1IDyjDl_XkUzEYHm_RGjYpjVRp4E-l_rLfoOPiKZ0,4045
1235
+ hestia_earth_models-0.70.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1236
+ hestia_earth_models-0.70.1.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
1237
+ hestia_earth_models-0.70.1.dist-info/RECORD,,