hestia-earth-models 0.64.13__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 (118) 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/materialAndSubstrate.py +158 -0
  6. hestia_earth/models/cycle/pre_checks/cache_sources.py +3 -25
  7. hestia_earth/models/cycle/product/economicValueShare.py +2 -2
  8. hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandTransformation.py +11 -33
  9. hestia_earth/models/faostat2018/landTransformation100YearAverageDuringCycle.py +34 -0
  10. hestia_earth/models/faostat2018/landTransformation20YearAverageDuringCycle.py +34 -0
  11. hestia_earth/models/faostat2018/utils.py +47 -3
  12. hestia_earth/models/hestia/landCover.py +5 -5
  13. hestia_earth/models/hestia/seed_emissions.py +275 -0
  14. hestia_earth/models/ipcc2019/aboveGroundBiomass.py +2 -2
  15. hestia_earth/models/ipcc2019/belowGroundBiomass.py +8 -2
  16. hestia_earth/models/ipcc2019/biomass_utils.py +11 -4
  17. hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py +21 -12
  18. hestia_earth/models/ipcc2019/ch4ToAirExcreta.py +1 -2
  19. hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py +2 -1
  20. hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py +2 -1
  21. hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py +8 -7
  22. hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py +2 -1
  23. hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1_utils.py +28 -34
  24. hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2_utils.py +8 -12
  25. hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py +13 -30
  26. hestia_earth/models/linkedImpactAssessment/{landTransformationFromCropland20YearAverageInputsProduction.py → landTransformation100YearAverageInputsProduction.py} +5 -2
  27. hestia_earth/models/linkedImpactAssessment/{landTransformationFromCropland100YearAverageInputsProduction.py → landTransformation20YearAverageInputsProduction.py} +5 -2
  28. hestia_earth/models/linkedImpactAssessment/utils.py +69 -12
  29. hestia_earth/models/mocking/__init__.py +1 -1
  30. hestia_earth/models/mocking/search-results.json +1026 -1026
  31. hestia_earth/models/pooreNemecek2018/excretaKgN.py +45 -41
  32. hestia_earth/models/pooreNemecek2018/excretaKgVs.py +89 -63
  33. hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py +8 -8
  34. hestia_earth/models/pooreNemecek2018/utils.py +60 -19
  35. hestia_earth/models/preload_requests.py +24 -4
  36. hestia_earth/models/schererPfister2015/nErosionSoilFlux.py +4 -3
  37. hestia_earth/models/schererPfister2015/pErosionSoilFlux.py +4 -3
  38. hestia_earth/models/schererPfister2015/utils.py +12 -9
  39. hestia_earth/models/site/management.py +70 -55
  40. hestia_earth/models/site/pre_checks/cache_sources.py +2 -20
  41. hestia_earth/models/utils/__init__.py +12 -1
  42. hestia_earth/models/utils/aggregated.py +1 -1
  43. hestia_earth/models/utils/blank_node.py +20 -12
  44. hestia_earth/models/utils/cache_sources.py +15 -0
  45. hestia_earth/models/utils/constant.py +3 -0
  46. hestia_earth/models/utils/crop.py +5 -0
  47. hestia_earth/models/utils/indicator.py +3 -1
  48. hestia_earth/models/version.py +1 -1
  49. {hestia_earth_models-0.64.13.dist-info → hestia_earth_models-0.65.0.dist-info}/METADATA +2 -2
  50. {hestia_earth_models-0.64.13.dist-info → hestia_earth_models-0.65.0.dist-info}/RECORD +81 -108
  51. tests/models/cml2001Baseline/test_abioticResourceDepletionMineralsAndMetals.py +1 -1
  52. tests/models/cycle/input/test_hestiaAggregatedData.py +5 -2
  53. tests/models/cycle/test_materialsAndSubstrate.py +49 -0
  54. tests/models/environmentalFootprintV3/test_soilQualityIndexLandTransformation.py +39 -28
  55. tests/models/{hyde32/test_landTransformationFromForest20YearAverageDuringCycle.py → faostat2018/test_landTransformation100YearAverageDuringCycle.py} +5 -5
  56. tests/models/{hyde32/test_landTransformationFromForest100YearAverageDuringCycle.py → faostat2018/test_landTransformation20YearAverageDuringCycle.py} +5 -5
  57. tests/models/faostat2018/test_utils.py +28 -0
  58. tests/models/hestia/test_landCover.py +2 -1
  59. tests/models/hestia/test_seed_emissions.py +27 -0
  60. tests/models/ipcc2019/test_aboveGroundBiomass.py +40 -4
  61. tests/models/ipcc2019/test_belowGroundBiomass.py +40 -4
  62. tests/models/ipcc2019/test_co2ToAirAboveGroundBiomassStockChange.py +52 -15
  63. tests/models/ipcc2019/test_co2ToAirBelowGroundBiomassStockChange.py +50 -14
  64. tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py +53 -32
  65. tests/models/ipcc2019/test_organicCarbonPerHa.py +91 -108
  66. tests/models/ipcc2019/test_organicCarbonPerHa_tier_1_utils.py +33 -50
  67. tests/models/ipcc2019/test_organicCarbonPerHa_tier_2_utils.py +0 -52
  68. tests/models/linkedImpactAssessment/test_freshwaterWithdrawalsInputsProduction.py +6 -4
  69. tests/models/linkedImpactAssessment/test_landOccupationInputsProduction.py +6 -4
  70. tests/models/linkedImpactAssessment/{test_landTransformationFromForest100YearAverageInputsProduction.py → test_landTransformation100YearAverageInputsProduction.py} +7 -5
  71. tests/models/linkedImpactAssessment/{test_landTransformationFromForest20YearAverageInputsProduction.py → test_landTransformation20YearAverageInputsProduction.py} +7 -5
  72. tests/models/pooreNemecek2018/test_excretaKgN.py +2 -2
  73. tests/models/pooreNemecek2018/test_excretaKgVs.py +1 -1
  74. tests/models/pooreNemecek2018/test_utils.py +26 -0
  75. tests/models/site/test_management.py +10 -27
  76. tests/models/test_cache_sites.py +40 -12
  77. tests/models/utils/test_blank_node.py +0 -8
  78. tests/models/utils/test_cache_sources.py +21 -0
  79. hestia_earth/models/blonkConsultants2016/landTransformationFromForest20YearAverageDuringCycle.py +0 -90
  80. hestia_earth/models/faostat2018/landTransformationFromCropland100YearAverage.py +0 -74
  81. hestia_earth/models/faostat2018/landTransformationFromCropland20YearAverage.py +0 -74
  82. hestia_earth/models/hyde32/__init__.py +0 -13
  83. hestia_earth/models/hyde32/landTransformationFromCropland100YearAverageDuringCycle.py +0 -60
  84. hestia_earth/models/hyde32/landTransformationFromCropland20YearAverageDuringCycle.py +0 -60
  85. hestia_earth/models/hyde32/landTransformationFromForest100YearAverageDuringCycle.py +0 -60
  86. hestia_earth/models/hyde32/landTransformationFromForest20YearAverageDuringCycle.py +0 -60
  87. hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle.py +0 -61
  88. hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py +0 -61
  89. hestia_earth/models/hyde32/landTransformationFromPermanentPasture100YearAverageDuringCycle.py +0 -61
  90. hestia_earth/models/hyde32/landTransformationFromPermanentPasture20YearAverageDuringCycle.py +0 -61
  91. hestia_earth/models/hyde32/utils.py +0 -72
  92. hestia_earth/models/linkedImpactAssessment/landTransformationFromForest100YearAverageInputsProduction.py +0 -36
  93. hestia_earth/models/linkedImpactAssessment/landTransformationFromForest20YearAverageInputsProduction.py +0 -36
  94. hestia_earth/models/linkedImpactAssessment/landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction.py +0 -36
  95. hestia_earth/models/linkedImpactAssessment/landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction.py +0 -36
  96. hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPasture100YearAverageInputsProduction.py +0 -36
  97. hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPasture20YearAverageInputsProduction.py +0 -36
  98. tests/models/blonkConsultants2016/test_landTransformationFromForest20YearAverageDuringCycle.py +0 -36
  99. tests/models/cycle/pre_checks/test_cache_sources.py +0 -25
  100. tests/models/faostat2018/test_landTransformationFromCropland100YearAverage.py +0 -40
  101. tests/models/faostat2018/test_landTransformationFromCropland20YearAverage.py +0 -40
  102. tests/models/hyde32/__init__.py +0 -0
  103. tests/models/hyde32/test_landTransformationFromCropland100YearAverageDuringCycle.py +0 -21
  104. tests/models/hyde32/test_landTransformationFromCropland20YearAverageDuringCycle.py +0 -21
  105. tests/models/hyde32/test_landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle.py +0 -23
  106. tests/models/hyde32/test_landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py +0 -21
  107. tests/models/hyde32/test_landTransformationFromPermanentPasture100YearAverageDuringCycle.py +0 -21
  108. tests/models/hyde32/test_landTransformationFromPermanentPasture20YearAverageDuringCycle.py +0 -21
  109. tests/models/linkedImpactAssessment/test_landTransformationFromCropland100YearAverageInputsProduction.py +0 -23
  110. tests/models/linkedImpactAssessment/test_landTransformationFromCropland20YearAverageInputsProduction.py +0 -23
  111. tests/models/linkedImpactAssessment/test_landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction.py +0 -23
  112. tests/models/linkedImpactAssessment/test_landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction.py +0 -23
  113. tests/models/linkedImpactAssessment/test_landTransformationFromPermanentPasture100YearAverageInputsProduction.py +0 -24
  114. tests/models/linkedImpactAssessment/test_landTransformationFromPermanentPasture20YearAverageInputsProduction.py +0 -24
  115. tests/models/site/pre_checks/test_cache_sources.py +0 -21
  116. {hestia_earth_models-0.64.13.dist-info → hestia_earth_models-0.65.0.dist-info}/LICENSE +0 -0
  117. {hestia_earth_models-0.64.13.dist-info → hestia_earth_models-0.65.0.dist-info}/WHEEL +0 -0
  118. {hestia_earth_models-0.64.13.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
- hestia_earth/models/preload_requests.py,sha256=Ds7eJqKfbiiaKqpRr69Z_GKUpYtP1j7XZKZX4Y9z7lE,1348
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=O2ng3Prt7p6CASwtmwhPIY3YJRrj7f-b7V85PeEx470,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
@@ -52,6 +51,7 @@ hestia_earth/models/cycle/inorganicFertiliser.py,sha256=Yt5NcP9FQEzWwlritrPGbhh2
52
51
  hestia_earth/models/cycle/irrigatedTypeUnspecified.py,sha256=KlIa5eDvT47Twz6Q1kpw0rMlRjCK25CExaW58DEvc9w,2125
53
52
  hestia_earth/models/cycle/liveAnimal.py,sha256=5dlvuVAu24hLLOVXsozcVzWyDVzddzoungUBwrBDS-g,3986
54
53
  hestia_earth/models/cycle/longFallowRatio.py,sha256=_h0kub99sACO87IfjMeiu8IgdK2jaeBlgGA9A9-ViZA,1683
54
+ hestia_earth/models/cycle/materialAndSubstrate.py,sha256=PaTnS3QVxGEMLMn4nuWHYp8npiZjDaDijRJHoUoRV40,5184
55
55
  hestia_earth/models/cycle/milkYield.py,sha256=JUwKK9gwXZiir7YK7_tOuV3B4Aml0LnJszfCA3Ygh3o,5816
56
56
  hestia_earth/models/cycle/otherSitesArea.py,sha256=Xhi6C1K1v4VXv1Mhkg-b9JCAG-DfTQoEi9ICs71418w,1650
57
57
  hestia_earth/models/cycle/otherSitesUnusedDuration.py,sha256=ZqQaI9FvNVpONmsIiRo1BqSJJKC5Mgi-W6lt18sxTiA,2985
@@ -93,7 +93,7 @@ hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioEnergy.py,sha25
93
93
  hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioFedWeight.py,sha256=7Dss1AIbG7GimQ3-Ecv2wsx1PrblZhHFYhMHWoyvPc4,2140
94
94
  hestia_earth/models/cycle/feedConversionRatio/feedConversionRatioNitrogen.py,sha256=RV7lLd4PiFRCkH83-DvuZKnOCA9bXbYOcDHea8Wz4LY,2603
95
95
  hestia_earth/models/cycle/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
- hestia_earth/models/cycle/input/hestiaAggregatedData.py,sha256=XkO72m16xZxX0ykBOw8Dx14eM4yTEOG12m7HwoUZ9HA,5035
96
+ hestia_earth/models/cycle/input/hestiaAggregatedData.py,sha256=_YYV49HtJqGB8cnjTG5DRCrHyUT2DP3gzcw8He3FqWI,6031
97
97
  hestia_earth/models/cycle/input/properties.py,sha256=xJojLiaMSqFVunJi8aOiTtn8wzkizduinMSxsGGhKN4,3187
98
98
  hestia_earth/models/cycle/input/value.py,sha256=kolH9Fc5GIn9OVH2DgHEaW8ksS4xisy0LerS3WkKK9E,1550
99
99
  hestia_earth/models/cycle/post_checks/__init__.py,sha256=5ThdvGKp7ilFOzn8Tq23c4XXqhA345PYIe63yOtGJTY,336
@@ -103,12 +103,12 @@ hestia_earth/models/cycle/post_checks/site.py,sha256=62Iylm986-ca2GL7uI0qlsjCCK9
103
103
  hestia_earth/models/cycle/practice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
104
  hestia_earth/models/cycle/practice/value.py,sha256=CQ1SkleHDkAtO0_xwcziJ9uCvz_Pr7W1HVOH5_meNdc,2039
105
105
  hestia_earth/models/cycle/pre_checks/__init__.py,sha256=T8NfEXznq7Q1VUxqBOBP7Rz_DwoYvWYoYqe-Txznu24,352
106
- 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
107
107
  hestia_earth/models/cycle/pre_checks/otherSites.py,sha256=MQpf_v4lTIR60zF7slp3LBeAA0FtOG_A6t_7NxHd88I,1037
108
108
  hestia_earth/models/cycle/pre_checks/site.py,sha256=OkrEOxwbo5rzAWQaPt2p9uZ9g7Vc58QweGW5-Pt0jPY,882
109
109
  hestia_earth/models/cycle/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
110
110
  hestia_earth/models/cycle/product/currency.py,sha256=lB1pCD1747Ke3oFoqjAKEHbIdHPfrHKNaJSni69iMUQ,2150
111
- hestia_earth/models/cycle/product/economicValueShare.py,sha256=jSuwTa94OKnI4vn8B_DVkVyjRHSqDGoF6rAwl4NK1zk,8540
111
+ hestia_earth/models/cycle/product/economicValueShare.py,sha256=Ow0M1vN3TYvdB4NpTQo3IGqx8i3qZvRkjj7Z3Pg20ig,8576
112
112
  hestia_earth/models/cycle/product/price.py,sha256=BUkY9V2Frg442HEGG7PLmXZFTrBPbBFDTk5LbS40Ajs,1588
113
113
  hestia_earth/models/cycle/product/primary.py,sha256=FYyl-Mv8AmEml1nhDJwU01N4LrszJm6E31eztQDHzdg,1853
114
114
  hestia_earth/models/cycle/product/properties.py,sha256=7iKIAYLi2_11HsizwAdNbEmx-C7CH_tTrgBFEePTcWs,1547
@@ -142,7 +142,7 @@ hestia_earth/models/emissionNotRelevant/__init__.py,sha256=NkP635TDNs7bQBv2n9tUT
142
142
  hestia_earth/models/environmentalFootprintV3/__init__.py,sha256=lzg9qccwd9tbspw0lQ58YPprnvvSLTn3QV5T2-tPcC4,425
143
143
  hestia_earth/models/environmentalFootprintV3/freshwaterEcotoxicityPotentialCtue.py,sha256=N_gw2aNoCMW5Z1XM-uAyCF1kfpZUI07giv_bo3Lmr5Q,918
144
144
  hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandOccupation.py,sha256=r3GV2pspKWAlKU46TMh_6D_rrXtY_onhk3RnukzJjD8,5095
145
- hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandTransformation.py,sha256=ivz08j-LP9uqnFn9QoVHa29I9TDLXuH_0FvkoLlpa1M,7300
145
+ hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandTransformation.py,sha256=LXf9Fyl02RfX42u79Z1TCQAEZAgGAfyd3SFPF1InrtY,6233
146
146
  hestia_earth/models/environmentalFootprintV3/soilQualityIndexTotalLandUseEffects.py,sha256=SIjFYPv4n3mziohW2nlycaMssHQ3ws79hqHa4i3sCVI,2997
147
147
  hestia_earth/models/environmentalFootprintV3/utils.py,sha256=fZ99_G0Kh4OUW5wH-LglzCrKp8l2plKuCs4yvUH_3hs,699
148
148
  hestia_earth/models/epa2014/__init__.py,sha256=ckGf_6X7CCzI_18OqchEkuJAXKXM1x7V53u480ckknM,408
@@ -152,12 +152,12 @@ hestia_earth/models/fantkeEtAl2016/damageToHumanHealthParticulateMatterFormation
152
152
  hestia_earth/models/faostat2018/__init__.py,sha256=ecN-pKF1pkFnzmooBrg1VAxJkG76q9v4piiaKGP_vbo,412
153
153
  hestia_earth/models/faostat2018/coldCarcassWeightPerHead.py,sha256=y1ouj5FBrnGWxd4dIC7luG6iQwiMrm1CGgYbXCcKS8E,3139
154
154
  hestia_earth/models/faostat2018/coldDressedCarcassWeightPerHead.py,sha256=Aphq7r06Q5-RDer4i1CneOLifVQCKTiVPTIWE3AxLfE,3230
155
- hestia_earth/models/faostat2018/landTransformationFromCropland100YearAverage.py,sha256=M0NblGiHme8yL8CBvZvfgbW52DODq4FO_Y3iThlq3n0,2684
156
- 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
157
157
  hestia_earth/models/faostat2018/liveweightPerHead.py,sha256=flI3_TyG-7xoWp6cU6pZAFiXyHyFkfRz7Lmb7cQAffI,5140
158
158
  hestia_earth/models/faostat2018/readyToCookWeightPerHead.py,sha256=b1_GZQ3oFl88w6TY5DqLSqXNaYX6TcRBK4R9M2cWSjM,3165
159
159
  hestia_earth/models/faostat2018/seed.py,sha256=ts9PKs9UnZnJ9nPFlL7etL1Qb9uIWIES8Mz8W7FWbOw,2917
160
- hestia_earth/models/faostat2018/utils.py,sha256=gxs7tULyBDhkvB2NuI3RnYTYzm75vEw1B2dDf48D_R8,5741
160
+ hestia_earth/models/faostat2018/utils.py,sha256=hHlSjQPi518p4QYisaqFbc2F8As5VHyocjA_7WESGcw,7523
161
161
  hestia_earth/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
162
  hestia_earth/models/faostat2018/product/price.py,sha256=X7Zxa-rXthzYdgw2lzybbHc-oKGE5nyXpBn-BfZC_7w,7753
163
163
  hestia_earth/models/frischknechtEtAl2000/__init__.py,sha256=Fixyy9UwoCGP5-MHyJu_ctS40SQ2imfvZo8a547029U,421
@@ -200,17 +200,8 @@ hestia_earth/models/haversineFormula/__init__.py,sha256=o155nR-XI67iCSBVNYIu4sPR
200
200
  hestia_earth/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
201
  hestia_earth/models/haversineFormula/transport/distance.py,sha256=163KrmKzlEQuKYT1ZvpPgmKlv_-mmvxp0A1_uKya99w,4203
202
202
  hestia_earth/models/hestia/__init__.py,sha256=o5vAmPzSaK9XPgL8GCne3-lugfCOgZhHELYolNgqyyY,407
203
- hestia_earth/models/hestia/landCover.py,sha256=gOSmYi8ER08mClfHkBudEI1pjO6D1OwW6Iv3SSokFkk,28120
204
- hestia_earth/models/hyde32/__init__.py,sha256=hSOwDiK0M0NfmQbW_J7O_SZa8IsJMgITSHSVMsDS4KI,407
205
- hestia_earth/models/hyde32/landTransformationFromCropland100YearAverageDuringCycle.py,sha256=7ZqhExZORiYIzvkQhLhPdTPzyY2NnSKrat76poGn5tc,2392
206
- hestia_earth/models/hyde32/landTransformationFromCropland20YearAverageDuringCycle.py,sha256=RDMzmxz236nMSd5IYASXFMk8wL4HyeMi2zNdhhjkTs0,2388
207
- hestia_earth/models/hyde32/landTransformationFromForest100YearAverageDuringCycle.py,sha256=HRl901VmW9YkbY5FjfNFTJCCP99BAtnnR8fUvDEkkeY,2389
208
- hestia_earth/models/hyde32/landTransformationFromForest20YearAverageDuringCycle.py,sha256=rxpMfnqe1mzDZnJvTuLDq2wkNwo8pr7HP3iSa6sLrkI,2380
209
- hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle.py,sha256=hDBgoUxWkTn3xzmjGWwDIhltNwXdLcnwCTq3MQ-o1dk,2469
210
- hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py,sha256=Yi6Jnh4G4hILUoV2fgkDBNzT9Q7BY5wCUHEB-OUejys,2460
211
- hestia_earth/models/hyde32/landTransformationFromPermanentPasture100YearAverageDuringCycle.py,sha256=ZkRn4toDe3flLtJG6iptE6cCFEkexVQ4lg2nr779Do8,2442
212
- hestia_earth/models/hyde32/landTransformationFromPermanentPasture20YearAverageDuringCycle.py,sha256=wz2YMJ_qG1_2BosqsI6TDKAPqvVE6a3Ejuikz-cv-Z0,2433
213
- 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
214
205
  hestia_earth/models/impact_assessment/__init__.py,sha256=gTR_PhWps593fPhm-V826VLLrZVH8CNQTqxExB7GGNI,418
215
206
  hestia_earth/models/impact_assessment/allocationMethod.py,sha256=Qz41nTtMpDCcPy7PjhVtafE13dfJLX_D3Rg3yNhdY_Q,1279
216
207
  hestia_earth/models/impact_assessment/emissions.py,sha256=mJsTasM-5AFtZeKzQ9Q38SDLcnl_lQwfjQ52ro2Pjmg,3444
@@ -245,21 +236,21 @@ hestia_earth/models/ipcc2013ExcludingFeedbacks/gwp100.py,sha256=2fFEHTXxel_XPiMX
245
236
  hestia_earth/models/ipcc2013IncludingFeedbacks/__init__.py,sha256=VJ16KIGQQHybzZiTvu3mpZy_3j0xcd06RHHCfPrCMgU,427
246
237
  hestia_earth/models/ipcc2013IncludingFeedbacks/gwp100.py,sha256=HR2vnOc64mg_fxe9m5NmqxBZ8-aFuKb44gmItyuRL1s,1041
247
238
  hestia_earth/models/ipcc2019/__init__.py,sha256=LdRpu8KbEc-MroIwXfKDjfj-xbgmfUYgctjKVvtpRfQ,409
248
- hestia_earth/models/ipcc2019/aboveGroundBiomass.py,sha256=GHICyiq7pIFwTU7YryAbKqReEINIyG60TyNvY9_b9G4,19053
239
+ hestia_earth/models/ipcc2019/aboveGroundBiomass.py,sha256=K9gwIA9nwUMmoknVW5RhePwNIJFd38KMSs3SyDYRUes,19053
249
240
  hestia_earth/models/ipcc2019/aboveGroundCropResidueTotal.py,sha256=lT2QVV5c2LvQqZRfPEvFT_bMTayMXgIsFLnx8I6iYzw,3089
250
- hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=UtNolXLL4N-Fx6BCEFqYw5P9G_QcNsLApJhu0ekO-Gc,17874
241
+ hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=49cJSAlQxUH-n4f9VMB2utz74X0va6u3Ts0fQ0qldB8,18054
251
242
  hestia_earth/models/ipcc2019/belowGroundCropResidue.py,sha256=7AFU2Q0qPAvv6uEKWByS38jl77FvjTPbGm2GQ53waGg,3499
252
- 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
253
244
  hestia_earth/models/ipcc2019/carbonContent.py,sha256=tlQvu4Auhpjmaz7XrZz86xwxVrJhsYYf8DFA_aQeev4,7255
254
245
  hestia_earth/models/ipcc2019/ch4ToAirAquacultureSystems.py,sha256=q6yyEiYQhHJ2VyQy2Fa84cuTl1D8bjBXOK3UpaRuo20,3196
255
- hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=3dRK2VaBqpaFbHYSUG_vmvS6nRGNCV5PycPva2-Dovc,11631
256
- hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=eY_yb7ncTb_2HoUUgXZnnRHiybTXYj_DTe3CmDzD3fY,6717
246
+ hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=QLQo_VtdumjVdVcaYBhpK5nwEfQJb6EnFkcAI2VIRio,11846
247
+ hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=WnKmSQSqr1Jv7_95DLgtufPYGN5TeV3eDcFV3btDoq8,6706
257
248
  hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py,sha256=TJ4J7VA5n4RPrJYZQeR3lc3ZoCw7T1E5Cb1XJewr834,7331
258
- hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py,sha256=fefPcxy7TTG-33dgZecDppMroUAmKoluhomyLuRqQiU,6545
259
- hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py,sha256=l5Mrb8non9JjQhpWMzqHHK7FAjYPuWUzIwa08zdBUpo,6595
260
- 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
261
252
  hestia_earth/models/ipcc2019/co2ToAirLimeHydrolysis.py,sha256=7z0zdqiiWQwkyJCgSNMoK2mft3cJkTRlqwKrMuSKdWI,2454
262
- hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py,sha256=1yC99dH3ZQC3PX_ppLhDxzECTTvGwiRSGxkFudEzKBw,6613
253
+ hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py,sha256=UQjmccUsKxsycG_htbD1-T2xw6AklKqIR3u8KIMGBOY,6709
263
254
  hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py,sha256=Ofld5SuRKndcKB3FFFoUdzSgNq-gc4kmiNyyrPKQ3Io,3580
264
255
  hestia_earth/models/ipcc2019/croppingDuration.py,sha256=-CesZ2cNDOQoU3QyVFnSWYO-6-JXxuhRDQoHoxTawDA,3228
265
256
  hestia_earth/models/ipcc2019/ligninContent.py,sha256=Qh-UH4lv1TIf7wWlbAPwIZZHxzbbmQgND3m15pt5Si8,7285
@@ -281,9 +272,9 @@ hestia_earth/models/ipcc2019/no3ToGroundwaterOrganicFertiliser.py,sha256=px2SN-u
281
272
  hestia_earth/models/ipcc2019/noxToAirInorganicFertiliser.py,sha256=fmmFgjtvOD2TrrLY03jYly_KvDnCsAXqhL_tmZQQt-A,4480
282
273
  hestia_earth/models/ipcc2019/noxToAirOrganicFertiliser.py,sha256=9dx_MRTwJGxJRq6mj2EJQMdQ2w6j7lw0fQk0If_cIGc,4152
283
274
  hestia_earth/models/ipcc2019/organicCarbonPerHa.py,sha256=C9ef41fd-gYixEV3sTs9VMHHdnSZJ14kbEEmMG116hY,8653
284
- hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1_utils.py,sha256=ns4kWVRoXdAmhyPfKlMTiRcsuHFJtpoNz41nyNwZ3Sg,82096
285
- hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2_utils.py,sha256=9S_dz4CU5yw6ClFnGZxch1GWuJMmbSVapkTgSyXMG3Q,63535
286
- 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
287
278
  hestia_earth/models/ipcc2019/pastureGrass.py,sha256=Hhm9szzsL3otuo-V6fQ_cNyDbG0dlubr4-1L4WefbDE,10304
288
279
  hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=nL31uS3c77PH_5nA2E2MvB1NS2mMvhD341taGl5YWNE,13842
289
280
  hestia_earth/models/ipcc2019/utils.py,sha256=MSDMu15D9DnilFUgi4_6jYXC0FaKso3OODauGTMB6hs,6229
@@ -398,25 +389,19 @@ hestia_earth/models/linkedImpactAssessment/__init__.py,sha256=SPP09DMS4zUThyQfcg
398
389
  hestia_earth/models/linkedImpactAssessment/emissions.py,sha256=ZU68ljsidyqIKIdFqtR9mze5Am0fK_PE1x4GBTwBTr0,6395
399
390
  hestia_earth/models/linkedImpactAssessment/freshwaterWithdrawalsInputsProduction.py,sha256=DSLX_aEWaUFcFZRD46bG5lIQ4TtAtIqH-sMkVCJH2Dg,990
400
391
  hestia_earth/models/linkedImpactAssessment/landOccupationInputsProduction.py,sha256=SggB_4tpiKNeb6TIQWBm-X9VwG4pzLoyHdK8JroRIsE,576
401
- hestia_earth/models/linkedImpactAssessment/landTransformationFromCropland100YearAverageInputsProduction.py,sha256=jxeJS8r1qYIoyeEE-MGKbldEDL3x9CG8aIb4JdcUnj4,1036
402
- hestia_earth/models/linkedImpactAssessment/landTransformationFromCropland20YearAverageInputsProduction.py,sha256=vluuIcr1jYhs11oz7nANk2qUuUVPy5uNkvpfMv_M4LE,1034
403
- hestia_earth/models/linkedImpactAssessment/landTransformationFromForest100YearAverageInputsProduction.py,sha256=pDPLaJh6eWD_ENuWIuAhHHcgzWK44emt9A6Ckc0ob0c,1032
404
- hestia_earth/models/linkedImpactAssessment/landTransformationFromForest20YearAverageInputsProduction.py,sha256=h-ZxPjc4Wdl4fJThcbVkktHL2btO48cfmYA3pZLeKiY,1030
405
- hestia_earth/models/linkedImpactAssessment/landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction.py,sha256=Bb-qMHTjazCSZi0MGT9nYXDBb14jnpTbMzlz-X_5lMM,1064
406
- hestia_earth/models/linkedImpactAssessment/landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction.py,sha256=wQdJ4NqEfjI3N3tD8X5bCEmz-2XVoYVLriKcLRLhPmU,1062
407
- hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPasture100YearAverageInputsProduction.py,sha256=7btlXl5PL47qIjfs-w_xLZY_nsRnJAwTREtt8LpY6UI,1052
408
- hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPasture20YearAverageInputsProduction.py,sha256=pdluhfRQuJK0EHq-L0s0TOf37tvOQYB-M-wZiuSbarw,1050
409
- hestia_earth/models/linkedImpactAssessment/utils.py,sha256=dGwGc2d-8_WQElTpfyPmz5vQtL-LHQRmiZnCTuPXMDs,1876
410
- hestia_earth/models/mocking/__init__.py,sha256=n3Fkkrvh8zHNWiJZmnfQ7WZ91JRzAO9P6pSG1JpwtXo,687
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
395
+ hestia_earth/models/mocking/__init__.py,sha256=9VX50c-grz-snfd-7MBS0KfF7AadtbKuj7kK6PqtsgE,687
411
396
  hestia_earth/models/mocking/build_mock_search.py,sha256=p15ccEUmkmLp1RiGNznxMz3OFHbI8P1-29ExuohiQN8,1355
412
397
  hestia_earth/models/mocking/mock_search.py,sha256=ccFe_WrI73JElFmxp4hPNLCX7eeU--lBC1JFR901KJY,1069
413
- hestia_earth/models/mocking/search-results.json,sha256=zLe8af2LuObBNp2pcIIbIuHaaDhERHdSOFli7rBVHFs,101697
398
+ hestia_earth/models/mocking/search-results.json,sha256=zJwxkbn7uvCFScsfxub4Ad26J8pMRVh_9ZILRfy6qnE,101694
414
399
  hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
415
400
  hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=Qt-mel4dkhK6N5uUOutNOinCTFjbjtGzITaaI0LvYc4,2396
416
401
  hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=JT0RybbvWVlo01FO8K0Yj41HrEaJT3Kj1xfayr2X-xw,2315
417
402
  hestia_earth/models/pooreNemecek2018/ch4ToAirAquacultureSystems.py,sha256=CxjhFinScTebBGNVheEdbdw36DdHwoPszAnbxtd6_9s,6590
418
- hestia_earth/models/pooreNemecek2018/excretaKgN.py,sha256=kKzXD67L-VUFUMS2cu72V336eTZAviHPg8XddbYtF_w,6422
419
- 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
420
405
  hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py,sha256=HB_9q5eE6al2Te3v29hC5wqxsYe4P46ZAPwdWNzx3v0,3939
421
406
  hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py,sha256=78N513lNtjol0KKddxmG3Pb9vAmledlrWbfURVdLHBA,3139
422
407
  hestia_earth/models/pooreNemecek2018/longFallowDuration.py,sha256=Wdm6QyOttCFP9Y3OjbaYrvdMmivOmMIT-m5Eg9SM9rY,1511
@@ -435,8 +420,8 @@ hestia_earth/models/pooreNemecek2018/plantationDensity.py,sha256=-y-zXHFPet0LdIg
435
420
  hestia_earth/models/pooreNemecek2018/plantationLifespan.py,sha256=FudC-csC1IkiFOJ_uD0s6_rwsgqVrUN6Ej7A03JXDsM,959
436
421
  hestia_earth/models/pooreNemecek2018/plantationProductiveLifespan.py,sha256=Q54woX67eUab0qEEAuW2naFGhnVPJHrMas3bG92KNeg,1740
437
422
  hestia_earth/models/pooreNemecek2018/rotationDuration.py,sha256=j5hW_NEKYQbeMcdsqp2nQIDXCnUdZIKURzAmPCiegQk,1525
438
- hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py,sha256=dSTghGYbVx_kGoOwFVybSZGUShRRJImanKIxrrtDEG0,2520
439
- 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
440
425
  hestia_earth/models/poschEtAl2008/__init__.py,sha256=nvyyGglxCTV4PpxcOjY7jJb0v8Bjzj435Zt1j6VcryM,414
441
426
  hestia_earth/models/poschEtAl2008/terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=1pd7RX4Q0ilASi9k3l1zNnz3bUg2MakR8luJQVxYxKA,1418
442
427
  hestia_earth/models/poschEtAl2008/terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=z6i-wYpPrchNmivb4Cvr9wOsc4WvDRQadORFOq_YiYM,1420
@@ -495,12 +480,12 @@ hestia_earth/models/recipe2016Individualist/ozoneDepletionPotential.py,sha256=cR
495
480
  hestia_earth/models/recipe2016Individualist/terrestrialAcidificationPotential.py,sha256=YvFqXh8SdYy1Na71mYGO9Dpi928fzzXESRA3x-JKG7Y,1069
496
481
  hestia_earth/models/recipe2016Individualist/terrestrialEcotoxicityPotential14Dcbeq.py,sha256=Sf6_kPt1hHRwe_Cg6Fz7nnxBZgIhpUzi8xMLJSxoRN8,928
497
482
  hestia_earth/models/schererPfister2015/__init__.py,sha256=_6FJKfWeAbbS3jFzQ8gEVzoX1LZdPWUTLrow6Hz90U0,419
498
- hestia_earth/models/schererPfister2015/nErosionSoilFlux.py,sha256=0l2AByDtq8Ci-36duTnwFvjeelnQ-_TOaeah5A2Yv8U,4924
499
- 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
500
485
  hestia_earth/models/schererPfister2015/pToDrainageWaterSoilFlux.py,sha256=iQs5lLLgGr1thOQ0ZnTLJDJjX7RBwPdu--8p81BZ988,2310
501
486
  hestia_earth/models/schererPfister2015/pToGroundwaterSoilFlux.py,sha256=tH-jyd8PFGvEVCO9u4coyVhghYcZyPgbPWQXQsTmDMg,1972
502
487
  hestia_earth/models/schererPfister2015/pToSurfaceWaterSoilFlux.py,sha256=evd2jmFZ9lq-uwXiBTgP5wJ-KTjNBVztjSp8eW9-8qg,2947
503
- hestia_earth/models/schererPfister2015/utils.py,sha256=40IbxK5w5DuwVSm9ox6v2ibzt29it7ugYThUWpvYOIU,3145
488
+ hestia_earth/models/schererPfister2015/utils.py,sha256=Xi59KRGbdbtqvQ9pfh7OWTkGnobDA4188h_oMyT8oa0,3330
504
489
  hestia_earth/models/schmidt2007/__init__.py,sha256=xheSN6LOGXpWx7Hnv83onhe60Xk1_jk1PJg1nH_aZOQ,412
505
490
  hestia_earth/models/schmidt2007/ch4ToAirWasteTreatment.py,sha256=-N5uLvVHlA2djOs_lwR_8RmbeCfkPw5p3vmbqG2kzkI,1474
506
491
  hestia_earth/models/schmidt2007/h2SToAirWasteTreatment.py,sha256=f8a5ZRuCltpO8GWwQ0l1laWrw2yPGqOPaq8j6ZOJFTE,1474
@@ -512,7 +497,7 @@ hestia_earth/models/site/brackishWater.py,sha256=vLEhIZv5PUKwzwvIuYrWi7K---fq7ZX
512
497
  hestia_earth/models/site/cationExchangeCapacityPerKgSoil.py,sha256=0eH4A-tXJ0hvIkiYXWxlx8TfrdbIKUGYUDk97-yQJgg,3653
513
498
  hestia_earth/models/site/flowingWater.py,sha256=v3g5722GIA4zQAUQI9yGFiZvFvI1QAVZqlQrY-6_B3A,1731
514
499
  hestia_earth/models/site/freshWater.py,sha256=FXs3Vt8V4e-wn325_dwSTOKlZtn5ksNUpvYGDeLJShY,1255
515
- hestia_earth/models/site/management.py,sha256=hjDWvFc1kjaV0-bqG44HbGYJOhpSxb1-Pj5yVCy19Hk,10822
500
+ hestia_earth/models/site/management.py,sha256=LXPHWwQ_3HVs651aZx3-CrczhEhYGIiga-WlEmw8A3c,11717
516
501
  hestia_earth/models/site/netPrimaryProduction.py,sha256=UIIQkYd911qVzrWjxBLrC37e-RARIVgDwLdARY9BuLw,1849
517
502
  hestia_earth/models/site/organicCarbonPerHa.py,sha256=F2ShinHf0m9qKa1nCYBspsDkRY6jzOl0wM8mSDre22I,14916
518
503
  hestia_earth/models/site/organicCarbonPerKgSoil.py,sha256=t--wAshiAKS-JvEKhLFRadGvgSBv5NFZ68jdyms_wh4,1945
@@ -538,7 +523,7 @@ hestia_earth/models/site/post_checks/__init__.py,sha256=CkExxesk1GuG8NjrbKfix1iD
538
523
  hestia_earth/models/site/post_checks/cache.py,sha256=_MZsNsclecUdHDT2MsYx4cEsVUXydIasddgZNA6SU4k,284
539
524
  hestia_earth/models/site/pre_checks/__init__.py,sha256=fjv6nU5fiL-CLyaa-cBpiLB-xujgPzeK7i7ZJuTOjCI,394
540
525
  hestia_earth/models/site/pre_checks/cache_geospatialDatabase.py,sha256=gEceynsvPAB6lN36t73yRAAaIn0wLvvK3NK0vXKM7mY,5654
541
- 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
542
527
  hestia_earth/models/site/pre_checks/cache_years.py,sha256=qGwTaHlWxnVT7iVxXVcpJ-oG6M-VH4ZpCDTdTixUHR4,883
543
528
  hestia_earth/models/stehfestBouwman2006/__init__.py,sha256=EhvD4NK6oEPevusLb1WdYV3GT_fCtQx4gvdMhK_dEIQ,420
544
529
  hestia_earth/models/stehfestBouwman2006/n2OToAirCropResidueDecompositionDirect.py,sha256=6BDeQUwC2tgvZGB8FbyPVLCDqxH-h1RGM73RXucwkuo,2733
@@ -570,15 +555,16 @@ hestia_earth/models/transformation/product/__init__.py,sha256=47DEQpj8HBSa-_TImW
570
555
  hestia_earth/models/transformation/product/excreta.py,sha256=Yj9wMF5if-zivb6qbN3vy1X51ZNYxvoyG9f4KPp3Y18,5700
571
556
  hestia_earth/models/usetoxV2/__init__.py,sha256=pK37V3H-KvYcvRKw4Mv8CWrB2N0LFLzmv0jKLdhGGqs,409
572
557
  hestia_earth/models/usetoxV2/freshwaterEcotoxicityPotentialCtue.py,sha256=pPX8u-Aq6Pg5Y9xw0CS0S2WkAHQpOMl0lL2tLQwwOuU,918
573
- hestia_earth/models/utils/__init__.py,sha256=TAcIoHR4NBIuHjKEuTSK1s4Z5mEzHaDqOPzZ8gQT2D4,6452
574
- 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
575
560
  hestia_earth/models/utils/animalProduct.py,sha256=M5IunAKGY6oZv3j1Ascl34ywyeLWApqOIlBzbtlA2FE,721
576
561
  hestia_earth/models/utils/aquacultureManagement.py,sha256=dxrbC1Xf140cohxTbSw6TxLAnAASWTdNZwBBam4yQnw,171
577
562
  hestia_earth/models/utils/array_builders.py,sha256=QEkM7e75Y9aq5yEPEk3R8md36IuvCDkpekdGm3uA0uk,19397
578
- 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
579
565
  hestia_earth/models/utils/completeness.py,sha256=2-GusD9UycobDZq8y5jar0ZcOjyqnSbzPRT_5XMc4YA,1259
580
- hestia_earth/models/utils/constant.py,sha256=AkZth53LHCdOPKfHzAnb18IYDualye7LkIX5ctBnNXg,3355
581
- hestia_earth/models/utils/crop.py,sha256=5KigEHd15nT8O9_1woxKJF5rEWiSkIkJqDAXet8BB9g,2383
566
+ hestia_earth/models/utils/constant.py,sha256=6wLx8xb2R8HtpEpVy5e-PbioOo7QCu2n-W72fs6OvgE,3411
567
+ hestia_earth/models/utils/crop.py,sha256=imVLCFGB-h4kAktyg3lJPjXCXDQY3Lr5M0Gz_SqXNOg,2573
582
568
  hestia_earth/models/utils/cropResidue.py,sha256=_0Q35CrliJeo31xGHsPWe8A2oHxijdIsOrf3gBEqhlA,612
583
569
  hestia_earth/models/utils/cropResidueManagement.py,sha256=nIDFjf39rDD10UHSVudfDyu-EiL261g8jyrgS-2aDKw,347
584
570
  hestia_earth/models/utils/currency.py,sha256=f_ArJANb--pZq4LL49SXQ1AMX_oKroqwBXKRRQqZwsM,578
@@ -591,7 +577,7 @@ hestia_earth/models/utils/feedipedia.py,sha256=wzzrMbYlda1XCpWiObLz4bFLXbAZejHcx
591
577
  hestia_earth/models/utils/fertiliser.py,sha256=DBO4OBNgnQJ0fCQMDkIk_ZGZX-uKGaTFZCEXfAnJciY,690
592
578
  hestia_earth/models/utils/fuel.py,sha256=VR-nwJ9OA35vCfQ8Iwm0QBKulMFDBKCsnLp5VmNPmCM,1386
593
579
  hestia_earth/models/utils/impact_assessment.py,sha256=3nKhTzk5KTvoiOBWrNvClfBDHtep0KOrttkzl0vst94,8071
594
- hestia_earth/models/utils/indicator.py,sha256=IFrVIUYpmdVLOR1SKkrTReDbG1Tzq2b6daVvLMYpCs4,537
580
+ hestia_earth/models/utils/indicator.py,sha256=UuuraMUdKLqjcm_zEoF8BaMb76qW23djIA_2DeaoiEw,700
595
581
  hestia_earth/models/utils/inorganicFertiliser.py,sha256=_dLBY-otGkLr8PobR5dQ89bF2uwc2PB4JPrHFSksMEQ,1900
596
582
  hestia_earth/models/utils/input.py,sha256=gsVFKTC9WF8dO6YAg_-H_GAOQTnvAr49Ox5-eTH8zf8,5145
597
583
  hestia_earth/models/utils/landCover.py,sha256=8-nfynzCx9gf9YfhpuoH6Cn4kQwWFpYA5RmoGW-0ETE,300
@@ -615,7 +601,7 @@ hestia_earth/models/utils/transformation.py,sha256=nyT5Mz4_VgFwhkL8JoNX9kxxow0zu
615
601
  hestia_earth/models/webbEtAl2012AndSintermannEtAl2012/__init__.py,sha256=Niv7ZFMBCwThlbCKGOwA17QdkpOUDFrqrFItGNqnZAA,434
616
602
  hestia_earth/models/webbEtAl2012AndSintermannEtAl2012/nh3ToAirOrganicFertiliser.py,sha256=TGXyusrRd9shT842iqbrI6MkQhICgw7uYdrl4jsDrg8,4193
617
603
  tests/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
618
- tests/models/test_cache_sites.py,sha256=R35GdQtQ7gObX3BbH1Y2SDq3lBriXP1SC-1fNNkjN-U,2140
604
+ tests/models/test_cache_sites.py,sha256=vuEVZh_mkuI2cPotX2GB88lURJm2giOQ3yu2Cn4iLoI,2997
619
605
  tests/models/test_ecoinventV3.py,sha256=_BqfWiYFaw-Y7A-EeabHEnja3d7yb4Ed7gGGvu3Srpw,1936
620
606
  tests/models/test_ecoinventV3AndEmberClimate.py,sha256=_EOxdrdavXP6L5_LtvaVbXb_-56UJXSaiPhpGntmwVc,801
621
607
  tests/models/test_emissionNotRelevant.py,sha256=YXTdRfcdR_JepHuj2P3Y3r0aFMKNOmsXQHY48tmLTQo,1316
@@ -633,7 +619,6 @@ tests/models/aware/test_scarcityWeightedWaterUse.py,sha256=JmwOQFxcFm45IKn_aJU1K
633
619
  tests/models/blonkConsultants2016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
634
620
  tests/models/blonkConsultants2016/test_ch4ToAirNaturalVegetationBurning.py,sha256=-bgFT4r1mfy9cntiTDUCTF6o6o5In8UoxHTVK2zSQXc,1203
635
621
  tests/models/blonkConsultants2016/test_co2ToAirAboveGroundBiomassStockChangeLandUseChange.py,sha256=7IUZXz7IFudISwbu3-Um537jp-KGZ9pstFuIZ0Hi1ig,1229
636
- tests/models/blonkConsultants2016/test_landTransformationFromForest20YearAverageDuringCycle.py,sha256=0VrYyvnKnfTpElwHLKp2YxXXTQIbv5q8x10NCaZjzTs,1198
637
622
  tests/models/blonkConsultants2016/test_n2OToAirNaturalVegetationBurningDirect.py,sha256=2ANnNfp4nl5NHUO8DdHIiAp5ojBL1vP2Bv4aekrBITk,1228
638
623
  tests/models/blonkConsultants2016/test_utils.py,sha256=9OYZVBui1pauU-ipisUGzQc9johzMYDkXhqYpCWROnU,456
639
624
  tests/models/chaudharyBrooks2018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -642,7 +627,7 @@ tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsLandTransform
642
627
  tests/models/chaudharyBrooks2018/test_damageToTerrestrialEcosystemsTotalLandUseEffects.py,sha256=NTc3PZZRc9ZqGpaARdbuzLWR5bB0HCPw5AMdGmwVsRg,704
643
628
  tests/models/cml2001Baseline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
644
629
  tests/models/cml2001Baseline/test_abioticResourceDepletionFossilFuels.py,sha256=a6TF9qQmpcHCndcF3-xyhrVd4F2KFr1gZzaIw8gimQ0,8805
645
- tests/models/cml2001Baseline/test_abioticResourceDepletionMineralsAndMetals.py,sha256=atWYPfJlLVWbcMxFxnuRZOmjGrbjQP0q3KhT0SJBy8Y,4525
630
+ tests/models/cml2001Baseline/test_abioticResourceDepletionMineralsAndMetals.py,sha256=xBoSGZaNCSpfDdNFIbyJhJslDJD5A_eTywz01GDqFNM,4513
646
631
  tests/models/cml2001Baseline/test_eutrophicationPotentialExcludingFate.py,sha256=ZIIx_EiYbUxUoAS7NuQrxqwTFS3rXQm9_1AsqF_bhB8,894
647
632
  tests/models/cml2001Baseline/test_terrestrialAcidificationPotentialIncludingFateAverageEurope.py,sha256=t3WBdg_aTYSLfaqeXUDyvQJ8ZqbvKwv9RKaZyRzj61k,925
648
633
  tests/models/cml2001NonBaseline/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -667,6 +652,7 @@ tests/models/cycle/test_inorganicFertiliser.py,sha256=c-JDYC0qDK4JWlYDaGX53AcKfe
667
652
  tests/models/cycle/test_irrigatedTypeUnspecified.py,sha256=9YGwpDO_RHMaldvjJZ0xdrdfUzYDnLPt6nMJ2eRXSTI,2151
668
653
  tests/models/cycle/test_liveAnimal.py,sha256=rKcd4GKl9kKlp4bft3HEr58Btv-cPQq94XdAL9O1ky8,2138
669
654
  tests/models/cycle/test_longFallowRatio.py,sha256=sztr1pysldwedTC78JWUHAVWl2oL0jTIQ13c6Nxzlso,1512
655
+ tests/models/cycle/test_materialsAndSubstrate.py,sha256=pYaNZiLVmmogAebUZjOri41pa7k78gjy7OOD8OXm4bk,1429
670
656
  tests/models/cycle/test_milkYield.py,sha256=gl0e9O0idVT6ld9mGc--EYWTJo452C2HOzGzHKrsq_g,1777
671
657
  tests/models/cycle/test_otherSitesArea.py,sha256=Mop7guZXEyX4ZFOBpqzsbu-cuaBFAqfIRZhe-WEvVwc,2131
672
658
  tests/models/cycle/test_otherSitesUnusedDuration.py,sha256=zQejrYNwq14Pwe3d0zmfhxjdif5s_udbdVCiZcTuC8w,1635
@@ -703,7 +689,7 @@ tests/models/cycle/completeness/test_material.py,sha256=bA1_32wmtdd77cD8vinkIjsp
703
689
  tests/models/cycle/completeness/test_seed.py,sha256=NvCh4-YTUVoo2K5tX9h7-Wo7GjZGsRn-Nxn76iTw3sY,1043
704
690
  tests/models/cycle/completeness/test_soilAmendment.py,sha256=2kXOyux6wVIbjIbsaCFNEN3Ic-RMLtli-pH7fAXZpo4,641
705
691
  tests/models/cycle/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
706
- tests/models/cycle/input/test_hestiaAggregatedData.py,sha256=qKe_XrIK9CTXx2V2XJefEOzx9A0GoZFwg4WUs3Hxkw4,3080
692
+ tests/models/cycle/input/test_hestiaAggregatedData.py,sha256=exH0kAT19ElPSCUUC4ZjywNoSjcebz20pO3jwpYYyuc,3316
707
693
  tests/models/cycle/input/test_properties.py,sha256=5O2ubBE_WSLz5NRtLTGwsE-gADIcw7sZyJqL0w7GYcQ,1962
708
694
  tests/models/cycle/input/test_value.py,sha256=NR7KHsqnPnw43BB1efT0KPaszY4DKY293Av-lVde-DI,977
709
695
  tests/models/cycle/post_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -713,7 +699,6 @@ tests/models/cycle/post_checks/test_site.py,sha256=In0Q0Tw3w_hV8_uAnOcL_iS2FoI_7
713
699
  tests/models/cycle/practice/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
714
700
  tests/models/cycle/practice/test_value.py,sha256=sYPoTkllrEt2oB92uA2q37FFtOjSX49749Nv1pUvqdw,1315
715
701
  tests/models/cycle/pre_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
716
- tests/models/cycle/pre_checks/test_cache_sources.py,sha256=tvk7E1LlJSq2Sb2MKBRlxWQBCUCHaSbM9ndTsg4d9ik,797
717
702
  tests/models/cycle/pre_checks/test_otherSites.py,sha256=IEWvG2hwmladHctZUy6jTg01ZnCvWJUtPgD4GHKcumQ,502
718
703
  tests/models/cycle/pre_checks/test_site.py,sha256=2JTrsOXVGfNn7FlLiX7DPNs6AHdeZuVvjNZP6SCjEII,694
719
704
  tests/models/cycle/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -744,7 +729,7 @@ tests/models/emepEea2019/test_utils.py,sha256=G6z8tEfWM0OPnUBaFCQgQyEi5-kRF_Dqsq
744
729
  tests/models/environmentalFootprintV3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
745
730
  tests/models/environmentalFootprintV3/test_freshwaterEcotoxicityPotentialCtue.py,sha256=ZPDKM23qlLMe_ZzeA-QIutSkFlod3BsmjloA9WA8nug,845
746
731
  tests/models/environmentalFootprintV3/test_soilQualityIndexLandOccupation.py,sha256=pgauGmFl52lQJVPaDHryrUU3LSmjWC-Al_XBqQj33u4,6116
747
- tests/models/environmentalFootprintV3/test_soilQualityIndexLandTransformation.py,sha256=kM1XOfp3E74XH2eoVlCoLhNCmgwhMCZxad8IhtEBWKc,6927
732
+ tests/models/environmentalFootprintV3/test_soilQualityIndexLandTransformation.py,sha256=3o9pT6S6yNAlvouViRWxVXsjOzXnbZ_OZjRV_jkaQQg,6178
748
733
  tests/models/environmentalFootprintV3/test_soilQualityIndexTotalLandUseEffects.py,sha256=j6V2AE1I98hi-Cv_-L5Rc2zzL0au9SWW4XnMkSuV7yo,2314
749
734
  tests/models/epa2014/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
750
735
  tests/models/epa2014/test_no3ToGroundwaterExcreta.py,sha256=ESVz4UURvQfhjGBTxjuAV_bymMBcvGNfLAkYMvNup9U,1217
@@ -754,11 +739,12 @@ tests/models/faostat2018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
754
739
  tests/models/faostat2018/test_coldCarcassWeightPerHead.py,sha256=RImhLygwrJ2RoEHjDwhuymvLEitOtNleP_lLoBhiNOs,1736
755
740
  tests/models/faostat2018/test_coldDressedCarcassWeightPerHead.py,sha256=hZVKMtf-F5Iz7igZVahDJoqzfm2VtcIlwWBPCry7kqw,1594
756
741
  tests/models/faostat2018/test_faostat_utils.py,sha256=DFVQHPhOmD0dsv9bNjv-zAHXpYJeJYpJsffy7MmXkh4,2301
757
- tests/models/faostat2018/test_landTransformationFromCropland100YearAverage.py,sha256=AkDXj4qNKgbu5xRbw9u_cUibnVSnAK1CN8pc4IjK9fk,1263
758
- 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
759
744
  tests/models/faostat2018/test_liveweightPerHead.py,sha256=5Z0Fw7iT3-REg8QjK8tUpWs5bUIG4fjWDM7SEOSYBcw,4799
760
745
  tests/models/faostat2018/test_readyToCookWeightPerHead.py,sha256=pMDcONs0WUvANcJ6_OPF7TBwMF45JGMxFRPNPtHLqVI,1570
761
746
  tests/models/faostat2018/test_seed.py,sha256=tUXoNVveX0m0ed9UXB4zXxIZsPxktXyUXlbWuUKG0sQ,1705
747
+ tests/models/faostat2018/test_utils.py,sha256=G4pOEwcM5k6FRbkE_4x6_G8vQxzDexNZnlj01_LHlt8,916
762
748
  tests/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
763
749
  tests/models/faostat2018/product/test_price.py,sha256=vUTT-FZVbXnDrwQVOgq8PWTDuFK_gAT6aqJ9ZK6Qcsc,3493
764
750
  tests/models/frischknechtEtAl2000/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -801,16 +787,8 @@ tests/models/haversineFormula/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
801
787
  tests/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
802
788
  tests/models/haversineFormula/transport/test_distance.py,sha256=hqzIOA1nGao8uiBE16J0ou52McwV4w30ZLpEAqtfi9k,970
803
789
  tests/models/hestia/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
804
- tests/models/hestia/test_landCover.py,sha256=gcmzd483h92nv8HROnSIZ5_ixBVgGqkZnZywCr6ZoBQ,6031
805
- tests/models/hyde32/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
806
- tests/models/hyde32/test_landTransformationFromCropland100YearAverageDuringCycle.py,sha256=tOwcToAZLgIvVEx0i3S67EDaTBi_gXKy-XZCnw1Akl8,797
807
- tests/models/hyde32/test_landTransformationFromCropland20YearAverageDuringCycle.py,sha256=Fw1goOLe6xPUA7J65MojAyvuEBWnsypHzfjopER9wWo,796
808
- tests/models/hyde32/test_landTransformationFromForest100YearAverageDuringCycle.py,sha256=A5ZYNmu7vThE51g6BXZkL8-xsv5EEgFn5a9zxN6T1bw,795
809
- tests/models/hyde32/test_landTransformationFromForest20YearAverageDuringCycle.py,sha256=mx90anMpzRLVjdOoU6aCghSl7mQNGCO4C-rRnMyVzAQ,794
810
- tests/models/hyde32/test_landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle.py,sha256=D4EcjiN0-O38VumO7EnnohH6c7adThXWfwiwat2jKT4,819
811
- tests/models/hyde32/test_landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py,sha256=C9caq_xP8NZgtA-WWVArWZ0dzT8k4OmXocCYYrGHxGE,810
812
- tests/models/hyde32/test_landTransformationFromPermanentPasture100YearAverageDuringCycle.py,sha256=uGrwTFGkOK-s19gFxOC3BGoCTlUkqVxVN18GgbFhDLE,805
813
- 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
814
792
  tests/models/impact_assessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
815
793
  tests/models/impact_assessment/test_allocationMethod.py,sha256=HkUt6oWdEyFSdxMpx8y_Oxk0nO2Fi9B_kUZcVte9tzg,1223
816
794
  tests/models/impact_assessment/test_emissions.py,sha256=K6Mi800irxajDfsmG7RHV-Y89U2KoCT_k3VR-RqCV24,1019
@@ -846,9 +824,9 @@ tests/models/ipcc2013ExcludingFeedbacks/test_gwp100.py,sha256=Od9ALNCag5pCVJnp2p
846
824
  tests/models/ipcc2013IncludingFeedbacks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
847
825
  tests/models/ipcc2013IncludingFeedbacks/test_gwp100.py,sha256=4HydDKiZDpxtgqgjpAg4cTVQu-jM-_tdDdJFmNNrwSc,875
848
826
  tests/models/ipcc2019/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
849
- tests/models/ipcc2019/test_aboveGroundBiomass.py,sha256=Kbg6gByJ6pEQ9ykwWYTmvSX7FS8r8jw2sPYBd6m3sZk,5461
827
+ tests/models/ipcc2019/test_aboveGroundBiomass.py,sha256=L5A0ZeOvaas_PuU8TS5FHWTjECWHQFT4u1-sqSUu5JM,7282
850
828
  tests/models/ipcc2019/test_aboveGroundCropResidueTotal.py,sha256=AADYB1g9vftH7YSvNyihHu8GQOiA7VhXxVQ-oJQNT88,2581
851
- tests/models/ipcc2019/test_belowGroundBiomass.py,sha256=2Jwq0wBQLUmYrpm3XoWpOdai0p16pGJRIJ-RvQ-dKwU,5402
829
+ tests/models/ipcc2019/test_belowGroundBiomass.py,sha256=ReinEHM9Hlz8JFhYU08p3GSboSXuaVxNJA9LEkJkZYI,7222
852
830
  tests/models/ipcc2019/test_belowGroundCropResidue.py,sha256=HUxHZLBdLX_E_oc3wqTwNtGY4M4yCWcxx-1iBYPF7_s,2576
853
831
  tests/models/ipcc2019/test_biomass_utils.py,sha256=I2q4pDGAD0aY_kpZCMPJoC-KbRYxdzY1rhr4xtJFWIA,3592
854
832
  tests/models/ipcc2019/test_carbonContent.py,sha256=_GWF5nGy-PxiqBZ5V7W_sHMz75YRzmxr79R-sZZg7yk,4146
@@ -856,11 +834,11 @@ tests/models/ipcc2019/test_ch4ToAirAquacultureSystems.py,sha256=o7bHOS4JkwexRrDh
856
834
  tests/models/ipcc2019/test_ch4ToAirEntericFermentation.py,sha256=3Hv86L4X_Va2mZL4KI-36AV00z-KBbKo0cb2ABg6Rv8,7928
857
835
  tests/models/ipcc2019/test_ch4ToAirExcreta.py,sha256=e58NXmBW2SNVLUqQO9A66Xq6jiGTyhdFZDZk51JApF8,2902
858
836
  tests/models/ipcc2019/test_ch4ToAirFloodedRice.py,sha256=FAp5b45WdX5Ih4yGUOZ4CmVD8smW1Lw1tnulx9AKVBI,1980
859
- tests/models/ipcc2019/test_co2ToAirAboveGroundBiomassStockChange.py,sha256=6aOupZOicEwnvPxN98_C00_YCQFDVv9dKgk6a3NbYIA,3107
860
- 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
861
839
  tests/models/ipcc2019/test_co2ToAirCarbonStockChange_utils.py,sha256=wCEtrbMl6zef8V-n_Ci_rtlQAlfuKm3khUVltr8eAcc,2173
862
840
  tests/models/ipcc2019/test_co2ToAirLimeHydrolysis.py,sha256=e5iuZ-kQNEVih0ZRgRPWqaUtXcLpfkoU7sQypbqA9_Y,1345
863
- tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py,sha256=Np-WQ0rE8lZ_Sw34nxD8wHQ0H_UZ257NA_ALBWsTkrA,4432
841
+ tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py,sha256=iCDvwg_jGv6Hg5m054p85U4sKYnHkZLXOq1CGJ3asBM,5413
864
842
  tests/models/ipcc2019/test_co2ToAirUreaHydrolysis.py,sha256=MmtEME0xjsa3KojFk_fxOLK6RZM_6p5HIpY2DOFHVu4,1530
865
843
  tests/models/ipcc2019/test_croppingDuration.py,sha256=gLRXeR6Tqa7ciD9KTRfsIflSeIIWT2iOpZMdcxAQla4,1871
866
844
  tests/models/ipcc2019/test_ligninContent.py,sha256=eIKEN__ab-0R52EhlhPSBiHnmTl6xOf1XbI33O-W9A4,4146
@@ -881,9 +859,9 @@ tests/models/ipcc2019/test_no3ToGroundwaterInorganicFertiliser.py,sha256=e7REnQ9
881
859
  tests/models/ipcc2019/test_no3ToGroundwaterOrganicFertiliser.py,sha256=e1ZViD12qB3bLdH3TJw3GbBP8iqMen-UJbcFkytb3VQ,1609
882
860
  tests/models/ipcc2019/test_noxToAirInorganicFertiliser.py,sha256=NZBSBJLM_j2PEpHRON2ysgKNF8x5sHfQVoAKQdGsfzk,1537
883
861
  tests/models/ipcc2019/test_noxToAirOrganicFertiliser.py,sha256=LR5pjV5vRbgSSQAw8kYRp_ij4CHInzgaDS6EggQuBiw,1104
884
- tests/models/ipcc2019/test_organicCarbonPerHa.py,sha256=RgIiManNgl5GzRybwU7rzsQqq8xzTPogvRYqop9ZQHE,13333
885
- tests/models/ipcc2019/test_organicCarbonPerHa_tier_1_utils.py,sha256=62z1uWd37ol42hGPMgspFsi76v1rpix17PkUMyh8hqQ,20751
886
- 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
887
865
  tests/models/ipcc2019/test_organicCarbonPerHa_utils.py,sha256=Zd2QlN_Q3k9djuByOH62A00tryVzlvNtsd46N79TTeU,1778
888
866
  tests/models/ipcc2019/test_pastureGrass.py,sha256=mKx8NnTtMT9TrXxRNLv73wD1TWBaiRZzA1xh2ukb-HI,2667
889
867
  tests/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -994,22 +972,16 @@ tests/models/lcImpactCertainEffectsInfinite/test_damageToTerrestrialEcosystemsTe
994
972
  tests/models/lcImpactCertainEffectsInfinite/test_damageToTerrestrialEcosystemsTerrestrialEcotoxicity.py,sha256=UJJ0raY5leOqtBpBlIGRZSUYqA5mNt-xmq5Eos_nysg,882
995
973
  tests/models/linkedImpactAssessment/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
996
974
  tests/models/linkedImpactAssessment/test_emissions.py,sha256=07z9LW5Ir3uL8odeU6puaeb9ZsgGclfWX3_h13cxeio,752
997
- tests/models/linkedImpactAssessment/test_freshwaterWithdrawalsInputsProduction.py,sha256=uGiKffgLCzWqeSrofmiZTBv6WNItar-ArC7jCofSNw0,859
998
- tests/models/linkedImpactAssessment/test_landOccupationInputsProduction.py,sha256=epP6d1bRI6YNJZt_dkQhBKpMzFg9D8nxahIYQiLyUnE,852
999
- tests/models/linkedImpactAssessment/test_landTransformationFromCropland100YearAverageInputsProduction.py,sha256=l15bLWmKG71Pr0WhAQSxRDuqc1SyVl7R4H9iQIZWY_g,890
1000
- tests/models/linkedImpactAssessment/test_landTransformationFromCropland20YearAverageInputsProduction.py,sha256=cfG3sKQQ3B_NODSHHTcA6-vtI4d3lcqm1QYk8CmwukQ,889
1001
- tests/models/linkedImpactAssessment/test_landTransformationFromForest100YearAverageInputsProduction.py,sha256=JWJNssUohSvj9Vrv_hpBHayIBoZ5iLDWPFkabRhzfbI,888
1002
- tests/models/linkedImpactAssessment/test_landTransformationFromForest20YearAverageInputsProduction.py,sha256=SbSkYLqMq5UapyZpFYIjmAIvVFfsh-og8PG2fVYRoZs,887
1003
- tests/models/linkedImpactAssessment/test_landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction.py,sha256=cCNqfR4c8teYaqz3YDWBd8vrqlcJm4eD8p09XUMQsp0,918
1004
- tests/models/linkedImpactAssessment/test_landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction.py,sha256=GYR71LUEHr8EPnXkCothX23viB2df_NbZ5g6fBhl75Q,917
1005
- tests/models/linkedImpactAssessment/test_landTransformationFromPermanentPasture100YearAverageInputsProduction.py,sha256=KB2zZ07QHk9IuPCRGIVdNBcx6CQqBEqdLjUGNZR8hDk,1041
1006
- 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
1007
979
  tests/models/pooreNemecek2018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1008
980
  tests/models/pooreNemecek2018/test_aboveGroundCropResidueTotal.py,sha256=m-cpFULarm0Ee4MV-OvhYPRg7W2_mvbrqHkjDZgcQsw,1660
1009
981
  tests/models/pooreNemecek2018/test_belowGroundCropResidue.py,sha256=A6EOD2B6frN0UtuUTP3GwZ7bNEtEudQfztHXjdiDwdQ,1655
1010
982
  tests/models/pooreNemecek2018/test_ch4ToAirAquacultureSystems.py,sha256=rUxD57yl82Ht8IyhbiQhi0xl8L9iLdnLpbI-T5C0Mck,2722
1011
- tests/models/pooreNemecek2018/test_excretaKgN.py,sha256=lKM-Q7TjQoxjvjY9tCcmJxoWvHuxglNCVsPXh6JBgCY,4063
1012
- 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
1013
985
  tests/models/pooreNemecek2018/test_freshwaterWithdrawalsDuringCycle.py,sha256=5QxDU6VzcwWup3Nuhn32kJoIlAkqcSggGr4CmoRqrFA,1623
1014
986
  tests/models/pooreNemecek2018/test_landOccupationDuringCycle.py,sha256=MrgxJIuojKCuwCKX6d_KMsg8dTkfdxWwZPnCtjFZDwo,1873
1015
987
  tests/models/pooreNemecek2018/test_longFallowDuration.py,sha256=kelZajIbKyvVm1vX_grRZy0IUrtejGI5GPn03qbElnw,925
@@ -1028,6 +1000,7 @@ tests/models/pooreNemecek2018/test_plantationLifespan.py,sha256=Pcbnhbt_HVfEet12
1028
1000
  tests/models/pooreNemecek2018/test_plantationProductiveLifespan.py,sha256=ifvjTXJxmbS3GH4a7S9T2mgPseajX8WL4KQ5lT_2Rus,935
1029
1001
  tests/models/pooreNemecek2018/test_rotationDuration.py,sha256=tD2E91beAXdyT-xf5QSqc7kp5UPDDEaCE-FgsoSGorg,923
1030
1002
  tests/models/pooreNemecek2018/test_saplingsDepreciatedAmountPerCycle.py,sha256=seT7-ip5lSjglaM2Wbaf4qsNrc2W_RYnafef4mQlc8U,1668
1003
+ tests/models/pooreNemecek2018/test_utils.py,sha256=oqKCNVw6LOAa4jJFadQCL8ysUbUiVCnm0XBOdqa2BVA,742
1031
1004
  tests/models/poschEtAl2008/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1032
1005
  tests/models/poschEtAl2008/test_terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=AlDvYqNq8TFPDNtgdSr1dNP-_Rqzbvoxq8ribh8AeEc,1876
1033
1006
  tests/models/poschEtAl2008/test_terrestrialEutrophicationPotentialAccumulatedExceedance.py,sha256=0-hn3Ssu5cfJor_Mq5DYzLlgXiw9ulARlBa_ovJGMbg,1875
@@ -1102,7 +1075,7 @@ tests/models/site/test_brackishWater.py,sha256=YGCp4glaWudKklYBSp-50KbfvIRtp3F4Q
1102
1075
  tests/models/site/test_cationExchangeCapacityPerKgSoil.py,sha256=tNMhN998vcjQ15I-5mNnFh2d7mHzEBIBO6o1VSfQNUE,1075
1103
1076
  tests/models/site/test_flowingWater.py,sha256=t_rxvdlmUVDsFBoDF20_zDM-0iiLKkNCV7knO9l1T7o,1370
1104
1077
  tests/models/site/test_freshWater.py,sha256=GOeAxHhPW_2E1wQdQRX4W-r7mnb_LgmiAVLImitoApw,982
1105
- tests/models/site/test_management.py,sha256=1RoufI0aSQdFajPYQBajpTLuNyeA3gmyb39PIz0y-5Y,2928
1078
+ tests/models/site/test_management.py,sha256=GT1SRtmZFxyIA8lUABAnzWKcD4JpBwjXGbWzGK-_DvA,1697
1106
1079
  tests/models/site/test_netPrimaryProduction.py,sha256=JCxG0MODbKVvl3hOqmKzh4FjHYn3Xs9KsVod6LvKQII,1108
1107
1080
  tests/models/site/test_organicCarbonPerHa.py,sha256=XtGrE7ZqthTF0x8lDxJ1slNd_GvYHEyEydcRgA46jEc,3207
1108
1081
  tests/models/site/test_organicCarbonPerKgSoil.py,sha256=0M-NMg_T3UXzGT_VlKOKhSxg4cZ0_zhd3FRgY5Hpj6o,1087
@@ -1126,7 +1099,6 @@ tests/models/site/measurement/test_value.py,sha256=i6w7X0Qb9utIGeopjQLz4S3tBrXVV
1126
1099
  tests/models/site/post_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1127
1100
  tests/models/site/post_checks/test_cache.py,sha256=g34PQgfyzYveRT-gVKJl0euyBp-Kav8JnBVk-bod1WA,191
1128
1101
  tests/models/site/pre_checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1129
- tests/models/site/pre_checks/test_cache_sources.py,sha256=KhNti9AsuMDBxliwyudlCVCj2WeyjqqTp6iIqSsV4AA,729
1130
1102
  tests/models/site/pre_checks/test_cache_years.py,sha256=sU0OhXGa4wC2DKduzlcxQVc51srS0Oks3L1gh1nJGf8,756
1131
1103
  tests/models/stehfestBouwman2006/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1132
1104
  tests/models/stehfestBouwman2006/test_n2OToAirCropResidueDecompositionDirect.py,sha256=NF0wADubo9boAuYMtUGH30s4tieHE8LNrf547JgmlAE,677
@@ -1156,7 +1128,8 @@ tests/models/usetoxV2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
1156
1128
  tests/models/usetoxV2/test_freshwaterEcotoxicityPotentialCtue.py,sha256=eq7Gcmfya9g0eOKKkuBhz8vq7xi_CmZ_LTSxueBwZt4,835
1157
1129
  tests/models/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1158
1130
  tests/models/utils/test_array_builders.py,sha256=uHxO4beJhdJD-1lI5aPEAsYziQP8SN7AJ9PEY67DpaI,8417
1159
- 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
1160
1133
  tests/models/utils/test_crop.py,sha256=ve_BqT2XuLTWAH-8YOnVY4nzMUSXYYXPB8S-5RtGlf4,463
1161
1134
  tests/models/utils/test_cropResidueManagement.py,sha256=RQt8lexeJzCyxZceIutgDpw7BpcqmjsUB0C0yZC2QpY,930
1162
1135
  tests/models/utils/test_currency.py,sha256=BPsojPsY9QW2aj8vgbjkPQXU8GU6wDwwtPZ3HdC4KTU,277
@@ -1181,8 +1154,8 @@ tests/models/utils/test_term.py,sha256=M5Sa26v2gzQYbZ4H_fo7DspnaCx__-WtL-MULGapC
1181
1154
  tests/models/utils/test_time_series.py,sha256=LMhRPf8rp3nAriKAC-2K3FDkrMWntRTUUCERw7Lt68g,2686
1182
1155
  tests/models/webbEtAl2012AndSintermannEtAl2012/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1183
1156
  tests/models/webbEtAl2012AndSintermannEtAl2012/test_nh3ToAirOrganicFertiliser.py,sha256=qi2FNXS5Af2WDtm7nq_FsprH3BfCF0XxnE0XHmC4aIY,2244
1184
- hestia_earth_models-0.64.13.dist-info/LICENSE,sha256=AC7h7GAgCZGJK_Tzh6LUCrML9gQEfowWwecEw2w54QM,1154
1185
- hestia_earth_models-0.64.13.dist-info/METADATA,sha256=-tsPy413szeE61Dd1h2judZ_9NToonyRp08fvj4BpFQ,3345
1186
- hestia_earth_models-0.64.13.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1187
- hestia_earth_models-0.64.13.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
1188
- hestia_earth_models-0.64.13.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):
@@ -0,0 +1,49 @@
1
+ from unittest.mock import patch
2
+ import json
3
+ import pytest
4
+ from hestia_earth.utils.tools import to_precision
5
+
6
+ from tests.utils import fixtures_path, fake_new_input
7
+ from hestia_earth.models.cycle.materialAndSubstrate import MODEL, MODEL_KEY, run, calculate_value
8
+
9
+ class_path = f"hestia_earth.models.{MODEL}.{MODEL_KEY}"
10
+ fixtures_folder = f"{fixtures_path}/{MODEL}/{MODEL_KEY}"
11
+
12
+
13
+ @pytest.mark.parametrize(
14
+ "input_node,cycle_duration,expected_result,test_name",
15
+ [
16
+ (
17
+ {"lifespan": 3, "value": [150]},
18
+ 200,
19
+ 27.4,
20
+ "lifespan, value and duration"
21
+ ),
22
+ (
23
+ {"lifespan": 5},
24
+ 200,
25
+ None,
26
+ "missing value"
27
+ ),
28
+ ]
29
+ )
30
+ def test_calculate_value(input_node, cycle_duration, expected_result, test_name):
31
+ result = calculate_value(
32
+ input_node=input_node,
33
+ field_name="value",
34
+ cycle_duration=cycle_duration
35
+ )
36
+ rounded_result = to_precision(result, 3) if result is not None else None
37
+ assert rounded_result == expected_result, test_name
38
+
39
+
40
+ @patch(f"{class_path}._new_input", side_effect=fake_new_input)
41
+ def test_run(*args):
42
+ with open(f"{fixtures_folder}/cycle.jsonld", encoding='utf-8') as f:
43
+ site = json.load(f)
44
+
45
+ with open(f"{fixtures_folder}/result.jsonld", encoding='utf-8') as f:
46
+ expected = json.load(f)
47
+
48
+ result = run(site)
49
+ assert result == expected