hestia-earth-models 0.64.14__py3-none-any.whl → 0.65.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of hestia-earth-models might be problematic. Click here for more details.

Files changed (112) hide show
  1. hestia_earth/models/agribalyse2016/fuelElectricity.py +1 -1
  2. hestia_earth/models/cache_sites.py +15 -24
  3. hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandTransformation.py +6 -9
  4. hestia_earth/models/cycle/input/hestiaAggregatedData.py +46 -22
  5. hestia_earth/models/cycle/pre_checks/cache_sources.py +3 -25
  6. hestia_earth/models/cycle/product/economicValueShare.py +2 -2
  7. hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandTransformation.py +11 -33
  8. hestia_earth/models/faostat2018/landTransformation100YearAverageDuringCycle.py +34 -0
  9. hestia_earth/models/faostat2018/landTransformation20YearAverageDuringCycle.py +34 -0
  10. hestia_earth/models/faostat2018/utils.py +47 -3
  11. hestia_earth/models/hestia/landCover.py +5 -5
  12. hestia_earth/models/hestia/seed_emissions.py +275 -0
  13. hestia_earth/models/ipcc2019/aboveGroundBiomass.py +2 -2
  14. hestia_earth/models/ipcc2019/belowGroundBiomass.py +8 -2
  15. hestia_earth/models/ipcc2019/biomass_utils.py +11 -4
  16. hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py +19 -10
  17. hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py +2 -1
  18. hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py +2 -1
  19. hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py +8 -7
  20. hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py +2 -1
  21. hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1_utils.py +28 -34
  22. hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2_utils.py +8 -12
  23. hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py +13 -30
  24. hestia_earth/models/linkedImpactAssessment/{landTransformationFromCropland20YearAverageInputsProduction.py → landTransformation100YearAverageInputsProduction.py} +5 -2
  25. hestia_earth/models/linkedImpactAssessment/{landTransformationFromCropland100YearAverageInputsProduction.py → landTransformation20YearAverageInputsProduction.py} +5 -2
  26. hestia_earth/models/linkedImpactAssessment/utils.py +69 -12
  27. hestia_earth/models/mocking/search-results.json +444 -444
  28. hestia_earth/models/pooreNemecek2018/excretaKgN.py +45 -41
  29. hestia_earth/models/pooreNemecek2018/excretaKgVs.py +89 -63
  30. hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py +8 -8
  31. hestia_earth/models/pooreNemecek2018/utils.py +60 -19
  32. hestia_earth/models/schererPfister2015/nErosionSoilFlux.py +4 -3
  33. hestia_earth/models/schererPfister2015/pErosionSoilFlux.py +4 -3
  34. hestia_earth/models/schererPfister2015/utils.py +12 -9
  35. hestia_earth/models/site/management.py +70 -55
  36. hestia_earth/models/site/pre_checks/cache_sources.py +2 -20
  37. hestia_earth/models/utils/__init__.py +12 -1
  38. hestia_earth/models/utils/aggregated.py +1 -1
  39. hestia_earth/models/utils/blank_node.py +20 -12
  40. hestia_earth/models/utils/cache_sources.py +15 -0
  41. hestia_earth/models/utils/crop.py +5 -0
  42. hestia_earth/models/utils/indicator.py +3 -1
  43. hestia_earth/models/version.py +1 -1
  44. {hestia_earth_models-0.64.14.dist-info → hestia_earth_models-0.65.0.dist-info}/METADATA +2 -2
  45. {hestia_earth_models-0.64.14.dist-info → hestia_earth_models-0.65.0.dist-info}/RECORD +75 -104
  46. tests/models/cml2001Baseline/test_abioticResourceDepletionMineralsAndMetals.py +1 -1
  47. tests/models/cycle/input/test_hestiaAggregatedData.py +5 -2
  48. tests/models/environmentalFootprintV3/test_soilQualityIndexLandTransformation.py +39 -28
  49. tests/models/{hyde32/test_landTransformationFromForest20YearAverageDuringCycle.py → faostat2018/test_landTransformation100YearAverageDuringCycle.py} +5 -5
  50. tests/models/{hyde32/test_landTransformationFromForest100YearAverageDuringCycle.py → faostat2018/test_landTransformation20YearAverageDuringCycle.py} +5 -5
  51. tests/models/faostat2018/test_utils.py +28 -0
  52. tests/models/hestia/test_landCover.py +2 -1
  53. tests/models/hestia/test_seed_emissions.py +27 -0
  54. tests/models/ipcc2019/test_aboveGroundBiomass.py +40 -4
  55. tests/models/ipcc2019/test_belowGroundBiomass.py +40 -4
  56. tests/models/ipcc2019/test_co2ToAirAboveGroundBiomassStockChange.py +52 -15
  57. tests/models/ipcc2019/test_co2ToAirBelowGroundBiomassStockChange.py +50 -14
  58. tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py +53 -32
  59. tests/models/ipcc2019/test_organicCarbonPerHa.py +91 -108
  60. tests/models/ipcc2019/test_organicCarbonPerHa_tier_1_utils.py +33 -50
  61. tests/models/ipcc2019/test_organicCarbonPerHa_tier_2_utils.py +0 -52
  62. tests/models/linkedImpactAssessment/test_freshwaterWithdrawalsInputsProduction.py +6 -4
  63. tests/models/linkedImpactAssessment/test_landOccupationInputsProduction.py +6 -4
  64. tests/models/linkedImpactAssessment/{test_landTransformationFromForest100YearAverageInputsProduction.py → test_landTransformation100YearAverageInputsProduction.py} +7 -5
  65. tests/models/linkedImpactAssessment/{test_landTransformationFromForest20YearAverageInputsProduction.py → test_landTransformation20YearAverageInputsProduction.py} +7 -5
  66. tests/models/pooreNemecek2018/test_excretaKgN.py +2 -2
  67. tests/models/pooreNemecek2018/test_excretaKgVs.py +1 -1
  68. tests/models/pooreNemecek2018/test_utils.py +26 -0
  69. tests/models/site/test_management.py +10 -27
  70. tests/models/test_cache_sites.py +40 -12
  71. tests/models/utils/test_blank_node.py +0 -8
  72. tests/models/utils/test_cache_sources.py +21 -0
  73. hestia_earth/models/blonkConsultants2016/landTransformationFromForest20YearAverageDuringCycle.py +0 -90
  74. hestia_earth/models/faostat2018/landTransformationFromCropland100YearAverage.py +0 -74
  75. hestia_earth/models/faostat2018/landTransformationFromCropland20YearAverage.py +0 -74
  76. hestia_earth/models/hyde32/__init__.py +0 -13
  77. hestia_earth/models/hyde32/landTransformationFromCropland100YearAverageDuringCycle.py +0 -60
  78. hestia_earth/models/hyde32/landTransformationFromCropland20YearAverageDuringCycle.py +0 -60
  79. hestia_earth/models/hyde32/landTransformationFromForest100YearAverageDuringCycle.py +0 -60
  80. hestia_earth/models/hyde32/landTransformationFromForest20YearAverageDuringCycle.py +0 -60
  81. hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle.py +0 -61
  82. hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py +0 -61
  83. hestia_earth/models/hyde32/landTransformationFromPermanentPasture100YearAverageDuringCycle.py +0 -61
  84. hestia_earth/models/hyde32/landTransformationFromPermanentPasture20YearAverageDuringCycle.py +0 -61
  85. hestia_earth/models/hyde32/utils.py +0 -72
  86. hestia_earth/models/linkedImpactAssessment/landTransformationFromForest100YearAverageInputsProduction.py +0 -36
  87. hestia_earth/models/linkedImpactAssessment/landTransformationFromForest20YearAverageInputsProduction.py +0 -36
  88. hestia_earth/models/linkedImpactAssessment/landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction.py +0 -36
  89. hestia_earth/models/linkedImpactAssessment/landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction.py +0 -36
  90. hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPasture100YearAverageInputsProduction.py +0 -36
  91. hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPasture20YearAverageInputsProduction.py +0 -36
  92. tests/models/blonkConsultants2016/test_landTransformationFromForest20YearAverageDuringCycle.py +0 -36
  93. tests/models/cycle/pre_checks/test_cache_sources.py +0 -25
  94. tests/models/faostat2018/test_landTransformationFromCropland100YearAverage.py +0 -40
  95. tests/models/faostat2018/test_landTransformationFromCropland20YearAverage.py +0 -40
  96. tests/models/hyde32/__init__.py +0 -0
  97. tests/models/hyde32/test_landTransformationFromCropland100YearAverageDuringCycle.py +0 -21
  98. tests/models/hyde32/test_landTransformationFromCropland20YearAverageDuringCycle.py +0 -21
  99. tests/models/hyde32/test_landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle.py +0 -23
  100. tests/models/hyde32/test_landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py +0 -21
  101. tests/models/hyde32/test_landTransformationFromPermanentPasture100YearAverageDuringCycle.py +0 -21
  102. tests/models/hyde32/test_landTransformationFromPermanentPasture20YearAverageDuringCycle.py +0 -21
  103. tests/models/linkedImpactAssessment/test_landTransformationFromCropland100YearAverageInputsProduction.py +0 -23
  104. tests/models/linkedImpactAssessment/test_landTransformationFromCropland20YearAverageInputsProduction.py +0 -23
  105. tests/models/linkedImpactAssessment/test_landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction.py +0 -23
  106. tests/models/linkedImpactAssessment/test_landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction.py +0 -23
  107. tests/models/linkedImpactAssessment/test_landTransformationFromPermanentPasture100YearAverageInputsProduction.py +0 -24
  108. tests/models/linkedImpactAssessment/test_landTransformationFromPermanentPasture20YearAverageInputsProduction.py +0 -24
  109. tests/models/site/pre_checks/test_cache_sources.py +0 -21
  110. {hestia_earth_models-0.64.14.dist-info → hestia_earth_models-0.65.0.dist-info}/LICENSE +0 -0
  111. {hestia_earth_models-0.64.14.dist-info → hestia_earth_models-0.65.0.dist-info}/WHEEL +0 -0
  112. {hestia_earth_models-0.64.14.dist-info → hestia_earth_models-0.65.0.dist-info}/top_level.txt +0 -0
@@ -1,12 +1,12 @@
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=KQp9cUKE-aIcYJoMWEtKFYS8gBFfsx5LKQhqoWpUSoM,6065
3
+ hestia_earth/models/cache_sites.py,sha256=wcF8gr3gEaHoqCP62imvXVrvSLYPYEHTzxkayy4xyck,5645
4
4
  hestia_earth/models/log.py,sha256=_zAfyOkL_VknEnMFvcpvenSMghadlDfZhiSx28545Gk,3558
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=4fHJn2y0KMV79wSdP8-3psf2aitG-bUGkvk9GQIo5qM,20
7
+ hestia_earth/models/version.py,sha256=OX4X3GJCNkyCV2DdC_ucLHqSDyfUfnHE3doDBuyQcqk,19
8
8
  hestia_earth/models/agribalyse2016/__init__.py,sha256=WvK0qCQbnYtg9oZxrACd1wGormZyXibPtpCnIQeDqbw,415
9
- hestia_earth/models/agribalyse2016/fuelElectricity.py,sha256=tnGxBmJdPfPFfehLUQcefEqy1lHvzsSpx_s7O8nf3Zs,4412
9
+ hestia_earth/models/agribalyse2016/fuelElectricity.py,sha256=zcuarKatWLIUVwFy71wE2j--tftKga7tobxhasTlruY,4438
10
10
  hestia_earth/models/agribalyse2016/machineryInfrastructureDepreciatedAmountPerCycle.py,sha256=BPjnWmg73i_OxM2ouCdMTWZtPIqyoUAXrvutntyteE0,3390
11
11
  hestia_earth/models/akagiEtAl2011AndIpcc2006/__init__.py,sha256=WK7xQwUPX48JGqZeb2S2EKdtXuxMjY7HYyUFHItUqUo,425
12
12
  hestia_earth/models/akagiEtAl2011AndIpcc2006/ch4ToAirCropResidueBurning.py,sha256=Mea3L8blwJpRzzJHIMJH71Pn93gz1M2KN2pb43tGBfs,1642
@@ -19,12 +19,11 @@ hestia_earth/models/aware/scarcityWeightedWaterUse.py,sha256=iTmjr_r_Zc2u1w6wjC6
19
19
  hestia_earth/models/blonkConsultants2016/__init__.py,sha256=jJhYkwblgQZRg3QOERBZfl4Nw9szPn-Mljz7KMWlXXM,421
20
20
  hestia_earth/models/blonkConsultants2016/ch4ToAirNaturalVegetationBurning.py,sha256=i9hPs8w3MTbo-3oio-vIkLeQ9VApKrhfNVihsmL8ZUA,3065
21
21
  hestia_earth/models/blonkConsultants2016/co2ToAirAboveGroundBiomassStockChangeLandUseChange.py,sha256=h3l6l6t950dPYkz-vj4w_MGHLwW4CTwH_l5eXlA1u5A,3006
22
- hestia_earth/models/blonkConsultants2016/landTransformationFromForest20YearAverageDuringCycle.py,sha256=YKajTDFoX46FgQlxpTymbth37zB4CGxy3pT0-KGPyHk,3706
23
22
  hestia_earth/models/blonkConsultants2016/n2OToAirNaturalVegetationBurningDirect.py,sha256=qU7FRqYJm47olbUY239YHhdn2OkMQ_GTDP5O27VTlmY,3071
24
23
  hestia_earth/models/blonkConsultants2016/utils.py,sha256=hmPnzJLmFgZvdzkk6Au2euglrvCGtCWtjM8w0rYQHr4,1517
25
24
  hestia_earth/models/chaudharyBrooks2018/__init__.py,sha256=LKxQu7-6gyWPpdXaYHDTawzsBNm7CpDrk98I5_TTLhA,420
26
25
  hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandOccupation.py,sha256=8l0CQp_mf37s4TY1U8nUEf8L6vFZbqBFjMFW77oBqLA,3918
27
- hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandTransformation.py,sha256=BxBOXXTCxTVAOhRht1wpzyLhVb9aYt12819xkiHlvdA,3544
26
+ hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandTransformation.py,sha256=_Xs3FBjOrK-_bSTtNKyYF1FNjoIYEBpwYNfiV3yEQGs,3255
28
27
  hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsTotalLandUseEffects.py,sha256=YLiwYlh3FM_aoLe26oDTYUHcFhWFHV6KjvlAprQlFo4,2604
29
28
  hestia_earth/models/chaudharyBrooks2018/utils.py,sha256=Z0IrvVv-dKsRt09LmT7sc6e1bWnhjZ-WBrO-namIngo,1539
30
29
  hestia_earth/models/cml2001Baseline/__init__.py,sha256=0uGrCKDNUH-MUkpvts9MyPMnZKao-M03gU8uKquUozQ,416
@@ -94,7 +93,7 @@ hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioEnergy.py,sha25
94
93
  hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioFedWeight.py,sha256=7Dss1AIbG7GimQ3-Ecv2wsx1PrblZhHFYhMHWoyvPc4,2140
95
94
  hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioNitrogen.py,sha256=RV7lLd4PiFRCkH83-DvuZKnOCA9bXbYOcDHea8Wz4LY,2603
96
95
  hestia_earth/models/cycle/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
- hestia_earth/models/cycle/input/hestiaAggregatedData.py,sha256=XkO72m16xZxX0ykBOw8Dx14eM4yTEOG12m7HwoUZ9HA,5035
96
+ hestia_earth/models/cycle/input/hestiaAggregatedData.py,sha256=_YYV49HtJqGB8cnjTG5DRCrHyUT2DP3gzcw8He3FqWI,6031
98
97
  hestia_earth/models/cycle/input/properties.py,sha256=xJojLiaMSqFVunJi8aOiTtn8wzkizduinMSxsGGhKN4,3187
99
98
  hestia_earth/models/cycle/input/value.py,sha256=kolH9Fc5GIn9OVH2DgHEaW8ksS4xisy0LerS3WkKK9E,1550
100
99
  hestia_earth/models/cycle/post_checks/__init__.py,sha256=5ThdvGKp7ilFOzn8Tq23c4XXqhA345PYIe63yOtGJTY,336
@@ -104,12 +103,12 @@ hestia_earth/models/cycle/post_checks/site.py,sha256=62Iylm986-ca2GL7uI0qlsjCCK9
104
103
  hestia_earth/models/cycle/practice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
104
  hestia_earth/models/cycle/practice/value.py,sha256=CQ1SkleHDkAtO0_xwcziJ9uCvz_Pr7W1HVOH5_meNdc,2039
106
105
  hestia_earth/models/cycle/pre_checks/__init__.py,sha256=T8NfEXznq7Q1VUxqBOBP7Rz_DwoYvWYoYqe-Txznu24,352
107
- hestia_earth/models/cycle/pre_checks/cache_sources.py,sha256=jCynHYIqOVizBSPKWKip9-TXSi58NVParZd4ntR9LSY,899
106
+ hestia_earth/models/cycle/pre_checks/cache_sources.py,sha256=G6LH9BebbGIZnN4tpY8WlNEnmauMAROnLhZu4ZV8D9U,269
108
107
  hestia_earth/models/cycle/pre_checks/otherSites.py,sha256=MQpf_v4lTIR60zF7slp3LBeAA0FtOG_A6t_7NxHd88I,1037
109
108
  hestia_earth/models/cycle/pre_checks/site.py,sha256=OkrEOxwbo5rzAWQaPt2p9uZ9g7Vc58QweGW5-Pt0jPY,882
110
109
  hestia_earth/models/cycle/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
110
  hestia_earth/models/cycle/product/currency.py,sha256=lB1pCD1747Ke3oFoqjAKEHbIdHPfrHKNaJSni69iMUQ,2150
112
- hestia_earth/models/cycle/product/economicValueShare.py,sha256=jSuwTa94OKnI4vn8B_DVkVyjRHSqDGoF6rAwl4NK1zk,8540
111
+ hestia_earth/models/cycle/product/economicValueShare.py,sha256=Ow0M1vN3TYvdB4NpTQo3IGqx8i3qZvRkjj7Z3Pg20ig,8576
113
112
  hestia_earth/models/cycle/product/price.py,sha256=BUkY9V2Frg442HEGG7PLmXZFTrBPbBFDTk5LbS40Ajs,1588
114
113
  hestia_earth/models/cycle/product/primary.py,sha256=FYyl-Mv8AmEml1nhDJwU01N4LrszJm6E31eztQDHzdg,1853
115
114
  hestia_earth/models/cycle/product/properties.py,sha256=7iKIAYLi2_11HsizwAdNbEmx-C7CH_tTrgBFEePTcWs,1547
@@ -143,7 +142,7 @@ hestia_earth/models/emissionNotRelevant/__init__.py,sha256=NkP635TDNs7bQBv2n9tUT
143
142
  hestia_earth/models/environmentalFootprintV3/__init__.py,sha256=lzg9qccwd9tbspw0lQ58YPprnvvSLTn3QV5T2-tPcC4,425
144
143
  hestia_earth/models/environmentalFootprintV3/freshwaterEcotoxicityPotentialCtue.py,sha256=N_gw2aNoCMW5Z1XM-uAyCF1kfpZUI07giv_bo3Lmr5Q,918
145
144
  hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandOccupation.py,sha256=r3GV2pspKWAlKU46TMh_6D_rrXtY_onhk3RnukzJjD8,5095
146
- hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandTransformation.py,sha256=ivz08j-LP9uqnFn9QoVHa29I9TDLXuH_0FvkoLlpa1M,7300
145
+ hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandTransformation.py,sha256=LXf9Fyl02RfX42u79Z1TCQAEZAgGAfyd3SFPF1InrtY,6233
147
146
  hestia_earth/models/environmentalFootprintV3/soilQualityIndexTotalLandUseEffects.py,sha256=SIjFYPv4n3mziohW2nlycaMssHQ3ws79hqHa4i3sCVI,2997
148
147
  hestia_earth/models/environmentalFootprintV3/utils.py,sha256=fZ99_G0Kh4OUW5wH-LglzCrKp8l2plKuCs4yvUH_3hs,699
149
148
  hestia_earth/models/epa2014/__init__.py,sha256=ckGf_6X7CCzI_18OqchEkuJAXKXM1x7V53u480ckknM,408
@@ -153,12 +152,12 @@ hestia_earth/models/fantkeEtAl2016/damageToHumanHealthParticulateMatterFormation
153
152
  hestia_earth/models/faostat2018/__init__.py,sha256=ecN-pKF1pkFnzmooBrg1VAxJkG76q9v4piiaKGP_vbo,412
154
153
  hestia_earth/models/faostat2018/coldCarcassWeightPerHead.py,sha256=y1ouj5FBrnGWxd4dIC7luG6iQwiMrm1CGgYbXCcKS8E,3139
155
154
  hestia_earth/models/faostat2018/coldDressedCarcassWeightPerHead.py,sha256=Aphq7r06Q5-RDer4i1CneOLifVQCKTiVPTIWE3AxLfE,3230
156
- hestia_earth/models/faostat2018/landTransformationFromCropland100YearAverage.py,sha256=M0NblGiHme8yL8CBvZvfgbW52DODq4FO_Y3iThlq3n0,2684
157
- hestia_earth/models/faostat2018/landTransformationFromCropland20YearAverage.py,sha256=HuFHJDAqNaaJWpaWxD1jGaQsTdsJEVufsPGKwI6iAb0,2677
155
+ hestia_earth/models/faostat2018/landTransformation100YearAverageDuringCycle.py,sha256=Pp94-1uMHN-jlMIbUQB-Go26WAxtMtTmf8zyyyAEvvk,998
156
+ hestia_earth/models/faostat2018/landTransformation20YearAverageDuringCycle.py,sha256=LNQfb_vqNsJOrgZXVo6m9hBGdI8OaHSnfA9jSbp6JVY,995
158
157
  hestia_earth/models/faostat2018/liveweightPerHead.py,sha256=flI3_TyG-7xoWp6cU6pZAFiXyHyFkfRz7Lmb7cQAffI,5140
159
158
  hestia_earth/models/faostat2018/readyToCookWeightPerHead.py,sha256=b1_GZQ3oFl88w6TY5DqLSqXNaYX6TcRBK4R9M2cWSjM,3165
160
159
  hestia_earth/models/faostat2018/seed.py,sha256=ts9PKs9UnZnJ9nPFlL7etL1Qb9uIWIES8Mz8W7FWbOw,2917
161
- hestia_earth/models/faostat2018/utils.py,sha256=gxs7tULyBDhkvB2NuI3RnYTYzm75vEw1B2dDf48D_R8,5741
160
+ hestia_earth/models/faostat2018/utils.py,sha256=hHlSjQPi518p4QYisaqFbc2F8As5VHyocjA_7WESGcw,7523
162
161
  hestia_earth/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
162
  hestia_earth/models/faostat2018/product/price.py,sha256=X7Zxa-rXthzYdgw2lzybbHc-oKGE5nyXpBn-BfZC_7w,7753
164
163
  hestia_earth/models/frischknechtEtAl2000/__init__.py,sha256=Fixyy9UwoCGP5-MHyJu_ctS40SQ2imfvZo8a547029U,421
@@ -201,17 +200,8 @@ hestia_earth/models/haversineFormula/__init__.py,sha256=o155nR-XI67iCSBVNYIu4sPR
201
200
  hestia_earth/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
201
  hestia_earth/models/haversineFormula/transport/distance.py,sha256=163KrmKzlEQuKYT1ZvpPgmKlv_-mmvxp0A1_uKya99w,4203
203
202
  hestia_earth/models/hestia/__init__.py,sha256=o5vAmPzSaK9XPgL8GCne3-lugfCOgZhHELYolNgqyyY,407
204
- hestia_earth/models/hestia/landCover.py,sha256=gOSmYi8ER08mClfHkBudEI1pjO6D1OwW6Iv3SSokFkk,28120
205
- hestia_earth/models/hyde32/__init__.py,sha256=hSOwDiK0M0NfmQbW_J7O_SZa8IsJMgITSHSVMsDS4KI,407
206
- hestia_earth/models/hyde32/landTransformationFromCropland100YearAverageDuringCycle.py,sha256=7ZqhExZORiYIzvkQhLhPdTPzyY2NnSKrat76poGn5tc,2392
207
- hestia_earth/models/hyde32/landTransformationFromCropland20YearAverageDuringCycle.py,sha256=RDMzmxz236nMSd5IYASXFMk8wL4HyeMi2zNdhhjkTs0,2388
208
- hestia_earth/models/hyde32/landTransformationFromForest100YearAverageDuringCycle.py,sha256=HRl901VmW9YkbY5FjfNFTJCCP99BAtnnR8fUvDEkkeY,2389
209
- hestia_earth/models/hyde32/landTransformationFromForest20YearAverageDuringCycle.py,sha256=rxpMfnqe1mzDZnJvTuLDq2wkNwo8pr7HP3iSa6sLrkI,2380
210
- hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle.py,sha256=hDBgoUxWkTn3xzmjGWwDIhltNwXdLcnwCTq3MQ-o1dk,2469
211
- hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py,sha256=Yi6Jnh4G4hILUoV2fgkDBNzT9Q7BY5wCUHEB-OUejys,2460
212
- hestia_earth/models/hyde32/landTransformationFromPermanentPasture100YearAverageDuringCycle.py,sha256=ZkRn4toDe3flLtJG6iptE6cCFEkexVQ4lg2nr779Do8,2442
213
- hestia_earth/models/hyde32/landTransformationFromPermanentPasture20YearAverageDuringCycle.py,sha256=wz2YMJ_qG1_2BosqsI6TDKAPqvVE6a3Ejuikz-cv-Z0,2433
214
- hestia_earth/models/hyde32/utils.py,sha256=38iHv9XBkQpvQn0iht22DP35bh9fC5BRmi3YVppEyGo,3505
203
+ hestia_earth/models/hestia/landCover.py,sha256=odmRx30UhT_MyOj5jIVtsmLsTcxqC4l-QkCXae_MQEo,28105
204
+ hestia_earth/models/hestia/seed_emissions.py,sha256=a-jUBoU5sb_KUTMInvB5Ios2BwGobHtmPHM_tzXEdHo,10576
215
205
  hestia_earth/models/impact_assessment/__init__.py,sha256=gTR_PhWps593fPhm-V826VLLrZVH8CNQTqxExB7GGNI,418
216
206
  hestia_earth/models/impact_assessment/allocationMethod.py,sha256=Qz41nTtMpDCcPy7PjhVtafE13dfJLX_D3Rg3yNhdY_Q,1279
217
207
  hestia_earth/models/impact_assessment/emissions.py,sha256=mJsTasM-5AFtZeKzQ9Q38SDLcnl_lQwfjQ52ro2Pjmg,3444
@@ -246,21 +236,21 @@ hestia_earth/models/ipcc2013ExcludingFeedbacks/gwp100.py,sha256=2fFEHTXxel_XPiMX
246
236
  hestia_earth/models/ipcc2013IncludingFeedbacks/__init__.py,sha256=VJ16KIGQQHybzZiTvu3mpZy_3j0xcd06RHHCfPrCMgU,427
247
237
  hestia_earth/models/ipcc2013IncludingFeedbacks/gwp100.py,sha256=HR2vnOc64mg_fxe9m5NmqxBZ8-aFuKb44gmItyuRL1s,1041
248
238
  hestia_earth/models/ipcc2019/__init__.py,sha256=LdRpu8KbEc-MroIwXfKDjfj-xbgmfUYgctjKVvtpRfQ,409
249
- hestia_earth/models/ipcc2019/aboveGroundBiomass.py,sha256=GHICyiq7pIFwTU7YryAbKqReEINIyG60TyNvY9_b9G4,19053
239
+ hestia_earth/models/ipcc2019/aboveGroundBiomass.py,sha256=K9gwIA9nwUMmoknVW5RhePwNIJFd38KMSs3SyDYRUes,19053
250
240
  hestia_earth/models/ipcc2019/aboveGroundCropResidueTotal.py,sha256=lT2QVV5c2LvQqZRfPEvFT_bMTayMXgIsFLnx8I6iYzw,3089
251
- hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=UtNolXLL4N-Fx6BCEFqYw5P9G_QcNsLApJhu0ekO-Gc,17874
241
+ hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=49cJSAlQxUH-n4f9VMB2utz74X0va6u3Ts0fQ0qldB8,18054
252
242
  hestia_earth/models/ipcc2019/belowGroundCropResidue.py,sha256=7AFU2Q0qPAvv6uEKWByS38jl77FvjTPbGm2GQ53waGg,3499
253
- hestia_earth/models/ipcc2019/biomass_utils.py,sha256=aMdAO-Ssfy1DKaNg19G9ea3z18MbfV6coqQjPu6Tu90,15584
243
+ hestia_earth/models/ipcc2019/biomass_utils.py,sha256=R7t-YWq5K-AMHihlWh8hWHfhaoGZMmDf8SNFM6-wGdU,15895
254
244
  hestia_earth/models/ipcc2019/carbonContent.py,sha256=tlQvu4Auhpjmaz7XrZz86xwxVrJhsYYf8DFA_aQeev4,7255
255
245
  hestia_earth/models/ipcc2019/ch4ToAirAquacultureSystems.py,sha256=q6yyEiYQhHJ2VyQy2Fa84cuTl1D8bjBXOK3UpaRuo20,3196
256
- hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=JmvKP9n3IPO4RkGQ8o7aJ4axuJV_WKDRCFNR_AOmdyM,11685
246
+ hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=QLQo_VtdumjVdVcaYBhpK5nwEfQJb6EnFkcAI2VIRio,11846
257
247
  hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=WnKmSQSqr1Jv7_95DLgtufPYGN5TeV3eDcFV3btDoq8,6706
258
248
  hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py,sha256=TJ4J7VA5n4RPrJYZQeR3lc3ZoCw7T1E5Cb1XJewr834,7331
259
- hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py,sha256=fefPcxy7TTG-33dgZecDppMroUAmKoluhomyLuRqQiU,6545
260
- hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py,sha256=l5Mrb8non9JjQhpWMzqHHK7FAjYPuWUzIwa08zdBUpo,6595
261
- hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py,sha256=yxIrMBFXJCts5K0MGaUxGLzpZQBXFXHppqnfXPKQWTM,55594
249
+ hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py,sha256=s0zViR8Ab_b_sMDwMzopN4SAWdm6wpzGs-Hf_TtWaiw,6641
250
+ hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py,sha256=trinj_A8H6H_zMaQMjYXcBePvjDKXhbqmIpeet0lW6g,6691
251
+ hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py,sha256=PDjwK_mCel5V-zk8Gz_bwxlI8sqmWOy2gqZYEy3FjeQ,55681
262
252
  hestia_earth/models/ipcc2019/co2ToAirLimeHydrolysis.py,sha256=7z0zdqiiWQwkyJCgSNMoK2mft3cJkTRlqwKrMuSKdWI,2454
263
- hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py,sha256=1yC99dH3ZQC3PX_ppLhDxzECTTvGwiRSGxkFudEzKBw,6613
253
+ hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py,sha256=UQjmccUsKxsycG_htbD1-T2xw6AklKqIR3u8KIMGBOY,6709
264
254
  hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py,sha256=Ofld5SuRKndcKB3FFFoUdzSgNq-gc4kmiNyyrPKQ3Io,3580
265
255
  hestia_earth/models/ipcc2019/croppingDuration.py,sha256=-CesZ2cNDOQoU3QyVFnSWYO-6-JXxuhRDQoHoxTawDA,3228
266
256
  hestia_earth/models/ipcc2019/ligninContent.py,sha256=Qh-UH4lv1TIf7wWlbAPwIZZHxzbbmQgND3m15pt5Si8,7285
@@ -282,9 +272,9 @@ hestia_earth/models/ipcc2019/no3ToGroundwaterOrganicFertiliser.py,sha256=px2SN-u
282
272
  hestia_earth/models/ipcc2019/noxToAirInorganicFertiliser.py,sha256=fmmFgjtvOD2TrrLY03jYly_KvDnCsAXqhL_tmZQQt-A,4480
283
273
  hestia_earth/models/ipcc2019/noxToAirOrganicFertiliser.py,sha256=9dx_MRTwJGxJRq6mj2EJQMdQ2w6j7lw0fQk0If_cIGc,4152
284
274
  hestia_earth/models/ipcc2019/organicCarbonPerHa.py,sha256=C9ef41fd-gYixEV3sTs9VMHHdnSZJ14kbEEmMG116hY,8653
285
- hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1_utils.py,sha256=ns4kWVRoXdAmhyPfKlMTiRcsuHFJtpoNz41nyNwZ3Sg,82096
286
- hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2_utils.py,sha256=9S_dz4CU5yw6ClFnGZxch1GWuJMmbSVapkTgSyXMG3Q,63535
287
- hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=HGJC2zcEvtbkovccAZ5MYm84wBXUZH0Q3UyJOXD0ltA,10157
275
+ hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1_utils.py,sha256=OHHfDlvE4zWlNXi54tFz0P40H8YhvZsWcfQUrhl3W-Y,81837
276
+ hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2_utils.py,sha256=RbQ8Zq20i24p4lR3jUeNewBwzOieHx6Jdq24B7MpFRc,63361
277
+ hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=12p4jUDggGoGelC9XGaeIIaqu2bbkugswq4aFmCPPq8,9734
288
278
  hestia_earth/models/ipcc2019/pastureGrass.py,sha256=Hhm9szzsL3otuo-V6fQ_cNyDbG0dlubr4-1L4WefbDE,10304
289
279
  hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=nL31uS3c77PH_5nA2E2MvB1NS2mMvhD341taGl5YWNE,13842
290
280
  hestia_earth/models/ipcc2019/utils.py,sha256=MSDMu15D9DnilFUgi4_6jYXC0FaKso3OODauGTMB6hs,6229
@@ -399,25 +389,19 @@ hestia_earth/models/linkedImpactAssessment/__init__.py,sha256=SPP09DMS4zUThyQfcg
399
389
  hestia_earth/models/linkedImpactAssessment/emissions.py,sha256=ZU68ljsidyqIKIdFqtR9mze5Am0fK_PE1x4GBTwBTr0,6395
400
390
  hestia_earth/models/linkedImpactAssessment/freshwaterWithdrawalsInputsProduction.py,sha256=DSLX_aEWaUFcFZRD46bG5lIQ4TtAtIqH-sMkVCJH2Dg,990
401
391
  hestia_earth/models/linkedImpactAssessment/landOccupationInputsProduction.py,sha256=SggB_4tpiKNeb6TIQWBm-X9VwG4pzLoyHdK8JroRIsE,576
402
- hestia_earth/models/linkedImpactAssessment/landTransformationFromCropland100YearAverageInputsProduction.py,sha256=jxeJS8r1qYIoyeEE-MGKbldEDL3x9CG8aIb4JdcUnj4,1036
403
- hestia_earth/models/linkedImpactAssessment/landTransformationFromCropland20YearAverageInputsProduction.py,sha256=vluuIcr1jYhs11oz7nANk2qUuUVPy5uNkvpfMv_M4LE,1034
404
- hestia_earth/models/linkedImpactAssessment/landTransformationFromForest100YearAverageInputsProduction.py,sha256=pDPLaJh6eWD_ENuWIuAhHHcgzWK44emt9A6Ckc0ob0c,1032
405
- hestia_earth/models/linkedImpactAssessment/landTransformationFromForest20YearAverageInputsProduction.py,sha256=h-ZxPjc4Wdl4fJThcbVkktHL2btO48cfmYA3pZLeKiY,1030
406
- hestia_earth/models/linkedImpactAssessment/landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction.py,sha256=Bb-qMHTjazCSZi0MGT9nYXDBb14jnpTbMzlz-X_5lMM,1064
407
- hestia_earth/models/linkedImpactAssessment/landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction.py,sha256=wQdJ4NqEfjI3N3tD8X5bCEmz-2XVoYVLriKcLRLhPmU,1062
408
- hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPasture100YearAverageInputsProduction.py,sha256=7btlXl5PL47qIjfs-w_xLZY_nsRnJAwTREtt8LpY6UI,1052
409
- hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPasture20YearAverageInputsProduction.py,sha256=pdluhfRQuJK0EHq-L0s0TOf37tvOQYB-M-wZiuSbarw,1050
410
- hestia_earth/models/linkedImpactAssessment/utils.py,sha256=dGwGc2d-8_WQElTpfyPmz5vQtL-LHQRmiZnCTuPXMDs,1876
392
+ hestia_earth/models/linkedImpactAssessment/landTransformation100YearAverageInputsProduction.py,sha256=DPBAr6RxM2X7rL1yNogqxHYdm-ZDYp_jFZaNmO1g_-o,1148
393
+ hestia_earth/models/linkedImpactAssessment/landTransformation20YearAverageInputsProduction.py,sha256=5TbUVK5Tkm9UGtzq3iSFk--f_oc3fA4LyihqInegphI,1145
394
+ hestia_earth/models/linkedImpactAssessment/utils.py,sha256=WgWhFgrPC-ZJuoAVhLWZvJ7NIDj6QXdblGKOu6jsr-s,3965
411
395
  hestia_earth/models/mocking/__init__.py,sha256=9VX50c-grz-snfd-7MBS0KfF7AadtbKuj7kK6PqtsgE,687
412
396
  hestia_earth/models/mocking/build_mock_search.py,sha256=p15ccEUmkmLp1RiGNznxMz3OFHbI8P1-29ExuohiQN8,1355
413
397
  hestia_earth/models/mocking/mock_search.py,sha256=ccFe_WrI73JElFmxp4hPNLCX7eeU--lBC1JFR901KJY,1069
414
- hestia_earth/models/mocking/search-results.json,sha256=Ed4ijfv2ta8OS8JLWAIGp7Wj6RBZGDjymyTHt1EUGYQ,101690
398
+ hestia_earth/models/mocking/search-results.json,sha256=zJwxkbn7uvCFScsfxub4Ad26J8pMRVh_9ZILRfy6qnE,101694
415
399
  hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
416
400
  hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=Qt-mel4dkhK6N5uUOutNOinCTFjbjtGzITaaI0LvYc4,2396
417
401
  hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=JT0RybbvWVlo01FO8K0Yj41HrEaJT3Kj1xfayr2X-xw,2315
418
402
  hestia_earth/models/pooreNemecek2018/ch4ToAirAquacultureSystems.py,sha256=CxjhFinScTebBGNVheEdbdw36DdHwoPszAnbxtd6_9s,6590
419
- hestia_earth/models/pooreNemecek2018/excretaKgN.py,sha256=kKzXD67L-VUFUMS2cu72V336eTZAviHPg8XddbYtF_w,6422
420
- hestia_earth/models/pooreNemecek2018/excretaKgVs.py,sha256=6XX7zzwnkG1Wezr44RxmQUTeGDPHKkRADqU3yhxg2m0,8428
403
+ hestia_earth/models/pooreNemecek2018/excretaKgN.py,sha256=WI0SJJR8uJFfG1hTHDSOeiuTMhAW1fKcm0MX1QEvxcg,6340
404
+ hestia_earth/models/pooreNemecek2018/excretaKgVs.py,sha256=TW0lF752Ljlx7zj1v3TkAYLYASsYsYpEy8KH9y2yTQ8,9446
421
405
  hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py,sha256=HB_9q5eE6al2Te3v29hC5wqxsYe4P46ZAPwdWNzx3v0,3939
422
406
  hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py,sha256=78N513lNtjol0KKddxmG3Pb9vAmledlrWbfURVdLHBA,3139
423
407
  hestia_earth/models/pooreNemecek2018/longFallowDuration.py,sha256=Wdm6QyOttCFP9Y3OjbaYrvdMmivOmMIT-m5Eg9SM9rY,1511
@@ -436,8 +420,8 @@ hestia_earth/models/pooreNemecek2018/plantationDensity.py,sha256=-y-zXHFPet0LdIg
436
420
  hestia_earth/models/pooreNemecek2018/plantationLifespan.py,sha256=FudC-csC1IkiFOJ_uD0s6_rwsgqVrUN6Ej7A03JXDsM,959
437
421
  hestia_earth/models/pooreNemecek2018/plantationProductiveLifespan.py,sha256=Q54woX67eUab0qEEAuW2naFGhnVPJHrMas3bG92KNeg,1740
438
422
  hestia_earth/models/pooreNemecek2018/rotationDuration.py,sha256=j5hW_NEKYQbeMcdsqp2nQIDXCnUdZIKURzAmPCiegQk,1525
439
- hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py,sha256=dSTghGYbVx_kGoOwFVybSZGUShRRJImanKIxrrtDEG0,2520
440
- hestia_earth/models/pooreNemecek2018/utils.py,sha256=E3DbgCD5wYMJbUdjUtSo2JGLhsadlbmaB9V0GYC16Tg,2082
423
+ hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py,sha256=Vx4T5qTM2GubwR-gRa4JEhkVi6LWYkt3jWN7VB0lHgY,2511
424
+ hestia_earth/models/pooreNemecek2018/utils.py,sha256=zdTnvuvLFVQSJnNz_fFh1xr6bdMGKY3Ten9UrBXId9U,3451
441
425
  hestia_earth/models/poschEtAl2008/__init__.py,sha256=nvyyGglxCTV4PpxcOjY7jJb0v8Bjzj435Zt1j6VcryM,414
442
426
  hestia_earth/models/poschEtAl2008/terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=1pd7RX4Q0ilASi9k3l1zNnz3bUg2MakR8luJQVxYxKA,1418
443
427
  hestia_earth/models/poschEtAl2008/terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=z6i-wYpPrchNmivb4Cvr9wOsc4WvDRQadORFOq_YiYM,1420
@@ -496,12 +480,12 @@ hestia_earth/models/recipe2016Individualist/ozoneDepletionPotential.py,sha256=cR
496
480
  hestia_earth/models/recipe2016Individualist/terrestrialAcidificationPotential.py,sha256=YvFqXh8SdYy1Na71mYGO9Dpi928fzzXESRA3x-JKG7Y,1069
497
481
  hestia_earth/models/recipe2016Individualist/terrestrialEcotoxicityPotential14Dcbeq.py,sha256=Sf6_kPt1hHRwe_Cg6Fz7nnxBZgIhpUzi8xMLJSxoRN8,928
498
482
  hestia_earth/models/schererPfister2015/__init__.py,sha256=_6FJKfWeAbbS3jFzQ8gEVzoX1LZdPWUTLrow6Hz90U0,419
499
- hestia_earth/models/schererPfister2015/nErosionSoilFlux.py,sha256=0l2AByDtq8Ci-36duTnwFvjeelnQ-_TOaeah5A2Yv8U,4924
500
- hestia_earth/models/schererPfister2015/pErosionSoilFlux.py,sha256=aWvcphQU4JMGiISXjPLqnakTObFn0VOn1T9z8e4xds0,5029
483
+ hestia_earth/models/schererPfister2015/nErosionSoilFlux.py,sha256=y4pS4ixDPILUodPL1igHptESrURcr7v5jpc4d5JoLx0,5015
484
+ hestia_earth/models/schererPfister2015/pErosionSoilFlux.py,sha256=5pyyJiYsKtNSzzbngq1wvYufGYxnj_Vge735wlrfetA,5120
501
485
  hestia_earth/models/schererPfister2015/pToDrainageWaterSoilFlux.py,sha256=iQs5lLLgGr1thOQ0ZnTLJDJjX7RBwPdu--8p81BZ988,2310
502
486
  hestia_earth/models/schererPfister2015/pToGroundwaterSoilFlux.py,sha256=tH-jyd8PFGvEVCO9u4coyVhghYcZyPgbPWQXQsTmDMg,1972
503
487
  hestia_earth/models/schererPfister2015/pToSurfaceWaterSoilFlux.py,sha256=evd2jmFZ9lq-uwXiBTgP5wJ-KTjNBVztjSp8eW9-8qg,2947
504
- hestia_earth/models/schererPfister2015/utils.py,sha256=40IbxK5w5DuwVSm9ox6v2ibzt29it7ugYThUWpvYOIU,3145
488
+ hestia_earth/models/schererPfister2015/utils.py,sha256=Xi59KRGbdbtqvQ9pfh7OWTkGnobDA4188h_oMyT8oa0,3330
505
489
  hestia_earth/models/schmidt2007/__init__.py,sha256=xheSN6LOGXpWx7Hnv83onhe60Xk1_jk1PJg1nH_aZOQ,412
506
490
  hestia_earth/models/schmidt2007/ch4ToAirWasteTreatment.py,sha256=-N5uLvVHlA2djOs_lwR_8RmbeCfkPw5p3vmbqG2kzkI,1474
507
491
  hestia_earth/models/schmidt2007/h2SToAirWasteTreatment.py,sha256=f8a5ZRuCltpO8GWwQ0l1laWrw2yPGqOPaq8j6ZOJFTE,1474
@@ -513,7 +497,7 @@ hestia_earth/models/site/brackishWater.py,sha256=vLEhIZv5PUKwzwvIuYrWi7K---fq7ZX
513
497
  hestia_earth/models/site/cationExchangeCapacityPerKgSoil.py,sha256=0eH4A-tXJ0hvIkiYXWxlx8TfrdbIKUGYUDk97-yQJgg,3653
514
498
  hestia_earth/models/site/flowingWater.py,sha256=v3g5722GIA4zQAUQI9yGFiZvFvI1QAVZqlQrY-6_B3A,1731
515
499
  hestia_earth/models/site/freshWater.py,sha256=FXs3Vt8V4e-wn325_dwSTOKlZtn5ksNUpvYGDeLJShY,1255
516
- hestia_earth/models/site/management.py,sha256=hjDWvFc1kjaV0-bqG44HbGYJOhpSxb1-Pj5yVCy19Hk,10822
500
+ hestia_earth/models/site/management.py,sha256=LXPHWwQ_3HVs651aZx3-CrczhEhYGIiga-WlEmw8A3c,11717
517
501
  hestia_earth/models/site/netPrimaryProduction.py,sha256=UIIQkYd911qVzrWjxBLrC37e-RARIVgDwLdARY9BuLw,1849
518
502
  hestia_earth/models/site/organicCarbonPerHa.py,sha256=F2ShinHf0m9qKa1nCYBspsDkRY6jzOl0wM8mSDre22I,14916
519
503
  hestia_earth/models/site/organicCarbonPerKgSoil.py,sha256=t--wAshiAKS-JvEKhLFRadGvgSBv5NFZ68jdyms_wh4,1945
@@ -539,7 +523,7 @@ hestia_earth/models/site/post_checks/__init__.py,sha256=CkExxesk1GuG8NjrbKfix1iD
539
523
  hestia_earth/models/site/post_checks/cache.py,sha256=_MZsNsclecUdHDT2MsYx4cEsVUXydIasddgZNA6SU4k,284
540
524
  hestia_earth/models/site/pre_checks/__init__.py,sha256=fjv6nU5fiL-CLyaa-cBpiLB-xujgPzeK7i7ZJuTOjCI,394
541
525
  hestia_earth/models/site/pre_checks/cache_geospatialDatabase.py,sha256=gEceynsvPAB6lN36t73yRAAaIn0wLvvK3NK0vXKM7mY,5654
542
- hestia_earth/models/site/pre_checks/cache_sources.py,sha256=13kbIzCGox3IEsnCwpRi_ioHFcc1NhMm8yeW_8MOSGw,794
526
+ hestia_earth/models/site/pre_checks/cache_sources.py,sha256=DUh_XcLl60O20QvuHiE0ADNwkZPZY4EpMGUQuYebiTg,264
543
527
  hestia_earth/models/site/pre_checks/cache_years.py,sha256=qGwTaHlWxnVT7iVxXVcpJ-oG6M-VH4ZpCDTdTixUHR4,883
544
528
  hestia_earth/models/stehfestBouwman2006/__init__.py,sha256=EhvD4NK6oEPevusLb1WdYV3GT_fCtQx4gvdMhK_dEIQ,420
545
529
  hestia_earth/models/stehfestBouwman2006/n2OToAirCropResidueDecompositionDirect.py,sha256=6BDeQUwC2tgvZGB8FbyPVLCDqxH-h1RGM73RXucwkuo,2733
@@ -571,15 +555,16 @@ hestia_earth/models/transformation/product/__init__.py,sha256=47DEQpj8HBSa-_TImW
571
555
  hestia_earth/models/transformation/product/excreta.py,sha256=Yj9wMF5if-zivb6qbN3vy1X51ZNYxvoyG9f4KPp3Y18,5700
572
556
  hestia_earth/models/usetoxV2/__init__.py,sha256=pK37V3H-KvYcvRKw4Mv8CWrB2N0LFLzmv0jKLdhGGqs,409
573
557
  hestia_earth/models/usetoxV2/freshwaterEcotoxicityPotentialCtue.py,sha256=pPX8u-Aq6Pg5Y9xw0CS0S2WkAHQpOMl0lL2tLQwwOuU,918
574
- hestia_earth/models/utils/__init__.py,sha256=TAcIoHR4NBIuHjKEuTSK1s4Z5mEzHaDqOPzZ8gQT2D4,6452
575
- hestia_earth/models/utils/aggregated.py,sha256=sz6usleZmo_tC_hIvmGgYsX8-H0dulXmmhHK4EkA5Kg,4946
558
+ hestia_earth/models/utils/__init__.py,sha256=ncZ_1Yb2oZhV8KtdHDK7FkNIZT_kX09D-ik1oA3rzHE,6980
559
+ hestia_earth/models/utils/aggregated.py,sha256=01V5RDvO9EZAEiApY7M2dUoR4GcGxvAH5lvtIK_qjyI,4946
576
560
  hestia_earth/models/utils/animalProduct.py,sha256=M5IunAKGY6oZv3j1Ascl34ywyeLWApqOIlBzbtlA2FE,721
577
561
  hestia_earth/models/utils/aquacultureManagement.py,sha256=dxrbC1Xf140cohxTbSw6TxLAnAASWTdNZwBBam4yQnw,171
578
562
  hestia_earth/models/utils/array_builders.py,sha256=QEkM7e75Y9aq5yEPEk3R8md36IuvCDkpekdGm3uA0uk,19397
579
- hestia_earth/models/utils/blank_node.py,sha256=jLUWV0BZVX7NZ4Eo8pP5avV3QqI1HvvoHOAzNtfRe_E,50618
563
+ hestia_earth/models/utils/blank_node.py,sha256=xBHJ_qwSpH-lGqeexuP8twJJwdSDmcccrtCR0ga0Qto,50874
564
+ hestia_earth/models/utils/cache_sources.py,sha256=MBkrPpjwNiC4ApDjeYVHZjWBbpvAerXRDrMHpjasAZ0,377
580
565
  hestia_earth/models/utils/completeness.py,sha256=2-GusD9UycobDZq8y5jar0ZcOjyqnSbzPRT_5XMc4YA,1259
581
566
  hestia_earth/models/utils/constant.py,sha256=6wLx8xb2R8HtpEpVy5e-PbioOo7QCu2n-W72fs6OvgE,3411
582
- hestia_earth/models/utils/crop.py,sha256=5KigEHd15nT8O9_1woxKJF5rEWiSkIkJqDAXet8BB9g,2383
567
+ hestia_earth/models/utils/crop.py,sha256=imVLCFGB-h4kAktyg3lJPjXCXDQY3Lr5M0Gz_SqXNOg,2573
583
568
  hestia_earth/models/utils/cropResidue.py,sha256=_0Q35CrliJeo31xGHsPWe8A2oHxijdIsOrf3gBEqhlA,612
584
569
  hestia_earth/models/utils/cropResidueManagement.py,sha256=nIDFjf39rDD10UHSVudfDyu-EiL261g8jyrgS-2aDKw,347
585
570
  hestia_earth/models/utils/currency.py,sha256=f_ArJANb--pZq4LL49SXQ1AMX_oKroqwBXKRRQqZwsM,578
@@ -592,7 +577,7 @@ hestia_earth/models/utils/feedipedia.py,sha256=wzzrMbYlda1XCpWiObLz4bFLXbAZejHcx
592
577
  hestia_earth/models/utils/fertiliser.py,sha256=DBO4OBNgnQJ0fCQMDkIk_ZGZX-uKGaTFZCEXfAnJciY,690
593
578
  hestia_earth/models/utils/fuel.py,sha256=VR-nwJ9OA35vCfQ8Iwm0QBKulMFDBKCsnLp5VmNPmCM,1386
594
579
  hestia_earth/models/utils/impact_assessment.py,sha256=3nKhTzk5KTvoiOBWrNvClfBDHtep0KOrttkzl0vst94,8071
595
- hestia_earth/models/utils/indicator.py,sha256=IFrVIUYpmdVLOR1SKkrTReDbG1Tzq2b6daVvLMYpCs4,537
580
+ hestia_earth/models/utils/indicator.py,sha256=UuuraMUdKLqjcm_zEoF8BaMb76qW23djIA_2DeaoiEw,700
596
581
  hestia_earth/models/utils/inorganicFertiliser.py,sha256=_dLBY-otGkLr8PobR5dQ89bF2uwc2PB4JPrHFSksMEQ,1900
597
582
  hestia_earth/models/utils/input.py,sha256=gsVFKTC9WF8dO6YAg_-H_GAOQTnvAr49Ox5-eTH8zf8,5145
598
583
  hestia_earth/models/utils/landCover.py,sha256=8-nfynzCx9gf9YfhpuoH6Cn4kQwWFpYA5RmoGW-0ETE,300
@@ -616,7 +601,7 @@ hestia_earth/models/utils/transformation.py,sha256=nyT5Mz4_VgFwhkL8JoNX9kxxow0zu
616
601
  hestia_earth/models/webbEtAl2012AndSintermannEtAl2012/__init__.py,sha256=Niv7ZFMBCwThlbCKGOwA17QdkpOUDFrqrFItGNqnZAA,434
617
602
  hestia_earth/models/webbEtAl2012AndSintermannEtAl2012/nh3ToAirOrganicFertiliser.py,sha256=TGXyusrRd9shT842iqbrI6MkQhICgw7uYdrl4jsDrg8,4193
618
603
  tests/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
619
- tests/models/test_cache_sites.py,sha256=R35GdQtQ7gObX3BbH1Y2SDq3lBriXP1SC-1fNNkjN-U,2140
604
+ tests/models/test_cache_sites.py,sha256=vuEVZh_mkuI2cPotX2GB88lURJm2giOQ3yu2Cn4iLoI,2997
620
605
  tests/models/test_ecoinventV3.py,sha256=_BqfWiYFaw-Y7A-EeabHEnja3d7yb4Ed7gGGvu3Srpw,1936
621
606
  tests/models/test_ecoinventV3AndEmberClimate.py,sha256=_EOxdrdavXP6L5_LtvaVbXb_-56UJXSaiPhpGntmwVc,801
622
607
  tests/models/test_emissionNotRelevant.py,sha256=YXTdRfcdR_JepHuj2P3Y3r0aFMKNOmsXQHY48tmLTQo,1316
@@ -634,7 +619,6 @@ tests/models/aware/test_scarcityWeightedWaterUse.py,sha256=JmwOQFxcFm45IKn_aJU1K
634
619
  tests/models/blonkConsultants2016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
635
620
  tests/models/blonkConsultants2016/test_ch4ToAirNaturalVegetationBurning.py,sha256=-bgFT4r1mfy9cntiTDUCTF6o6o5In8UoxHTVK2zSQXc,1203
636
621
  tests/models/blonkConsultants2016/test_co2ToAirAboveGroundBiomassStockChangeLandUseChange.py,sha256=7IUZXz7IFudISwbu3-Um537jp-KGZ9pstFuIZ0Hi1ig,1229
637
- tests/models/blonkConsultants2016/test_landTransformationFromForest20YearAverageDuringCycle.py,sha256=0VrYyvnKnfTpElwHLKp2YxXXTQIbv5q8x10NCaZjzTs,1198
638
622
  tests/models/blonkConsultants2016/test_n2OToAirNaturalVegetationBurningDirect.py,sha256=2ANnNfp4nl5NHUO8DdHIiAp5ojBL1vP2Bv4aekrBITk,1228
639
623
  tests/models/blonkConsultants2016/test_utils.py,sha256=9OYZVBui1pauU-ipisUGzQc9johzMYDkXhqYpCWROnU,456
640
624
  tests/models/chaudharyBrooks2018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -643,7 +627,7 @@ tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsLandTransform
643
627
  tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsTotalLandUseEffects.py,sha256=NTc3PZZRc9ZqGpaARdbuzLWR5bB0HCPw5AMdGmwVsRg,704
644
628
  tests/models/cml2001Baseline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
645
629
  tests/models/cml2001Baseline/test_abioticResourceDepletionFossilFuels.py,sha256=a6TF9qQmpcHCndcF3-xyhrVd4F2KFr1gZzaIw8gimQ0,8805
646
- tests/models/cml2001Baseline/test_abioticResourceDepletionMineralsAndMetals.py,sha256=atWYPfJlLVWbcMxFxnuRZOmjGrbjQP0q3KhT0SJBy8Y,4525
630
+ tests/models/cml2001Baseline/test_abioticResourceDepletionMineralsAndMetals.py,sha256=xBoSGZaNCSpfDdNFIbyJhJslDJD5A_eTywz01GDqFNM,4513
647
631
  tests/models/cml2001Baseline/test_eutrophicationPotentialExcludingFate.py,sha256=ZIIx_EiYbUxUoAS7NuQrxqwTFS3rXQm9_1AsqF_bhB8,894
648
632
  tests/models/cml2001Baseline/test_terrestrialAcidificationPotentialIncludingFateAverageEurope.py,sha256=t3WBdg_aTYSLfaqeXUDyvQJ8ZqbvKwv9RKaZyRzj61k,925
649
633
  tests/models/cml2001NonBaseline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -705,7 +689,7 @@ tests/models/cycle/completeness/test_material.py,sha256=bA1_32wmtdd77cD8vinkIjsp
705
689
  tests/models/cycle/completeness/test_seed.py,sha256=NvCh4-YTUVoo2K5tX9h7-Wo7GjZGsRn-Nxn76iTw3sY,1043
706
690
  tests/models/cycle/completeness/test_soilAmendment.py,sha256=2kXOyux6wVIbjIbsaCFNEN3Ic-RMLtli-pH7fAXZpo4,641
707
691
  tests/models/cycle/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
708
- tests/models/cycle/input/test_hestiaAggregatedData.py,sha256=qKe_XrIK9CTXx2V2XJefEOzx9A0GoZFwg4WUs3Hxkw4,3080
692
+ tests/models/cycle/input/test_hestiaAggregatedData.py,sha256=exH0kAT19ElPSCUUC4ZjywNoSjcebz20pO3jwpYYyuc,3316
709
693
  tests/models/cycle/input/test_properties.py,sha256=5O2ubBE_WSLz5NRtLTGwsE-gADIcw7sZyJqL0w7GYcQ,1962
710
694
  tests/models/cycle/input/test_value.py,sha256=NR7KHsqnPnw43BB1efT0KPaszY4DKY293Av-lVde-DI,977
711
695
  tests/models/cycle/post_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -715,7 +699,6 @@ tests/models/cycle/post_checks/test_site.py,sha256=In0Q0Tw3w_hV8_uAnOcL_iS2FoI_7
715
699
  tests/models/cycle/practice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
716
700
  tests/models/cycle/practice/test_value.py,sha256=sYPoTkllrEt2oB92uA2q37FFtOjSX49749Nv1pUvqdw,1315
717
701
  tests/models/cycle/pre_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
718
- tests/models/cycle/pre_checks/test_cache_sources.py,sha256=tvk7E1LlJSq2Sb2MKBRlxWQBCUCHaSbM9ndTsg4d9ik,797
719
702
  tests/models/cycle/pre_checks/test_otherSites.py,sha256=IEWvG2hwmladHctZUy6jTg01ZnCvWJUtPgD4GHKcumQ,502
720
703
  tests/models/cycle/pre_checks/test_site.py,sha256=2JTrsOXVGfNn7FlLiX7DPNs6AHdeZuVvjNZP6SCjEII,694
721
704
  tests/models/cycle/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -746,7 +729,7 @@ tests/models/emepEea2019/test_utils.py,sha256=G6z8tEfWM0OPnUBaFCQgQyEi5-kRF_Dqsq
746
729
  tests/models/environmentalFootprintV3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
747
730
  tests/models/environmentalFootprintV3/test_freshwaterEcotoxicityPotentialCtue.py,sha256=ZPDKM23qlLMe_ZzeA-QIutSkFlod3BsmjloA9WA8nug,845
748
731
  tests/models/environmentalFootprintV3/test_soilQualityIndexLandOccupation.py,sha256=pgauGmFl52lQJVPaDHryrUU3LSmjWC-Al_XBqQj33u4,6116
749
- tests/models/environmentalFootprintV3/test_soilQualityIndexLandTransformation.py,sha256=kM1XOfp3E74XH2eoVlCoLhNCmgwhMCZxad8IhtEBWKc,6927
732
+ tests/models/environmentalFootprintV3/test_soilQualityIndexLandTransformation.py,sha256=3o9pT6S6yNAlvouViRWxVXsjOzXnbZ_OZjRV_jkaQQg,6178
750
733
  tests/models/environmentalFootprintV3/test_soilQualityIndexTotalLandUseEffects.py,sha256=j6V2AE1I98hi-Cv_-L5Rc2zzL0au9SWW4XnMkSuV7yo,2314
751
734
  tests/models/epa2014/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
752
735
  tests/models/epa2014/test_no3ToGroundwaterExcreta.py,sha256=ESVz4UURvQfhjGBTxjuAV_bymMBcvGNfLAkYMvNup9U,1217
@@ -756,11 +739,12 @@ tests/models/faostat2018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
756
739
  tests/models/faostat2018/test_coldCarcassWeightPerHead.py,sha256=RImhLygwrJ2RoEHjDwhuymvLEitOtNleP_lLoBhiNOs,1736
757
740
  tests/models/faostat2018/test_coldDressedCarcassWeightPerHead.py,sha256=hZVKMtf-F5Iz7igZVahDJoqzfm2VtcIlwWBPCry7kqw,1594
758
741
  tests/models/faostat2018/test_faostat_utils.py,sha256=DFVQHPhOmD0dsv9bNjv-zAHXpYJeJYpJsffy7MmXkh4,2301
759
- tests/models/faostat2018/test_landTransformationFromCropland100YearAverage.py,sha256=AkDXj4qNKgbu5xRbw9u_cUibnVSnAK1CN8pc4IjK9fk,1263
760
- tests/models/faostat2018/test_landTransformationFromCropland20YearAverage.py,sha256=L03Xh1QbbXc9yGdMoHGNmyCpu9WKANNiEE73NoBSqxk,1260
742
+ tests/models/faostat2018/test_landTransformation100YearAverageDuringCycle.py,sha256=gcJd_d1GYw7VI8oZHvgbSjUgagp4AyMiMeJBrnpLgAE,753
743
+ tests/models/faostat2018/test_landTransformation20YearAverageDuringCycle.py,sha256=ZRDfN2E-kJOKQkbs6se0x7T03dzmnf4TN1D5uwrLdKA,752
761
744
  tests/models/faostat2018/test_liveweightPerHead.py,sha256=5Z0Fw7iT3-REg8QjK8tUpWs5bUIG4fjWDM7SEOSYBcw,4799
762
745
  tests/models/faostat2018/test_readyToCookWeightPerHead.py,sha256=pMDcONs0WUvANcJ6_OPF7TBwMF45JGMxFRPNPtHLqVI,1570
763
746
  tests/models/faostat2018/test_seed.py,sha256=tUXoNVveX0m0ed9UXB4zXxIZsPxktXyUXlbWuUKG0sQ,1705
747
+ tests/models/faostat2018/test_utils.py,sha256=G4pOEwcM5k6FRbkE_4x6_G8vQxzDexNZnlj01_LHlt8,916
764
748
  tests/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
765
749
  tests/models/faostat2018/product/test_price.py,sha256=vUTT-FZVbXnDrwQVOgq8PWTDuFK_gAT6aqJ9ZK6Qcsc,3493
766
750
  tests/models/frischknechtEtAl2000/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -803,16 +787,8 @@ tests/models/haversineFormula/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
803
787
  tests/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
804
788
  tests/models/haversineFormula/transport/test_distance.py,sha256=hqzIOA1nGao8uiBE16J0ou52McwV4w30ZLpEAqtfi9k,970
805
789
  tests/models/hestia/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
806
- tests/models/hestia/test_landCover.py,sha256=gcmzd483h92nv8HROnSIZ5_ixBVgGqkZnZywCr6ZoBQ,6031
807
- tests/models/hyde32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
808
- tests/models/hyde32/test_landTransformationFromCropland100YearAverageDuringCycle.py,sha256=tOwcToAZLgIvVEx0i3S67EDaTBi_gXKy-XZCnw1Akl8,797
809
- tests/models/hyde32/test_landTransformationFromCropland20YearAverageDuringCycle.py,sha256=Fw1goOLe6xPUA7J65MojAyvuEBWnsypHzfjopER9wWo,796
810
- tests/models/hyde32/test_landTransformationFromForest100YearAverageDuringCycle.py,sha256=A5ZYNmu7vThE51g6BXZkL8-xsv5EEgFn5a9zxN6T1bw,795
811
- tests/models/hyde32/test_landTransformationFromForest20YearAverageDuringCycle.py,sha256=mx90anMpzRLVjdOoU6aCghSl7mQNGCO4C-rRnMyVzAQ,794
812
- tests/models/hyde32/test_landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle.py,sha256=D4EcjiN0-O38VumO7EnnohH6c7adThXWfwiwat2jKT4,819
813
- tests/models/hyde32/test_landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py,sha256=C9caq_xP8NZgtA-WWVArWZ0dzT8k4OmXocCYYrGHxGE,810
814
- tests/models/hyde32/test_landTransformationFromPermanentPasture100YearAverageDuringCycle.py,sha256=uGrwTFGkOK-s19gFxOC3BGoCTlUkqVxVN18GgbFhDLE,805
815
- tests/models/hyde32/test_landTransformationFromPermanentPasture20YearAverageDuringCycle.py,sha256=iPSrq8lwEZK4Vzwvr06TRJ_rcLuxTUznRoSw1Xxn--g,804
790
+ tests/models/hestia/test_landCover.py,sha256=pEy8AgHsOH7K6kUdwzDFt6-estJU7xcCFDbKL8x48SI,6051
791
+ tests/models/hestia/test_seed_emissions.py,sha256=dCUuJBkhwNFBhhcypQN7eMqrWZ9iGCnypoidO5DfQYw,921
816
792
  tests/models/impact_assessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
817
793
  tests/models/impact_assessment/test_allocationMethod.py,sha256=HkUt6oWdEyFSdxMpx8y_Oxk0nO2Fi9B_kUZcVte9tzg,1223
818
794
  tests/models/impact_assessment/test_emissions.py,sha256=K6Mi800irxajDfsmG7RHV-Y89U2KoCT_k3VR-RqCV24,1019
@@ -848,9 +824,9 @@ tests/models/ipcc2013ExcludingFeedbacks/test_gwp100.py,sha256=Od9ALNCag5pCVJnp2p
848
824
  tests/models/ipcc2013IncludingFeedbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
849
825
  tests/models/ipcc2013IncludingFeedbacks/test_gwp100.py,sha256=4HydDKiZDpxtgqgjpAg4cTVQu-jM-_tdDdJFmNNrwSc,875
850
826
  tests/models/ipcc2019/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
851
- tests/models/ipcc2019/test_aboveGroundBiomass.py,sha256=Kbg6gByJ6pEQ9ykwWYTmvSX7FS8r8jw2sPYBd6m3sZk,5461
827
+ tests/models/ipcc2019/test_aboveGroundBiomass.py,sha256=L5A0ZeOvaas_PuU8TS5FHWTjECWHQFT4u1-sqSUu5JM,7282
852
828
  tests/models/ipcc2019/test_aboveGroundCropResidueTotal.py,sha256=AADYB1g9vftH7YSvNyihHu8GQOiA7VhXxVQ-oJQNT88,2581
853
- tests/models/ipcc2019/test_belowGroundBiomass.py,sha256=2Jwq0wBQLUmYrpm3XoWpOdai0p16pGJRIJ-RvQ-dKwU,5402
829
+ tests/models/ipcc2019/test_belowGroundBiomass.py,sha256=ReinEHM9Hlz8JFhYU08p3GSboSXuaVxNJA9LEkJkZYI,7222
854
830
  tests/models/ipcc2019/test_belowGroundCropResidue.py,sha256=HUxHZLBdLX_E_oc3wqTwNtGY4M4yCWcxx-1iBYPF7_s,2576
855
831
  tests/models/ipcc2019/test_biomass_utils.py,sha256=I2q4pDGAD0aY_kpZCMPJoC-KbRYxdzY1rhr4xtJFWIA,3592
856
832
  tests/models/ipcc2019/test_carbonContent.py,sha256=_GWF5nGy-PxiqBZ5V7W_sHMz75YRzmxr79R-sZZg7yk,4146
@@ -858,11 +834,11 @@ tests/models/ipcc2019/test_ch4ToAirAquacultureSystems.py,sha256=o7bHOS4JkwexRrDh
858
834
  tests/models/ipcc2019/test_ch4ToAirEntericFermentation.py,sha256=3Hv86L4X_Va2mZL4KI-36AV00z-KBbKo0cb2ABg6Rv8,7928
859
835
  tests/models/ipcc2019/test_ch4ToAirExcreta.py,sha256=e58NXmBW2SNVLUqQO9A66Xq6jiGTyhdFZDZk51JApF8,2902
860
836
  tests/models/ipcc2019/test_ch4ToAirFloodedRice.py,sha256=FAp5b45WdX5Ih4yGUOZ4CmVD8smW1Lw1tnulx9AKVBI,1980
861
- tests/models/ipcc2019/test_co2ToAirAboveGroundBiomassStockChange.py,sha256=6aOupZOicEwnvPxN98_C00_YCQFDVv9dKgk6a3NbYIA,3107
862
- tests/models/ipcc2019/test_co2ToAirBelowGroundBiomassStockChange.py,sha256=ghz_1nkKKQpH5IwenD4WYOEtCpIk-LucjisLrLTBEbo,2961
837
+ tests/models/ipcc2019/test_co2ToAirAboveGroundBiomassStockChange.py,sha256=Xkoe5UJy7f0UDcFQTacAI3rpiIPOZhg7zgQA6CnPPqc,4328
838
+ tests/models/ipcc2019/test_co2ToAirBelowGroundBiomassStockChange.py,sha256=j_Quuhv3p0B5qiFCiQz-2oHBSZjC4fatnOPAMxiMy2M,4257
863
839
  tests/models/ipcc2019/test_co2ToAirCarbonStockChange_utils.py,sha256=wCEtrbMl6zef8V-n_Ci_rtlQAlfuKm3khUVltr8eAcc,2173
864
840
  tests/models/ipcc2019/test_co2ToAirLimeHydrolysis.py,sha256=e5iuZ-kQNEVih0ZRgRPWqaUtXcLpfkoU7sQypbqA9_Y,1345
865
- tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py,sha256=Np-WQ0rE8lZ_Sw34nxD8wHQ0H_UZ257NA_ALBWsTkrA,4432
841
+ tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py,sha256=iCDvwg_jGv6Hg5m054p85U4sKYnHkZLXOq1CGJ3asBM,5413
866
842
  tests/models/ipcc2019/test_co2ToAirUreaHydrolysis.py,sha256=MmtEME0xjsa3KojFk_fxOLK6RZM_6p5HIpY2DOFHVu4,1530
867
843
  tests/models/ipcc2019/test_croppingDuration.py,sha256=gLRXeR6Tqa7ciD9KTRfsIflSeIIWT2iOpZMdcxAQla4,1871
868
844
  tests/models/ipcc2019/test_ligninContent.py,sha256=eIKEN__ab-0R52EhlhPSBiHnmTl6xOf1XbI33O-W9A4,4146
@@ -883,9 +859,9 @@ tests/models/ipcc2019/test_no3ToGroundwaterInorganicFertiliser.py,sha256=e7REnQ9
883
859
  tests/models/ipcc2019/test_no3ToGroundwaterOrganicFertiliser.py,sha256=e1ZViD12qB3bLdH3TJw3GbBP8iqMen-UJbcFkytb3VQ,1609
884
860
  tests/models/ipcc2019/test_noxToAirInorganicFertiliser.py,sha256=NZBSBJLM_j2PEpHRON2ysgKNF8x5sHfQVoAKQdGsfzk,1537
885
861
  tests/models/ipcc2019/test_noxToAirOrganicFertiliser.py,sha256=LR5pjV5vRbgSSQAw8kYRp_ij4CHInzgaDS6EggQuBiw,1104
886
- tests/models/ipcc2019/test_organicCarbonPerHa.py,sha256=RgIiManNgl5GzRybwU7rzsQqq8xzTPogvRYqop9ZQHE,13333
887
- tests/models/ipcc2019/test_organicCarbonPerHa_tier_1_utils.py,sha256=62z1uWd37ol42hGPMgspFsi76v1rpix17PkUMyh8hqQ,20751
888
- tests/models/ipcc2019/test_organicCarbonPerHa_tier_2_utils.py,sha256=6YXLqH5wz_cvYlJjCacCv9UTYpnXYxURLKQz6N9ZMPg,6807
862
+ tests/models/ipcc2019/test_organicCarbonPerHa.py,sha256=9HctxbWtYwZdhRDkb-cClyMCpX9suCooW69OuTlKw-Y,13040
863
+ tests/models/ipcc2019/test_organicCarbonPerHa_tier_1_utils.py,sha256=F8L_DiRDbhHiP-TiF9QDzwZau_LxVLiaqJNFqyEEBjs,20044
864
+ tests/models/ipcc2019/test_organicCarbonPerHa_tier_2_utils.py,sha256=wxRoE3qeIIiVWQzqo2ChnXsSrPfvIOxEDGHS2ZfI7vA,5514
889
865
  tests/models/ipcc2019/test_organicCarbonPerHa_utils.py,sha256=Zd2QlN_Q3k9djuByOH62A00tryVzlvNtsd46N79TTeU,1778
890
866
  tests/models/ipcc2019/test_pastureGrass.py,sha256=mKx8NnTtMT9TrXxRNLv73wD1TWBaiRZzA1xh2ukb-HI,2667
891
867
  tests/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -996,22 +972,16 @@ tests/models/lcImpactCertainEffectsInfinite/test_damageToTerrestrialEcosystemsTe
996
972
  tests/models/lcImpactCertainEffectsInfinite/test_damageToTerrestrialEcosystemsTerrestrialEcotoxicity.py,sha256=UJJ0raY5leOqtBpBlIGRZSUYqA5mNt-xmq5Eos_nysg,882
997
973
  tests/models/linkedImpactAssessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
998
974
  tests/models/linkedImpactAssessment/test_emissions.py,sha256=07z9LW5Ir3uL8odeU6puaeb9ZsgGclfWX3_h13cxeio,752
999
- tests/models/linkedImpactAssessment/test_freshwaterWithdrawalsInputsProduction.py,sha256=uGiKffgLCzWqeSrofmiZTBv6WNItar-ArC7jCofSNw0,859
1000
- tests/models/linkedImpactAssessment/test_landOccupationInputsProduction.py,sha256=epP6d1bRI6YNJZt_dkQhBKpMzFg9D8nxahIYQiLyUnE,852
1001
- tests/models/linkedImpactAssessment/test_landTransformationFromCropland100YearAverageInputsProduction.py,sha256=l15bLWmKG71Pr0WhAQSxRDuqc1SyVl7R4H9iQIZWY_g,890
1002
- tests/models/linkedImpactAssessment/test_landTransformationFromCropland20YearAverageInputsProduction.py,sha256=cfG3sKQQ3B_NODSHHTcA6-vtI4d3lcqm1QYk8CmwukQ,889
1003
- tests/models/linkedImpactAssessment/test_landTransformationFromForest100YearAverageInputsProduction.py,sha256=JWJNssUohSvj9Vrv_hpBHayIBoZ5iLDWPFkabRhzfbI,888
1004
- tests/models/linkedImpactAssessment/test_landTransformationFromForest20YearAverageInputsProduction.py,sha256=SbSkYLqMq5UapyZpFYIjmAIvVFfsh-og8PG2fVYRoZs,887
1005
- tests/models/linkedImpactAssessment/test_landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction.py,sha256=cCNqfR4c8teYaqz3YDWBd8vrqlcJm4eD8p09XUMQsp0,918
1006
- tests/models/linkedImpactAssessment/test_landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction.py,sha256=GYR71LUEHr8EPnXkCothX23viB2df_NbZ5g6fBhl75Q,917
1007
- tests/models/linkedImpactAssessment/test_landTransformationFromPermanentPasture100YearAverageInputsProduction.py,sha256=KB2zZ07QHk9IuPCRGIVdNBcx6CQqBEqdLjUGNZR8hDk,1041
1008
- tests/models/linkedImpactAssessment/test_landTransformationFromPermanentPasture20YearAverageInputsProduction.py,sha256=9nxdXerjwr3hMshI3hyhHrIscPuqzbj54ekpJ9HKlyY,1038
975
+ tests/models/linkedImpactAssessment/test_freshwaterWithdrawalsInputsProduction.py,sha256=97b0f6O2UqOVrZhepolm5a8rIKj91gBKskzTY0CZ4lg,905
976
+ tests/models/linkedImpactAssessment/test_landOccupationInputsProduction.py,sha256=IvTDXk7lgizb8cQiX6qEXoX7d6VxYY4LjTMnPkpP9ck,898
977
+ tests/models/linkedImpactAssessment/test_landTransformation100YearAverageInputsProduction.py,sha256=MI68INMpL849oe9z3PbKFLbZYVNklCIsK3sWKygL81s,924
978
+ tests/models/linkedImpactAssessment/test_landTransformation20YearAverageInputsProduction.py,sha256=oDhG5G0h6VfVbPBCVnZpvRNSEA7gIR-y1SH_q_Lqck0,923
1009
979
  tests/models/pooreNemecek2018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1010
980
  tests/models/pooreNemecek2018/test_aboveGroundCropResidueTotal.py,sha256=m-cpFULarm0Ee4MV-OvhYPRg7W2_mvbrqHkjDZgcQsw,1660
1011
981
  tests/models/pooreNemecek2018/test_belowGroundCropResidue.py,sha256=A6EOD2B6frN0UtuUTP3GwZ7bNEtEudQfztHXjdiDwdQ,1655
1012
982
  tests/models/pooreNemecek2018/test_ch4ToAirAquacultureSystems.py,sha256=rUxD57yl82Ht8IyhbiQhi0xl8L9iLdnLpbI-T5C0Mck,2722
1013
- tests/models/pooreNemecek2018/test_excretaKgN.py,sha256=lKM-Q7TjQoxjvjY9tCcmJxoWvHuxglNCVsPXh6JBgCY,4063
1014
- tests/models/pooreNemecek2018/test_excretaKgVs.py,sha256=LIoLevR0tHrZwazuGprt6SCFtmDrj4NBq1s1SJEhQCA,3252
983
+ tests/models/pooreNemecek2018/test_excretaKgN.py,sha256=4YSri6_P5YXLx8cCAV4SJD36MEL_wWB8ZK-_AwGn0zQ,4064
984
+ tests/models/pooreNemecek2018/test_excretaKgVs.py,sha256=h41KnwQDo4Jp3HrbXTGK-qLU4ZPsWzhDZ5jIwDrmLuo,3256
1015
985
  tests/models/pooreNemecek2018/test_freshwaterWithdrawalsDuringCycle.py,sha256=5QxDU6VzcwWup3Nuhn32kJoIlAkqcSggGr4CmoRqrFA,1623
1016
986
  tests/models/pooreNemecek2018/test_landOccupationDuringCycle.py,sha256=MrgxJIuojKCuwCKX6d_KMsg8dTkfdxWwZPnCtjFZDwo,1873
1017
987
  tests/models/pooreNemecek2018/test_longFallowDuration.py,sha256=kelZajIbKyvVm1vX_grRZy0IUrtejGI5GPn03qbElnw,925
@@ -1030,6 +1000,7 @@ tests/models/pooreNemecek2018/test_plantationLifespan.py,sha256=Pcbnhbt_HVfEet12
1030
1000
  tests/models/pooreNemecek2018/test_plantationProductiveLifespan.py,sha256=ifvjTXJxmbS3GH4a7S9T2mgPseajX8WL4KQ5lT_2Rus,935
1031
1001
  tests/models/pooreNemecek2018/test_rotationDuration.py,sha256=tD2E91beAXdyT-xf5QSqc7kp5UPDDEaCE-FgsoSGorg,923
1032
1002
  tests/models/pooreNemecek2018/test_saplingsDepreciatedAmountPerCycle.py,sha256=seT7-ip5lSjglaM2Wbaf4qsNrc2W_RYnafef4mQlc8U,1668
1003
+ tests/models/pooreNemecek2018/test_utils.py,sha256=oqKCNVw6LOAa4jJFadQCL8ysUbUiVCnm0XBOdqa2BVA,742
1033
1004
  tests/models/poschEtAl2008/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1034
1005
  tests/models/poschEtAl2008/test_terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=AlDvYqNq8TFPDNtgdSr1dNP-_Rqzbvoxq8ribh8AeEc,1876
1035
1006
  tests/models/poschEtAl2008/test_terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=0-hn3Ssu5cfJor_Mq5DYzLlgXiw9ulARlBa_ovJGMbg,1875
@@ -1104,7 +1075,7 @@ tests/models/site/test_brackishWater.py,sha256=YGCp4glaWudKklYBSp-50KbfvIRtp3F4Q
1104
1075
  tests/models/site/test_cationExchangeCapacityPerKgSoil.py,sha256=tNMhN998vcjQ15I-5mNnFh2d7mHzEBIBO6o1VSfQNUE,1075
1105
1076
  tests/models/site/test_flowingWater.py,sha256=t_rxvdlmUVDsFBoDF20_zDM-0iiLKkNCV7knO9l1T7o,1370
1106
1077
  tests/models/site/test_freshWater.py,sha256=GOeAxHhPW_2E1wQdQRX4W-r7mnb_LgmiAVLImitoApw,982
1107
- tests/models/site/test_management.py,sha256=1RoufI0aSQdFajPYQBajpTLuNyeA3gmyb39PIz0y-5Y,2928
1078
+ tests/models/site/test_management.py,sha256=GT1SRtmZFxyIA8lUABAnzWKcD4JpBwjXGbWzGK-_DvA,1697
1108
1079
  tests/models/site/test_netPrimaryProduction.py,sha256=JCxG0MODbKVvl3hOqmKzh4FjHYn3Xs9KsVod6LvKQII,1108
1109
1080
  tests/models/site/test_organicCarbonPerHa.py,sha256=XtGrE7ZqthTF0x8lDxJ1slNd_GvYHEyEydcRgA46jEc,3207
1110
1081
  tests/models/site/test_organicCarbonPerKgSoil.py,sha256=0M-NMg_T3UXzGT_VlKOKhSxg4cZ0_zhd3FRgY5Hpj6o,1087
@@ -1128,7 +1099,6 @@ tests/models/site/measurement/test_value.py,sha256=i6w7X0Qb9utIGeopjQLz4S3tBrXVV
1128
1099
  tests/models/site/post_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1129
1100
  tests/models/site/post_checks/test_cache.py,sha256=g34PQgfyzYveRT-gVKJl0euyBp-Kav8JnBVk-bod1WA,191
1130
1101
  tests/models/site/pre_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1131
- tests/models/site/pre_checks/test_cache_sources.py,sha256=KhNti9AsuMDBxliwyudlCVCj2WeyjqqTp6iIqSsV4AA,729
1132
1102
  tests/models/site/pre_checks/test_cache_years.py,sha256=sU0OhXGa4wC2DKduzlcxQVc51srS0Oks3L1gh1nJGf8,756
1133
1103
  tests/models/stehfestBouwman2006/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1134
1104
  tests/models/stehfestBouwman2006/test_n2OToAirCropResidueDecompositionDirect.py,sha256=NF0wADubo9boAuYMtUGH30s4tieHE8LNrf547JgmlAE,677
@@ -1158,7 +1128,8 @@ tests/models/usetoxV2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
1158
1128
  tests/models/usetoxV2/test_freshwaterEcotoxicityPotentialCtue.py,sha256=eq7Gcmfya9g0eOKKkuBhz8vq7xi_CmZ_LTSxueBwZt4,835
1159
1129
  tests/models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1160
1130
  tests/models/utils/test_array_builders.py,sha256=uHxO4beJhdJD-1lI5aPEAsYziQP8SN7AJ9PEY67DpaI,8417
1161
- tests/models/utils/test_blank_node.py,sha256=4sAHLGnoykHkrv32fpKsMqHgeYGv6VGceRpZV5zZW8c,39233
1131
+ tests/models/utils/test_blank_node.py,sha256=LqUsxE7_XCdwjuGp_m-Ckm1qdT72gCsEmK6Q-Yh2C4Q,38994
1132
+ tests/models/utils/test_cache_sources.py,sha256=xcGMVbYoV23YC4HLBTL_4qZP1ME2cp3DFebgJMxI2TE,721
1162
1133
  tests/models/utils/test_crop.py,sha256=ve_BqT2XuLTWAH-8YOnVY4nzMUSXYYXPB8S-5RtGlf4,463
1163
1134
  tests/models/utils/test_cropResidueManagement.py,sha256=RQt8lexeJzCyxZceIutgDpw7BpcqmjsUB0C0yZC2QpY,930
1164
1135
  tests/models/utils/test_currency.py,sha256=BPsojPsY9QW2aj8vgbjkPQXU8GU6wDwwtPZ3HdC4KTU,277
@@ -1183,8 +1154,8 @@ tests/models/utils/test_term.py,sha256=M5Sa26v2gzQYbZ4H_fo7DspnaCx__-WtL-MULGapC
1183
1154
  tests/models/utils/test_time_series.py,sha256=LMhRPf8rp3nAriKAC-2K3FDkrMWntRTUUCERw7Lt68g,2686
1184
1155
  tests/models/webbEtAl2012AndSintermannEtAl2012/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1185
1156
  tests/models/webbEtAl2012AndSintermannEtAl2012/test_nh3ToAirOrganicFertiliser.py,sha256=qi2FNXS5Af2WDtm7nq_FsprH3BfCF0XxnE0XHmC4aIY,2244
1186
- hestia_earth_models-0.64.14.dist-info/LICENSE,sha256=AC7h7GAgCZGJK_Tzh6LUCrML9gQEfowWwecEw2w54QM,1154
1187
- hestia_earth_models-0.64.14.dist-info/METADATA,sha256=1pXWSGo_8_6-tjNKemoxLZb9wQa56Mbsu30jzIt84v8,3345
1188
- hestia_earth_models-0.64.14.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1189
- hestia_earth_models-0.64.14.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
1190
- hestia_earth_models-0.64.14.dist-info/RECORD,,
1157
+ hestia_earth_models-0.65.0.dist-info/LICENSE,sha256=AC7h7GAgCZGJK_Tzh6LUCrML9gQEfowWwecEw2w54QM,1154
1158
+ hestia_earth_models-0.65.0.dist-info/METADATA,sha256=2e3GQ347IfJjjuBJVQUd8BIykz5h7WfEZagPofz2MI4,3344
1159
+ hestia_earth_models-0.65.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1160
+ hestia_earth_models-0.65.0.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
1161
+ hestia_earth_models-0.65.0.dist-info/RECORD,,
@@ -23,7 +23,7 @@ tellurium_input = {"@id": "CAS-13494-80-9", "termType": "otherInorganicChemical"
23
23
  input_no_cf_material = {"@id": "cork", "termType": "material", "units": "kg"}
24
24
 
25
25
  wrong_indicator = {'value': [1],
26
- 'term': {'@id': 'landTransformationFromCropland20YearAverageDuringCycle', 'termType': 'resourceUse'},
26
+ 'term': {'@id': 'landTransformation20YearAverageDuringCycle', 'termType': 'resourceUse'},
27
27
  'inputs': [iodine_input]}
28
28
 
29
29
  indicator_no_inputs = {'value': 3,
@@ -3,7 +3,7 @@ import json
3
3
 
4
4
  from hestia_earth.schema import TermTermType
5
5
 
6
- from tests.utils import fake_aggregated_search, fixtures_path
6
+ from tests.utils import fake_download, fake_aggregated_search, fixtures_path
7
7
  from hestia_earth.models.cycle.input.hestiaAggregatedData import MODEL_ID, run, _should_run, _should_run_seed
8
8
 
9
9
  class_path = f"hestia_earth.models.cycle.input.{MODEL_ID}"
@@ -40,11 +40,12 @@ def test_should_run_seed(mock_primary_product, *args):
40
40
  assert not should_run
41
41
 
42
42
  # with a seed input => run
43
- cycle['inputs'] = [{'term': {'@id': 'seed'}}]
43
+ cycle['inputs'] = [{'term': {'@id': 'seed', 'termType': 'seed'}}]
44
44
  should_run, *args = _should_run_seed(cycle)
45
45
  assert should_run is True
46
46
 
47
47
 
48
+ @patch(f"{class_path}.download_hestia", side_effect=fake_download)
48
49
  @patch('hestia_earth.models.utils.aggregated.search', side_effect=fake_aggregated_search)
49
50
  def test_run(*args):
50
51
  with open(f"{fixtures_folder}/cycle.jsonld", encoding='utf-8') as f:
@@ -57,6 +58,7 @@ def test_run(*args):
57
58
  assert result == expected
58
59
 
59
60
 
61
+ @patch(f"{class_path}.download_hestia", side_effect=fake_download)
60
62
  @patch('hestia_earth.models.utils.aggregated.search', side_effect=fake_aggregated_search)
61
63
  def test_run_seed(*args):
62
64
  with open(f"{fixtures_folder}/seed/cycle.jsonld", encoding='utf-8') as f:
@@ -82,6 +84,7 @@ def fake_search_generic(query, **args):
82
84
  }] if match_name == GENERIC_CROP['name'] else []
83
85
 
84
86
 
87
+ @patch(f"{class_path}.download_hestia", side_effect=fake_download)
85
88
  @patch(f"{class_path}.get_generic_crop", return_value=GENERIC_CROP)
86
89
  @patch('hestia_earth.models.utils.aggregated.search', side_effect=fake_search_generic)
87
90
  def test_run_seed_generic(*args):