hestia-earth-models 0.72.2__py3-none-any.whl → 0.73.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.
Files changed (130) hide show
  1. hestia_earth/models/{akagiEtAl2011AndIpcc2006 → akagiEtAl2011}/__init__.py +1 -1
  2. hestia_earth/models/akagiEtAl2011/ch4ToAirCropResidueBurning.py +32 -0
  3. hestia_earth/models/akagiEtAl2011/nh3ToAirCropResidueBurning.py +32 -0
  4. hestia_earth/models/akagiEtAl2011/noxToAirCropResidueBurning.py +32 -0
  5. hestia_earth/models/akagiEtAl2011/pm25ToAirCropResidueBurning.py +32 -0
  6. hestia_earth/models/akagiEtAl2011/so2ToAirCropResidueBurning.py +32 -0
  7. hestia_earth/models/akagiEtAl2011/utils.py +45 -0
  8. hestia_earth/models/aware/scarcityWeightedWaterUse.py +2 -2
  9. hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsTotalLandUseEffects.py +1 -1
  10. hestia_earth/models/chaudharyBrooks2018/utils.py +1 -1
  11. hestia_earth/models/config/Cycle.json +48 -7
  12. hestia_earth/models/config/ImpactAssessment.json +22 -0
  13. hestia_earth/models/cycle/completeness/soilAmendment.py +1 -1
  14. hestia_earth/models/cycle/product/economicValueShare.py +3 -1
  15. hestia_earth/models/cycle/product/price.py +35 -10
  16. hestia_earth/models/cycle/product/revenue.py +5 -2
  17. hestia_earth/models/dammgen2009/noxToAirExcreta.py +14 -18
  18. hestia_earth/models/ecoinventV3/__init__.py +11 -6
  19. hestia_earth/models/ecoinventV3AndEmberClimate/utils.py +1 -1
  20. hestia_earth/models/emepEea2019/utils.py +2 -1
  21. hestia_earth/models/faostat2018/liveweightPerHead.py +1 -1
  22. hestia_earth/models/faostat2018/product/price.py +2 -2
  23. hestia_earth/models/faostat2018/seed.py +3 -2
  24. hestia_earth/models/faostat2018/utils.py +6 -5
  25. hestia_earth/models/geospatialDatabase/altitude.py +2 -1
  26. hestia_earth/models/geospatialDatabase/drainageClass.py +2 -1
  27. hestia_earth/models/geospatialDatabase/organicCarbonPerKgSoil.py +2 -1
  28. hestia_earth/models/geospatialDatabase/totalNitrogenPerKgSoil.py +2 -1
  29. hestia_earth/models/geospatialDatabase/totalPhosphorusPerKgSoil.py +2 -1
  30. hestia_earth/models/geospatialDatabase/utils.py +1 -1
  31. hestia_earth/models/globalCropWaterModel2008/rootingDepth.py +1 -1
  32. hestia_earth/models/hestia/brackishWater.py +1 -1
  33. hestia_earth/models/hestia/default_emissions.py +105 -0
  34. hestia_earth/models/hestia/default_resourceUse.py +110 -0
  35. hestia_earth/models/hestia/freshWater.py +1 -1
  36. hestia_earth/models/hestia/inorganicFertiliser.py +12 -12
  37. hestia_earth/models/hestia/landCover.py +7 -5
  38. hestia_earth/models/hestia/landTransformation100YearAverageDuringCycle.py +3 -0
  39. hestia_earth/models/hestia/landTransformation20YearAverageDuringCycle.py +3 -0
  40. hestia_earth/models/hestia/liveAnimal.py +1 -1
  41. hestia_earth/models/hestia/management.py +1 -1
  42. hestia_earth/models/hestia/netPrimaryProduction.py +1 -1
  43. hestia_earth/models/hestia/organicCarbonPerHa.py +2 -2
  44. hestia_earth/models/hestia/salineWater.py +1 -1
  45. hestia_earth/models/hestia/seed_emissions.py +34 -20
  46. hestia_earth/models/hestia/totalNitrogenPerKgSoil.py +1 -1
  47. hestia_earth/models/hestia/waterSalinity.py +2 -1
  48. hestia_earth/models/ipcc2006/aboveGroundCropResidueRemoved.py +2 -2
  49. hestia_earth/models/ipcc2006/aboveGroundCropResidueTotal.py +10 -6
  50. hestia_earth/models/ipcc2006/belowGroundCropResidue.py +12 -8
  51. hestia_earth/models/ipcc2019/animal/utils.py +1 -1
  52. hestia_earth/models/ipcc2019/belowGroundCropResidue.py +1 -1
  53. hestia_earth/models/ipcc2019/carbonContent.py +1 -1
  54. hestia_earth/models/ipcc2019/ch4ToAirAquacultureSystems.py +17 -9
  55. hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py +6 -6
  56. hestia_earth/models/ipcc2019/ch4ToAirExcreta.py +4 -2
  57. hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py +1 -1
  58. hestia_earth/models/ipcc2019/croppingDuration.py +4 -2
  59. hestia_earth/models/ipcc2019/ligninContent.py +1 -1
  60. hestia_earth/models/{akagiEtAl2011AndIpcc2006 → ipcc2019}/n2OToAirCropResidueBurningDirect.py +8 -4
  61. hestia_earth/models/ipcc2019/nitrogenContent.py +1 -1
  62. hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py +6 -2
  63. hestia_earth/models/ipcc2019/pastureGrass_utils.py +13 -12
  64. hestia_earth/models/ipcc2019/utils.py +6 -2
  65. hestia_earth/models/koble2014/residueBurnt.py +6 -3
  66. hestia_earth/models/koble2014/residueRemoved.py +1 -1
  67. hestia_earth/models/mocking/search-results.json +1577 -1573
  68. hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py +1 -1
  69. hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py +1 -1
  70. hestia_earth/models/pooreNemecek2018/excretaKgVs.py +1 -1
  71. hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py +1 -1
  72. hestia_earth/models/pooreNemecek2018/longFallowDuration.py +1 -1
  73. hestia_earth/models/pooreNemecek2018/nurseryDensity.py +1 -1
  74. hestia_earth/models/pooreNemecek2018/nurseryDuration.py +1 -1
  75. hestia_earth/models/pooreNemecek2018/plantationDensity.py +1 -1
  76. hestia_earth/models/pooreNemecek2018/plantationLifespan.py +1 -1
  77. hestia_earth/models/pooreNemecek2018/plantationProductiveLifespan.py +3 -1
  78. hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py +1 -1
  79. hestia_earth/models/resourceUseNotRelevant/__init__.py +65 -0
  80. hestia_earth/models/schererPfister2015/nErosionSoilFlux.py +5 -3
  81. hestia_earth/models/schererPfister2015/pErosionSoilFlux.py +5 -3
  82. hestia_earth/models/schererPfister2015/utils.py +5 -4
  83. hestia_earth/models/stehfestBouwman2006/n2OToAirSoilFlux_utils.py +1 -1
  84. hestia_earth/models/stehfestBouwman2006GisImplementation/noxToAirSoilFlux_utils.py +3 -3
  85. hestia_earth/models/utils/background_emissions.py +14 -10
  86. hestia_earth/models/utils/blank_node.py +6 -4
  87. hestia_earth/models/utils/crop.py +1 -1
  88. hestia_earth/models/utils/cropResidue.py +16 -0
  89. hestia_earth/models/utils/cycle.py +1 -1
  90. hestia_earth/models/utils/ecoClimateZone.py +2 -2
  91. hestia_earth/models/utils/excretaManagement.py +1 -1
  92. hestia_earth/models/utils/feedipedia.py +3 -3
  93. hestia_earth/models/utils/fertiliser.py +7 -1
  94. hestia_earth/models/utils/inorganicFertiliser.py +2 -2
  95. hestia_earth/models/utils/input.py +34 -1
  96. hestia_earth/models/utils/liveAnimal.py +2 -2
  97. hestia_earth/models/utils/lookup.py +1 -1
  98. hestia_earth/models/utils/measurement.py +5 -4
  99. hestia_earth/models/utils/productivity.py +1 -1
  100. hestia_earth/models/utils/property.py +4 -2
  101. hestia_earth/models/utils/site.py +2 -1
  102. hestia_earth/models/version.py +1 -1
  103. {hestia_earth_models-0.72.2.dist-info → hestia_earth_models-0.73.0.dist-info}/METADATA +1 -1
  104. {hestia_earth_models-0.72.2.dist-info → hestia_earth_models-0.73.0.dist-info}/RECORD +124 -113
  105. tests/models/akagiEtAl2011/test_ch4ToAirCropResidueBurning.py +33 -0
  106. tests/models/akagiEtAl2011/test_nh3ToAirCropResidueBurning.py +33 -0
  107. tests/models/{akagiEtAl2011AndIpcc2006 → akagiEtAl2011}/test_noxToAirCropResidueBurning.py +5 -17
  108. tests/models/akagiEtAl2011/test_pm25ToAirCropResidueBurning.py +33 -0
  109. tests/models/akagiEtAl2011/test_so2ToAirCropResidueBurning.py +33 -0
  110. tests/models/akagiEtAl2011/test_utils.py +18 -0
  111. tests/models/cycle/product/test_price.py +1 -11
  112. tests/models/dammgen2009/test_noxToAirExcreta.py +30 -10
  113. tests/models/geospatialDatabase/test_utils.py +2 -1
  114. tests/models/hestia/test_default_emissions.py +25 -0
  115. tests/models/hestia/test_default_resourceUse.py +26 -0
  116. tests/models/hestia/test_landCover.py +2 -2
  117. tests/models/ipcc2019/test_ch4ToAirAquacultureSystems.py +2 -2
  118. tests/models/{akagiEtAl2011AndIpcc2006/test_nh3ToAirCropResidueBurning.py → ipcc2019/test_n2OToAirCropResidueBurningDirect.py} +2 -2
  119. tests/models/test_resourceUseNotRelevant.py +27 -0
  120. tests/models/{akagiEtAl2011AndIpcc2006/test_utils.py → utils/test_cropResidue.py} +6 -6
  121. hestia_earth/models/akagiEtAl2011AndIpcc2006/ch4ToAirCropResidueBurning.py +0 -57
  122. hestia_earth/models/akagiEtAl2011AndIpcc2006/nh3ToAirCropResidueBurning.py +0 -57
  123. hestia_earth/models/akagiEtAl2011AndIpcc2006/noxToAirCropResidueBurning.py +0 -57
  124. hestia_earth/models/akagiEtAl2011AndIpcc2006/utils.py +0 -15
  125. tests/models/akagiEtAl2011AndIpcc2006/test_ch4ToAirCropResidueBurning.py +0 -45
  126. tests/models/akagiEtAl2011AndIpcc2006/test_n2OToAirCropResidueBurningDirect.py +0 -46
  127. {hestia_earth_models-0.72.2.dist-info → hestia_earth_models-0.73.0.dist-info}/LICENSE +0 -0
  128. {hestia_earth_models-0.72.2.dist-info → hestia_earth_models-0.73.0.dist-info}/WHEEL +0 -0
  129. {hestia_earth_models-0.72.2.dist-info → hestia_earth_models-0.73.0.dist-info}/top_level.txt +0 -0
  130. /tests/models/{akagiEtAl2011AndIpcc2006 → akagiEtAl2011}/__init__.py +0 -0
@@ -5,23 +5,24 @@ hestia_earth/models/cache_sites.py,sha256=VwUNMhmCXZIEnligS0jtcWDdn13GIknpzxBMWz
5
5
  hestia_earth/models/log.py,sha256=eRuH86v7Thuw-QXdKqaqVmA_MkwnOCo0UBEwtuDq4Oc,3554
6
6
  hestia_earth/models/preload_requests.py,sha256=vK_G1UzhNMhYy7ymnCtHUz_vv3cfApCSKqv29VREEBQ,1943
7
7
  hestia_earth/models/requirements.py,sha256=eU4yT443fx7BnaokhrLB_PCizJI7Y6m4auyo8vQauNg,17363
8
- hestia_earth/models/version.py,sha256=YGwM_K3EaN6uHxziOn4v47PVw7oPysLyK9ROmWjqFOE,19
8
+ hestia_earth/models/version.py,sha256=ko6xDdKVRu7Xx-36NfOOGe9oNxu3iebJLKeVnFGGf28,19
9
9
  hestia_earth/models/agribalyse2016/__init__.py,sha256=WvK0qCQbnYtg9oZxrACd1wGormZyXibPtpCnIQeDqbw,415
10
10
  hestia_earth/models/agribalyse2016/fuelElectricity.py,sha256=1ngl8pdxeNhlVV8keAeWRwGorr_1uFXM9EoPUWx-uSc,4382
11
11
  hestia_earth/models/agribalyse2016/machineryInfrastructureDepreciatedAmountPerCycle.py,sha256=queToXuzq0tQ9_XuUJ2pJgSywXmbt9uX3ZoIKgqkROM,2660
12
- hestia_earth/models/akagiEtAl2011AndIpcc2006/__init__.py,sha256=WK7xQwUPX48JGqZeb2S2EKdtXuxMjY7HYyUFHItUqUo,425
13
- hestia_earth/models/akagiEtAl2011AndIpcc2006/ch4ToAirCropResidueBurning.py,sha256=Mea3L8blwJpRzzJHIMJH71Pn93gz1M2KN2pb43tGBfs,1642
14
- hestia_earth/models/akagiEtAl2011AndIpcc2006/n2OToAirCropResidueBurningDirect.py,sha256=3_Q3Q2d80y05sFpg_UfLHtjhzSdkG_PRntVD52B-BOI,1648
15
- hestia_earth/models/akagiEtAl2011AndIpcc2006/nh3ToAirCropResidueBurning.py,sha256=b66oZ7PJlwYfI9yOaFt0vpGiHQmVsu_K1lgkPQHXJL4,1642
16
- hestia_earth/models/akagiEtAl2011AndIpcc2006/noxToAirCropResidueBurning.py,sha256=Drsob8QtbGpCddmjB3lXm8SJF9e2xkhIx4woa0wnu4g,1642
17
- hestia_earth/models/akagiEtAl2011AndIpcc2006/utils.py,sha256=aHsit7ezqCE-RfRmZX19kdYN9nmAVFqFfjAH9bXA4cA,633
12
+ hestia_earth/models/akagiEtAl2011/__init__.py,sha256=SqyVFXWDxAuYCSWph7ZmfJnAjiaIskqw7pZYPY_l_VA,414
13
+ hestia_earth/models/akagiEtAl2011/ch4ToAirCropResidueBurning.py,sha256=COGio3sbQmNcUpG0nuNzlSL6YsHTcNlrjMXjcxIJKTw,791
14
+ hestia_earth/models/akagiEtAl2011/nh3ToAirCropResidueBurning.py,sha256=MUVyLifn5pKCB1Mooc9OIr0VQVSHhADSXOdo5IPBhGc,791
15
+ hestia_earth/models/akagiEtAl2011/noxToAirCropResidueBurning.py,sha256=aFot00A68gFM6Sp1cGkzruB4nIyc-BNGX7T75sb_CCw,791
16
+ hestia_earth/models/akagiEtAl2011/pm25ToAirCropResidueBurning.py,sha256=88LaJnezcbfOO_GCKz41zt39yhCFOFFmC9TTo1TAOMU,792
17
+ hestia_earth/models/akagiEtAl2011/so2ToAirCropResidueBurning.py,sha256=hoymFUx3TxzwhlOV65RzOx43IK-CGM8jYfWLH6ibHNo,791
18
+ hestia_earth/models/akagiEtAl2011/utils.py,sha256=HxRsPhoo164tyHtC9dq_FqZmtGTh-jdSLJxBoGfLS68,1778
18
19
  hestia_earth/models/aware/__init__.py,sha256=F8XRo9nRiX-fHAqyeMARYtFmJWRPs-hnIaCiHcZhyMw,406
19
- hestia_earth/models/aware/scarcityWeightedWaterUse.py,sha256=-87ici2uuLVHQGg_RCveUbKiefWtBJiPoTVSEWDIyvM,3779
20
+ hestia_earth/models/aware/scarcityWeightedWaterUse.py,sha256=z1mpBX7dxArkMKErU8dNR-hN-A-qAuXeJlG6OcxZgUw,3795
20
21
  hestia_earth/models/chaudharyBrooks2018/__init__.py,sha256=LKxQu7-6gyWPpdXaYHDTawzsBNm7CpDrk98I5_TTLhA,420
21
22
  hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandOccupation.py,sha256=qsOClIL45FT9qbglvyB5NPOHlWLm8TZl8LDT0duQyfw,3905
22
23
  hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandTransformation.py,sha256=q3kGrb20LPpAGcprVKkf29IKiTvv84Txv58KHcrMRcE,3242
23
- hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsTotalLandUseEffects.py,sha256=11H8j9i2h2zChea92CdzPodWZfdegkAnQx6qYC6Ym9A,2623
24
- hestia_earth/models/chaudharyBrooks2018/utils.py,sha256=T7mfzA7bWdVBNqOuueACIWO3m9cMLxygmSyjhwOIVm4,1670
24
+ hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsTotalLandUseEffects.py,sha256=IcPJbfRTDQYYjcRXpx7_U7eEf7nSkKouvVeTUX-JhFc,2631
25
+ hestia_earth/models/chaudharyBrooks2018/utils.py,sha256=l_Yv_lt31Mh5wXsyYWrNaZMwcHbndm6mCzSkFtVULe0,1684
25
26
  hestia_earth/models/cml2001Baseline/__init__.py,sha256=0uGrCKDNUH-MUkpvts9MyPMnZKao-M03gU8uKquUozQ,416
26
27
  hestia_earth/models/cml2001Baseline/abioticResourceDepletionFossilFuels.py,sha256=K7rq8jARCGvxA_nstNNGCnNrqtF0AsdMKElbYVNdx6M,4731
27
28
  hestia_earth/models/cml2001Baseline/abioticResourceDepletionMineralsAndMetals.py,sha256=RT69ZgQjwtY72Qxrxq7Kw7L6WLTfPttYANYVs9OMRnA,5151
@@ -34,8 +35,8 @@ hestia_earth/models/cml2001Baseline/terrestrialAcidificationPotentialIncludingFa
34
35
  hestia_earth/models/cml2001NonBaseline/__init__.py,sha256=vI8wp8Og_e8DiJqYYvp33YoI3t4ffAC31LWlnV20JTg,419
35
36
  hestia_earth/models/cml2001NonBaseline/eutrophicationPotentialIncludingFateAverageEurope.py,sha256=lcgyRHY08KCBFPERJNqV4DYGEJCvyHBDnJXD0kEkVqM,1097
36
37
  hestia_earth/models/cml2001NonBaseline/terrestrialAcidificationPotentialExcludingFate.py,sha256=xcrxfs9UoV_EWvV-XzMt35oPWCUsTzqg2SGA3j2MFIw,1091
37
- hestia_earth/models/config/Cycle.json,sha256=3akuXAYWwsTc9v4g8y0yGQooDXc_D4y8J5Q7RFLTAmg,58113
38
- hestia_earth/models/config/ImpactAssessment.json,sha256=xlxwRMZRb-znnRFeQYeMvrJfiUOh7XkxUsrv1eW57Jg,60447
38
+ hestia_earth/models/config/Cycle.json,sha256=nLeqkePzLbs6w3v8rXe6Ym_NX5EWCl15V00RxXXsXCQ,59138
39
+ hestia_earth/models/config/ImpactAssessment.json,sha256=ubAHJRHOFdX-fIYkOEBuD0CYvNZtFYSr8GSgKliVL8g,60968
39
40
  hestia_earth/models/config/Site.json,sha256=dp5tQ37lU_xakeWg4UAgqQR3YoCS7BkasYo1TtNHabo,14074
40
41
  hestia_earth/models/config/__init__.py,sha256=l1WqL7ezlank86ABP4zUia_hIvM9ba-sOE3z6wNrea8,2333
41
42
  hestia_earth/models/config/run-calculations.json,sha256=e3nJ4M6CP1iFzfv8ou_ZUFbFxYkDxJgwuNDXTm4PBDc,615
@@ -66,7 +67,7 @@ hestia_earth/models/cycle/completeness/excreta.py,sha256=wgrinfKnsXMG4I01g0iyFIp
66
67
  hestia_earth/models/cycle/completeness/freshForage.py,sha256=YpZ3bbZh93Cbqjup38V8IRJhKJpCIKgu23E-OeVcunA,2228
67
68
  hestia_earth/models/cycle/completeness/material.py,sha256=cF33MJkVBUnoicmecdsR78Snrv1Zng097aUeEfYDfdc,1185
68
69
  hestia_earth/models/cycle/completeness/seed.py,sha256=O4OygpPOeXHbn_32rdUk8m1BcZiQ6QpmvV463UOCmKY,1763
69
- hestia_earth/models/cycle/completeness/soilAmendment.py,sha256=glioQWyh0oaTw2BGE92CYMZyqsmmAsEzcwVEZVWfIB8,1203
70
+ hestia_earth/models/cycle/completeness/soilAmendment.py,sha256=RQPq1Y5VWJbz50tKFtcW54DdQ1YT48mQOteidW8sFcQ,1226
70
71
  hestia_earth/models/cycle/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
72
  hestia_earth/models/cycle/input/hestiaAggregatedData.py,sha256=u4sNTBe9vQHe1-Jlz_qCQ6DyioJTN_hq7L56nCf9vhs,5696
72
73
  hestia_earth/models/cycle/input/properties.py,sha256=-bsKbgS92AicE7_0GSamFG2-O3Rvn2LnXcmlrEt72dA,2752
@@ -84,15 +85,15 @@ hestia_earth/models/cycle/pre_checks/otherSites.py,sha256=G1F8BREiOmq4etwJ0F84yC
84
85
  hestia_earth/models/cycle/pre_checks/site.py,sha256=nMvzSIeqC5KdLetvmGH3XpxtiWdyArVkUdcI6na5cmI,637
85
86
  hestia_earth/models/cycle/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
87
  hestia_earth/models/cycle/product/currency.py,sha256=hFhwhkgYCwXMf10rufYupTKv43-Hqr69IZOVn81An_E,2063
87
- hestia_earth/models/cycle/product/economicValueShare.py,sha256=4u6ns9pGa6gA8s9qDwO6hXhvtgjePApWaBg5tSUs5b0,8024
88
- hestia_earth/models/cycle/product/price.py,sha256=csxXmfOX7T8e_dDcEraOpAdhFfwCBobBfAz7CVP-jv4,1451
88
+ hestia_earth/models/cycle/product/economicValueShare.py,sha256=eSepth3l6c6Nf_2gR4HIzoOYulIQMtQMUni4oATmIG0,8120
89
+ hestia_earth/models/cycle/product/price.py,sha256=uApxfOeWMjvjNeYQtrLMwZh-mxV0OchZE9_m1h1Vn1w,2300
89
90
  hestia_earth/models/cycle/product/primary.py,sha256=gRRHGcaIsmDBrz-LIrzOHNv-hMbWOBQD4zEIR2iMZdI,1737
90
91
  hestia_earth/models/cycle/product/properties.py,sha256=rnxRq-4kSjQMVyPEv1RBuF5xGJQEOBe51HuID2ytTbQ,1293
91
- hestia_earth/models/cycle/product/revenue.py,sha256=9EJDLWPuQ92fsrZ-jISgEQk7dOK_mJlgLPKvK3NfN5k,2165
92
+ hestia_earth/models/cycle/product/revenue.py,sha256=BYuzhdWw0VQGhOwshy6FPwtJ-OKQ7XcZurLZkLOUcQQ,2236
92
93
  hestia_earth/models/cycle/product/utils.py,sha256=nCQIFgwfI4meSRftV9v4vuxKAy3uUtShpN1pr2mywCw,359
93
94
  hestia_earth/models/cycle/product/value.py,sha256=JYHlfmOakU1xgDcgGWc78WzRd50HYqWHJGkIhGfLdnc,1431
94
95
  hestia_earth/models/dammgen2009/__init__.py,sha256=dZ8tIXl6e3ZEixYrWiW7rzoqRJVFOoxi4RPvM3N0L1E,412
95
- hestia_earth/models/dammgen2009/noxToAirExcreta.py,sha256=QTavWhklMVD00Z5YyinTrheqZwW85frjYEJPYtHWKDg,1744
96
+ hestia_earth/models/dammgen2009/noxToAirExcreta.py,sha256=Zy_7MybvSH-vYJg4ajQzQhDx0Ji9Av-bKtJVKR7pAUM,1523
96
97
  hestia_earth/models/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
98
  hestia_earth/models/data/ecoinventV3/__init__.py,sha256=DK1avgh58KlsUJY4nOTAaRlKsISJF4MOrrxdByHDr4o,1240
98
99
  hestia_earth/models/deRuijterEtAl2010/__init__.py,sha256=lbH6mB98dmZZlwdZctNYtEmVwAow957l80Dv7JSPDsI,418
@@ -101,10 +102,10 @@ hestia_earth/models/ecoalimV9/__init__.py,sha256=_evwL-DZejYohms9PUi4TNqLic44-Ub
101
102
  hestia_earth/models/ecoalimV9/cycle.py,sha256=szYlf0ri_QURkBsMHmLiiwuh1w1Lea6RFYp-FzImV0o,4832
102
103
  hestia_earth/models/ecoalimV9/impact_assessment.py,sha256=1TmGamdh_Omfasv7ZYctNPwOUEJ8dn7MyjXNUpupyGw,4614
103
104
  hestia_earth/models/ecoalimV9/utils.py,sha256=AWmWQhjvze3J6s35bH-EQIGc58xCeMA8_56hQD7CX8A,1170
104
- hestia_earth/models/ecoinventV3/__init__.py,sha256=utnccwktzZMd8POngMA5Ho-9NVJqHC62WlmcCVuBMzw,5446
105
+ hestia_earth/models/ecoinventV3/__init__.py,sha256=YWgl_9REghCgd2BjpOrsTRIJOFOT2ZuWH1jFnhGMWGs,5766
105
106
  hestia_earth/models/ecoinventV3/utils.py,sha256=RxqaHB9hr0RdTKSjfvDN0pC8DIOyxMCr4I_xjas1POw,460
106
107
  hestia_earth/models/ecoinventV3AndEmberClimate/__init__.py,sha256=fSFKMzDDRJi8OvKdhRMFRrGcD07hWDNMTjDa-_Yp-C0,5951
107
- hestia_earth/models/ecoinventV3AndEmberClimate/utils.py,sha256=AzslK6YB0jxVMLfkLVmhHpkM7mx639N0mIWbErD6GMw,1133
108
+ hestia_earth/models/ecoinventV3AndEmberClimate/utils.py,sha256=6niH2MArBK4KFzW-PeT09RZJElDtb-ILWqBEMU1SqXA,1141
108
109
  hestia_earth/models/edip2003/__init__.py,sha256=nyB0CI2gNmRAXj-203aJHQMmETYhcY-dHbMABOhJ7YI,409
109
110
  hestia_earth/models/edip2003/ozoneDepletionPotential.py,sha256=YkBct4eDUidGukaVdd2iaEouq_FckuG8l_7pgBQgCBw,1033
110
111
  hestia_earth/models/emepEea2019/__init__.py,sha256=l90-pWrqIzt1ap1WNk0gF4iZeF5_TSG62hE83bIi4rQ,412
@@ -117,7 +118,7 @@ hestia_earth/models/emepEea2019/pm10ToAirAnimalHousing.py,sha256=7LhOEQokWMWEPsp
117
118
  hestia_earth/models/emepEea2019/pm25ToAirAnimalHousing.py,sha256=IzGQrRv9Pk0o1Vq18HRWZ10jhmjFG59ijfn_VYAUJIA,1384
118
119
  hestia_earth/models/emepEea2019/so2ToAirFuelCombustion.py,sha256=OC53aE0uCmUxgZcqQjyhjjFPZ5U5Rdfv8l8wYihcYY4,1833
119
120
  hestia_earth/models/emepEea2019/tspToAirAnimalHousing.py,sha256=TaT5GyYK6MyJQHKApBe-u4fMjqXXdmuBEtUcRYnkhac,1381
120
- hestia_earth/models/emepEea2019/utils.py,sha256=YIHxVu4GwCbxBI5FzsmJ91itWNGx0vnBTCePSwlCnz8,5629
121
+ hestia_earth/models/emepEea2019/utils.py,sha256=yynKXlW2qi46xSiPuJ6JaFg21S6a1KkP2dUqkMlBJx0,5651
121
122
  hestia_earth/models/emissionNotRelevant/__init__.py,sha256=yAunIZI_4nGV0khRiGhbZAmXmMiuICzEH-pvzWX1lpM,3000
122
123
  hestia_earth/models/environmentalFootprintV3_1/__init__.py,sha256=tF2WrWiV1Wzi2vnRiNXdfPWfmVxgVu9w9-7eA6PA7-s,473
123
124
  hestia_earth/models/environmentalFootprintV3_1/environmentalFootprintSingleOverallScore.py,sha256=XjukJ0ecX62mK7Nhp3JZ7xYg9cKNAWbdhvy5M7VbXH0,5810
@@ -137,20 +138,20 @@ hestia_earth/models/faostat2018/coldCarcassWeightPerHead.py,sha256=Qf_nvHxT4mn9k
137
138
  hestia_earth/models/faostat2018/coldDressedCarcassWeightPerHead.py,sha256=2WqIFxUMHngcsY7CffAn0bZClB_VXW1egtvBrKOFmxw,3196
138
139
  hestia_earth/models/faostat2018/landTransformation100YearAverageDuringCycle.py,sha256=Pp94-1uMHN-jlMIbUQB-Go26WAxtMtTmf8zyyyAEvvk,998
139
140
  hestia_earth/models/faostat2018/landTransformation20YearAverageDuringCycle.py,sha256=LNQfb_vqNsJOrgZXVo6m9hBGdI8OaHSnfA9jSbp6JVY,995
140
- hestia_earth/models/faostat2018/liveweightPerHead.py,sha256=Wax4BJERtbNMTks4CEk056Q77MI3ZaOthmyUiYt5XbM,5023
141
+ hestia_earth/models/faostat2018/liveweightPerHead.py,sha256=2BmSe8xdEdm68i6t_UkeXQshxLH3WVNyvButsoE_9zE,5031
141
142
  hestia_earth/models/faostat2018/readyToCookWeightPerHead.py,sha256=obJLPV8GgG2lEhLqg9RrJLSFPzbasXJnmzHnwkpW7O0,3131
142
- hestia_earth/models/faostat2018/seed.py,sha256=ts9PKs9UnZnJ9nPFlL7etL1Qb9uIWIES8Mz8W7FWbOw,2917
143
- hestia_earth/models/faostat2018/utils.py,sha256=r-5krLwm2Gymq6alxvGbo7NRprRFOjCpMwXWwp-Uk9E,7202
143
+ hestia_earth/models/faostat2018/seed.py,sha256=brDGypvFJR6gpb4VMTW16cN2Jw0jbvD2msV-NMWuwxQ,2948
144
+ hestia_earth/models/faostat2018/utils.py,sha256=gcEyhxLuBif7ksIGAkoQGz6RySncYrmG19Xq3XJ8XmI,7286
144
145
  hestia_earth/models/faostat2018/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
- hestia_earth/models/faostat2018/product/price.py,sha256=EdshQnQLYLnRawsDYEBKr1KibQ_Pgxuu9JWw0XuaoUM,7718
146
+ hestia_earth/models/faostat2018/product/price.py,sha256=6oG8n-tGFRX2p4aC1RBeEvO7iexooFiRok39m8f4VN0,7734
146
147
  hestia_earth/models/frischknechtEtAl2000/__init__.py,sha256=Fixyy9UwoCGP5-MHyJu_ctS40SQ2imfvZo8a547029U,421
147
148
  hestia_earth/models/frischknechtEtAl2000/ionisingRadiationKbqU235Eq.py,sha256=W2R5rjnorfWhderyDy3iGpcIZdL3rYvRh5wh0wlvI0k,4430
148
149
  hestia_earth/models/geospatialDatabase/__init__.py,sha256=TH-FW3aoL7r1GquRChr7rde7uQonKQRDR00udG8tDrQ,957
149
- hestia_earth/models/geospatialDatabase/altitude.py,sha256=Y0XOZLnmfpEPh_fGnHdWDM190T1ZaC1yp-VH-90k9G4,1983
150
+ hestia_earth/models/geospatialDatabase/altitude.py,sha256=B9FOuAIXLV4ip3MkTxFBm3xMex2BkELsOGybnsHkXVc,2015
150
151
  hestia_earth/models/geospatialDatabase/awareWaterBasinId.py,sha256=_4HFoZR5PQrEYZegMjj33rjUFR_kktt69D4J_moZXHo,1249
151
152
  hestia_earth/models/geospatialDatabase/clayContent.py,sha256=Rre3QpoYXViJEZv8XqDdiC7_86LjYNt9DwQmhlLd0a4,3398
152
153
  hestia_earth/models/geospatialDatabase/croppingIntensity.py,sha256=d1WIrxO4rFj5Oj-k8f1eaVIOR6sfke2CYH8lwtuE_BM,2565
153
- hestia_earth/models/geospatialDatabase/drainageClass.py,sha256=CVagB2wxLnHgQQauDyYCJCfJw21OPB7Ry8BVyt2uPak,1883
154
+ hestia_earth/models/geospatialDatabase/drainageClass.py,sha256=O77j_OqMMoRw-nlIpFp6T8A6D8Feg7M7nX527Inw5z8,1915
154
155
  hestia_earth/models/geospatialDatabase/ecoClimateZone.py,sha256=WBeaYmzer3CeviHnnfK0xIn_3inpkDKqxszFluz0xPQ,2658
155
156
  hestia_earth/models/geospatialDatabase/ecoregion.py,sha256=Hr2zJd-KGmOB5PU6nAbTtnUDWMBwhFOUf8PwT-lcPis,1206
156
157
  hestia_earth/models/geospatialDatabase/erodibility.py,sha256=M62CetEcHuExeXl7P7DVKZWWbk9tenjaDFvjMsWbga4,1843
@@ -158,7 +159,7 @@ hestia_earth/models/geospatialDatabase/heavyWinterPrecipitation.py,sha256=54pvHO
158
159
  hestia_earth/models/geospatialDatabase/histosol.py,sha256=uVl96zpxPHYDW81SxnEpMPpNeVdfzBYRCUhVP6EFN4A,2614
159
160
  hestia_earth/models/geospatialDatabase/longFallowRatio.py,sha256=X-qJS0euYVwhGHd4rCnlRSL3KOMLQJl5kO8QqSREcpA,2561
160
161
  hestia_earth/models/geospatialDatabase/nutrientLossToAquaticEnvironment.py,sha256=uEsoYJ1mzgUo6fQhUrcJ-ATcFw1j9oEgqMXKbQuFRxQ,1973
161
- hestia_earth/models/geospatialDatabase/organicCarbonPerKgSoil.py,sha256=O_3GdoyY3FrwAq37MHleb0kiXZhsqpuAcik9TYpAvU4,2830
162
+ hestia_earth/models/geospatialDatabase/organicCarbonPerKgSoil.py,sha256=pGy35cvt5Rzv2h0ka5PZqZqWp0wThWqJL8o_nVZinCo,2862
162
163
  hestia_earth/models/geospatialDatabase/potentialEvapotranspirationAnnual.py,sha256=x8-108UuysEZNgCBvLGOWsYvvBAIlE_5h6y2Kl-Tl40,2396
163
164
  hestia_earth/models/geospatialDatabase/potentialEvapotranspirationLongTermAnnualMean.py,sha256=YywD9wCkGFF1q60LocXNvLr-tQ2_9km2PrVnXRgN83E,2125
164
165
  hestia_earth/models/geospatialDatabase/potentialEvapotranspirationMonthly.py,sha256=rt-MNUYkFruViMSPJV6r66042227CdCLmccYT48dU4o,3197
@@ -174,44 +175,46 @@ hestia_earth/models/geospatialDatabase/soilPh.py,sha256=f-jZhIpbsVDe_lGm0rfA7K0v
174
175
  hestia_earth/models/geospatialDatabase/temperatureAnnual.py,sha256=wprDhySO4y2wAebLIQPfsLP4tQYowaUh8V-rNGEc380,2553
175
176
  hestia_earth/models/geospatialDatabase/temperatureLongTermAnnualMean.py,sha256=ypQbdbily63m_B7t7_aTaJ8RN9gzzauHeZTFDgFhlds,2230
176
177
  hestia_earth/models/geospatialDatabase/temperatureMonthly.py,sha256=E2k2kkhVDtmeFEB4_AZhhq5od57lRDMWu6AqaurgqvQ,3194
177
- hestia_earth/models/geospatialDatabase/totalNitrogenPerKgSoil.py,sha256=DrjiPyakM1SJ1XO-arhvjLDj2qb3M-i58gJ1kFFM6kI,2821
178
- hestia_earth/models/geospatialDatabase/totalPhosphorusPerKgSoil.py,sha256=5oasLMYgfnPwSse0D8EEe_pV57AMusac853BgVSUh5E,2070
179
- hestia_earth/models/geospatialDatabase/utils.py,sha256=IYLJbnGJSHpsb1eoKR9usgaWctr44fmPN7WmR4ydsjw,6714
178
+ hestia_earth/models/geospatialDatabase/totalNitrogenPerKgSoil.py,sha256=eajSzMCX201k_xrfZZSHtTzEIH29hqgJdztQgQeewig,2853
179
+ hestia_earth/models/geospatialDatabase/totalPhosphorusPerKgSoil.py,sha256=fL8wNpx-3WdD3k9riy6AaUnpdRMFNMzzc338jRIqfw8,2102
180
+ hestia_earth/models/geospatialDatabase/utils.py,sha256=YfWjM8TZcSCjZCkpO4luIPzo0rnimwNKMpHN88EC_DQ,6726
180
181
  hestia_earth/models/geospatialDatabase/waterDepth.py,sha256=Xy2UxwAJrgdOkcw59NetEHMt5vgRYE6qg4fgXb1ptlU,1643
181
182
  hestia_earth/models/globalCropWaterModel2008/__init__.py,sha256=vQxexzFCl2Uv2RiIJfcppkRi9RgzBsJ68yhVDK4GvAU,425
182
- hestia_earth/models/globalCropWaterModel2008/rootingDepth.py,sha256=5HXiZHk5iFOhOIB-0OnatgJ4PHJVvV0gH47U3EvQ6Y0,4081
183
+ hestia_earth/models/globalCropWaterModel2008/rootingDepth.py,sha256=UuFzMbDrvmll3LL6T887DZ76CHt3wrK-2hl9ymmg2FI,4089
183
184
  hestia_earth/models/haversineFormula/__init__.py,sha256=o155nR-XI67iCSBVNYIu4sPRIF3C2Y1NnUZ6lfpi0Do,417
184
185
  hestia_earth/models/haversineFormula/transport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
186
  hestia_earth/models/haversineFormula/transport/distance.py,sha256=l00mmyRgWsHWFtk4OTFrhqyOmc-73C4Wkfn5WKM99TA,3990
186
187
  hestia_earth/models/hestia/__init__.py,sha256=o5vAmPzSaK9XPgL8GCne3-lugfCOgZhHELYolNgqyyY,407
187
188
  hestia_earth/models/hestia/aboveGroundCropResidue.py,sha256=7OOO2_0nVoEwqslZ-daATfFTcm_GhAZR1NWBV_ULcYw,5903
188
189
  hestia_earth/models/hestia/aboveGroundCropResidueTotal.py,sha256=NcaHzSLTmTP0yTO_2mqqouNzkCVYRkDm31LZqOCiFD4,2715
189
- hestia_earth/models/hestia/brackishWater.py,sha256=znc-p3W7sclCeytj3Jg6YUzGu2tFD8inswjapn-_8ds,1285
190
+ hestia_earth/models/hestia/brackishWater.py,sha256=V9WhV1Mwix1dqdEepMiz9ZNYufx1mKX4C5sdQ96MH9s,1292
190
191
  hestia_earth/models/hestia/cationExchangeCapacityPerKgSoil.py,sha256=GtF-X2ogdXLX0dKed8d2L3baI5MfpN6UXZbZm2aG3Es,3660
191
192
  hestia_earth/models/hestia/coldCarcassWeightPerHead.py,sha256=IkOyrLYqSNidrTfuuZcAGXaT5XEDBFmRWPNxAEAORNU,2962
192
193
  hestia_earth/models/hestia/coldDressedCarcassWeightPerHead.py,sha256=NE1aw4-rmKsslwsyQkRl2TT9Zng-8NNsYXsajHHmU30,3076
193
194
  hestia_earth/models/hestia/concentrateFeed.py,sha256=HnuG3zAECtFVdPRbTATGz5ImO2Ve1NruqD8brbrO2c4,6647
194
195
  hestia_earth/models/hestia/cropResidueManagement.py,sha256=5t32oILM-lbOsPiP6tDiITpuLZ0eISlB6Lp0goDH8eE,2223
195
196
  hestia_earth/models/hestia/croppingIntensity.py,sha256=xev3GOE06nBJ8ZY3XtbnE0eR2YR_kqAFPnrTuKFtLrQ,1777
197
+ hestia_earth/models/hestia/default_emissions.py,sha256=7w3MAOaUFI4Hr_seMnnOecXpOJa2_Wa-s4o3NW5A2Nk,3414
198
+ hestia_earth/models/hestia/default_resourceUse.py,sha256=zFfG9--zx_lntyN6ep9Q_MPhynUhGAxewK2JwrqiqQU,3699
196
199
  hestia_earth/models/hestia/energyContentLowerHeatingValue.py,sha256=2gR7Iu5nUUCGSXjFrkTnss6XBGtQz-yKwexCQoy8TJU,2214
197
200
  hestia_earth/models/hestia/excretaKgMass.py,sha256=8yUZZ_Mmx5HC6Jv2uQBFi-oJIzd-pR2Py1q0dhKY1Mo,4021
198
201
  hestia_earth/models/hestia/excretaKgN.py,sha256=-GfHPx6AECNPW2i_ioCuf-DhW7Xau201xqe-qWcK474,2857
199
202
  hestia_earth/models/hestia/excretaKgVs.py,sha256=fzBV7hgznevLTcvHyHKQk9upkCgmJ0xH1NuMETeSF8A,2860
200
203
  hestia_earth/models/hestia/flowingWater.py,sha256=Iy5PCWun7GMrr0zszd0zpp9lKADpXesjC3doqLY4n28,1603
201
- hestia_earth/models/hestia/freshWater.py,sha256=EHUWNFmgIqr9y7DTcn1_HcpJdI7WP1cv4LMrkpaf8zQ,1262
204
+ hestia_earth/models/hestia/freshWater.py,sha256=Q-dmFJLZfyYEyFyYkJUOjgmQR3G5YXCXB6X09Bu14hM,1269
202
205
  hestia_earth/models/hestia/histosol.py,sha256=IexiWTSlSJYGjrdpYmRooW6v8LjhYATPQ8smMz1UZBA,1612
203
- hestia_earth/models/hestia/inorganicFertiliser.py,sha256=SQv5X4vkgmvUIUV79dJ71Y9u2EW3T5Scu2GoTr3K0Yw,8930
206
+ hestia_earth/models/hestia/inorganicFertiliser.py,sha256=We4PBaTXyGwEQTfhX0-J8Xt03p-FB9i9j3tEK5JQ8uE,9026
204
207
  hestia_earth/models/hestia/irrigatedTypeUnspecified.py,sha256=VdYzfYxcRzWv21qxRkDn9HBid7-Bt_CgIv4iyXJH03g,1929
205
- hestia_earth/models/hestia/landCover.py,sha256=WrmtrhkHhT9ZQOwVCiUtdJIc1VXB_yizig5CtfHwc0k,32840
206
- hestia_earth/models/hestia/landTransformation100YearAverageDuringCycle.py,sha256=7KWgpAo2gILzsxdgnO8gI3tAf3tF0IhyGkneYI6PEDc,1018
207
- hestia_earth/models/hestia/landTransformation20YearAverageDuringCycle.py,sha256=1StzrYhMsX-hdwBTeLnLMZWl5EEnCoEYpGPRkqy8a-A,1016
208
- hestia_earth/models/hestia/liveAnimal.py,sha256=95HfqgFA_qRhdIeR2X5MJ9zzIm4nMHDvJ0BCnuTYe5Q,3860
208
+ hestia_earth/models/hestia/landCover.py,sha256=TL0fLUoj0qIHj2kvVCxkYSrIHl6BGazmwvCSmIz1q8E,32958
209
+ hestia_earth/models/hestia/landTransformation100YearAverageDuringCycle.py,sha256=hF7_DDvrs7swH6ott_ihgYx13UzEKHH6pccYCtzrN8o,1069
210
+ hestia_earth/models/hestia/landTransformation20YearAverageDuringCycle.py,sha256=05SCH6ZjEV3mIleRusBg677zu0xgu5YK0f9FCddgNPg,1067
211
+ hestia_earth/models/hestia/liveAnimal.py,sha256=d7HuUi40c-7TN1kecdRuqbht8PAe7x4ps0NhSuWG34Q,3868
209
212
  hestia_earth/models/hestia/longFallowRatio.py,sha256=LkJaER1VNDI5351-oC8tru-LgiPK3sNMg0NhB5ic9RE,1690
210
- hestia_earth/models/hestia/management.py,sha256=TJRdiV5XQBtK3YBOZsC-Off-9RMYrvYgkzylpPVRizw,11281
213
+ hestia_earth/models/hestia/management.py,sha256=zLCdYekoyxzAsEcBIr04paDjatD3_WhK2QxqfIAQQh8,11292
211
214
  hestia_earth/models/hestia/materialAndSubstrate.py,sha256=abmM_7FOY5yaNb2yZEm-ncI4wFFcbzaebtnG9XWEA6M,5130
212
215
  hestia_earth/models/hestia/milkYield.py,sha256=__3AdxRTUTWwS_GsqxFpPGklmTnnpADiN0khlRCMAss,5541
213
- hestia_earth/models/hestia/netPrimaryProduction.py,sha256=uU4AZ7X6tbtWgR5YClA_aLpYWtlivq9lPQGZgt3-qoQ,1856
214
- hestia_earth/models/hestia/organicCarbonPerHa.py,sha256=-Mk2d9MjvvXA2U-c8UdsGYl7WADE9yc8dWKuPD-CMn0,14923
216
+ hestia_earth/models/hestia/netPrimaryProduction.py,sha256=TXBw7qkTYlvViMrM027FejVpwyqnzJ8VazsbWakwd70,1870
217
+ hestia_earth/models/hestia/organicCarbonPerHa.py,sha256=Vzfd7AEfx4Wq9i8BvlwU5M9sxDkbuF1uLJmRDB5WsMU,14945
215
218
  hestia_earth/models/hestia/organicCarbonPerKgSoil.py,sha256=t--wAshiAKS-JvEKhLFRadGvgSBv5NFZ68jdyms_wh4,1945
216
219
  hestia_earth/models/hestia/organicCarbonPerM3Soil.py,sha256=pdv5V-ojcfhlGzPwRS9s-vEnxiHZQPZP-ESVcz2pt0g,1945
217
220
  hestia_earth/models/hestia/organicMatterPerKgSoil.py,sha256=fJpFVkpuCjnrBhgV0RtwKqQHvAJWWtZO9xtmnJnl8O4,1945
@@ -231,17 +234,17 @@ hestia_earth/models/hestia/residueIncorporated.py,sha256=fMlZHIrsy5JQCQ-a0sMucU9
231
234
  hestia_earth/models/hestia/residueLeftOnField.py,sha256=EZoPlDhh1aNJvPT52Bvro6xcHwHctmID1sUvJfuzN1M,2182
232
235
  hestia_earth/models/hestia/residueRemoved.py,sha256=2I4wTJJcORrhkWiRJOzjwxRMIn3Jjeggh1dhFC2CK4Y,4969
233
236
  hestia_earth/models/hestia/resourceUse_utils.py,sha256=SYMN-40NW76LaVo2jVdnCbTgYN03mmSqvYRzgDzm5jI,8564
234
- hestia_earth/models/hestia/salineWater.py,sha256=NB9nu1oiqbUd0k-9chBsY92vOsg5mDrSf1OCR3tlA6k,1263
235
- hestia_earth/models/hestia/seed_emissions.py,sha256=-XON8tXYU2qTy4QQE6rvzL1iKut91rwWsW7fcMyl44I,11372
237
+ hestia_earth/models/hestia/salineWater.py,sha256=rqiF3KfjvvNx3sxWFiXsP1_e5aB3ekA4QGC8vtcFHmo,1270
238
+ hestia_earth/models/hestia/seed_emissions.py,sha256=amHFAc68BN_0wmXiYjia5FH-FmDQKOM7binh1vTWec4,11936
236
239
  hestia_earth/models/hestia/soilMeasurement.py,sha256=cP4nuz2DE-FLaFbP-0fG5wbIgU28s3n4-lo8-RTFpF0,7088
237
240
  hestia_earth/models/hestia/stockingDensityAnimalHousingAverage.py,sha256=Ce0RZmAADDtGksfXzhX4lh-jdAs3WlCQqy2FAF3xFjo,1850
238
241
  hestia_earth/models/hestia/temperatureAnnual.py,sha256=IhMoO-SkSp1JBxgu9bSr1OCtr7QQlZsoCXqhsWeEprs,1963
239
242
  hestia_earth/models/hestia/temperatureMonthly.py,sha256=sY4MrjCTm7X3BoDTUC0ZkxD7CWxvl51JW2UxDykCKzg,1842
240
- hestia_earth/models/hestia/totalNitrogenPerKgSoil.py,sha256=iy3JNCAqTlGA1csNnXjI4bdJ6HOkuJNYQPaljtr9nNs,1945
243
+ hestia_earth/models/hestia/totalNitrogenPerKgSoil.py,sha256=hpyYqMwO9TvZjrpQuSBA3uRFrOk_PPZEo9ev4QeECI4,1956
241
244
  hestia_earth/models/hestia/unknownPreSeasonWaterRegime.py,sha256=Ix7Eg4NVW1iKvPKIOqOdSkahn7BlJNtPM8nlrogrfcM,1460
242
245
  hestia_earth/models/hestia/utils.py,sha256=oTdk7VKuaxDTKj9Cz4t3qp3RZ5wSt3bZXpPiImgIIto,4768
243
246
  hestia_earth/models/hestia/waterDepth.py,sha256=gnvd1kwbTCt9HjgxlKzuCGkPi8Sq7nQiHFbk8xBAZV0,1251
244
- hestia_earth/models/hestia/waterSalinity.py,sha256=3AkdcmyKxZZKDGXVXeLalqzbX2KuZzIsGeQuxuT7-r0,2657
247
+ hestia_earth/models/hestia/waterSalinity.py,sha256=_AEyH9yVPhW03dmZ3a1JZ9R5kgOeF5uOA3Oh1zGyQTU,2673
245
248
  hestia_earth/models/hestia/feedConversionRatio/__init__.py,sha256=G4T1jfN1OqERsywiWyrBiFneUZs5QXpChz7dgGfg9Ko,2512
246
249
  hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioCarbon.py,sha256=21_PXoKXJCxPOPOspKqqq-E7dh-2tVQnR4cnGZ9JGj8,1992
247
250
  hestia_earth/models/hestia/feedConversionRatio/feedConversionRatioDryMatter.py,sha256=zf-v-cAPLpSe7sr1auzUUXkjXwpXRTVvsCrzbZrwBI8,2388
@@ -263,9 +266,9 @@ hestia_earth/models/impact_assessment/product/__init__.py,sha256=47DEQpj8HBSa-_T
263
266
  hestia_earth/models/impact_assessment/product/economicValueShare.py,sha256=ssyuAUWpzH1DVrbb0SvMtznWv9Z33_qC2epGrb2hfRU,1280
264
267
  hestia_earth/models/impact_assessment/product/value.py,sha256=NaqKctYbXtbxLqJ8DougTDEDygDVvMZpwc9cLPD6TXE,1182
265
268
  hestia_earth/models/ipcc2006/__init__.py,sha256=ReUFPLqIyp16QEOGaiHmz41QbuwYBQYDKVtw6KuRDIA,409
266
- hestia_earth/models/ipcc2006/aboveGroundCropResidueRemoved.py,sha256=6FDgMH5eiO1mEn20oerYpWty6t9058JS3MCdfVmeY_o,2714
267
- hestia_earth/models/ipcc2006/aboveGroundCropResidueTotal.py,sha256=vD_kpvOJmjTOjDEnlqSYBSZxjuPGvzpmCr0JIC84GKE,3431
268
- hestia_earth/models/ipcc2006/belowGroundCropResidue.py,sha256=KzeRphJb1IWB_EPVcxa9tbCoNmEe80D9lKxgQOqfKoU,4138
269
+ hestia_earth/models/ipcc2006/aboveGroundCropResidueRemoved.py,sha256=WnFcVr6X5RUVk0wKnBb4CaJSCr-DaweVjnXKFAa6kdg,2761
270
+ hestia_earth/models/ipcc2006/aboveGroundCropResidueTotal.py,sha256=Xwf4a4P88r0vlQFFQBhir_g58xeF6WbqNW42CIu7Rpc,3558
271
+ hestia_earth/models/ipcc2006/belowGroundCropResidue.py,sha256=aT5wUhda6OOsEX_FszRLJAohJxpRCd5RxEUWK49HEhI,4287
269
272
  hestia_earth/models/ipcc2006/n2OToAirCropResidueDecompositionDirect.py,sha256=_2oTngpspikbFwgFTtOWs-SgEVF8LzznvITGITTtol4,2913
270
273
  hestia_earth/models/ipcc2006/n2OToAirCropResidueDecompositionIndirect.py,sha256=kf4WjdMzs6d8h433LFuUH9LJKJ_aMHTqEHDToGY5-Xk,2315
271
274
  hestia_earth/models/ipcc2006/n2OToAirExcretaDirect.py,sha256=VvQTIh58JyhrdPk5FdJQBkjBDr5-Cv7CnGkNEcco3P4,1986
@@ -283,12 +286,12 @@ hestia_earth/models/ipcc2019/__init__.py,sha256=LdRpu8KbEc-MroIwXfKDjfj-xbgmfUYg
283
286
  hestia_earth/models/ipcc2019/aboveGroundBiomass.py,sha256=odf2zQni0zgFJnFXkp9USVi4A70Me_IMUfPPpnFD25w,20441
284
287
  hestia_earth/models/ipcc2019/aboveGroundCropResidueTotal.py,sha256=lT2QVV5c2LvQqZRfPEvFT_bMTayMXgIsFLnx8I6iYzw,3089
285
288
  hestia_earth/models/ipcc2019/belowGroundBiomass.py,sha256=z4Z0gDCFV9p50hMpLf7WrA8aw4kA13xAFPUxvLBVZjs,19446
286
- hestia_earth/models/ipcc2019/belowGroundCropResidue.py,sha256=7AFU2Q0qPAvv6uEKWByS38jl77FvjTPbGm2GQ53waGg,3499
289
+ hestia_earth/models/ipcc2019/belowGroundCropResidue.py,sha256=qbfsLBPaMIt4oQzYAzbsZdkJozTbwuztNr48TLYC5-Y,3507
287
290
  hestia_earth/models/ipcc2019/biomass_utils.py,sha256=bPvge2EOVACkxJlxMoFhlRMRQHdUEiBqaFX_aEmyyC0,15812
288
- hestia_earth/models/ipcc2019/carbonContent.py,sha256=tlQvu4Auhpjmaz7XrZz86xwxVrJhsYYf8DFA_aQeev4,7255
289
- hestia_earth/models/ipcc2019/ch4ToAirAquacultureSystems.py,sha256=q6yyEiYQhHJ2VyQy2Fa84cuTl1D8bjBXOK3UpaRuo20,3196
290
- hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=8w78X5nJkPmoXuTy1WMxSGj-D5ubajNeqnyBknSqEtA,12477
291
- hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=UTTx7US4mGTGW9dX6OAgbhDSwtHfsbWJ5d0iF0TGMpE,6564
291
+ hestia_earth/models/ipcc2019/carbonContent.py,sha256=XhXDu6DRQxANBsRsCEgw4f0UJDOgWsvhVyEwK1-4YT0,7263
292
+ hestia_earth/models/ipcc2019/ch4ToAirAquacultureSystems.py,sha256=1qT29z22qLYOTbf7MHlrh6cfiQMTq0NYtpUFoCur3Ck,3535
293
+ hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py,sha256=b9FIMIGMGcpOhYHhD6yFsiatHsPe_KoF5yB3Rm6AKwA,12525
294
+ hestia_earth/models/ipcc2019/ch4ToAirExcreta.py,sha256=4GI_d4sTlskQiSK7xR2f1EaFhBt5Mu7sx0Xq9eUhiJk,6608
292
295
  hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py,sha256=26WZtckmb7b3sbUN7hpshEdaSdvJpL3-Oer60III_KU,10225
293
296
  hestia_earth/models/ipcc2019/ch4ToAirOrganicSoilCultivation.py,sha256=Asv-IafB12smWg4MALIbGlEHxHPdoE1qpwPHRkah4WU,9568
294
297
  hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py,sha256=YRNjJgi_aBKwi-nDd0b20w3ebQ33vNgdf4zCLyTFcBw,6516
@@ -297,9 +300,10 @@ hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py,sha256=pJCdb8hys
297
300
  hestia_earth/models/ipcc2019/co2ToAirLimeHydrolysis.py,sha256=X3-M4Mn3fdGsUR7ZGjBXXWrPFBGD1ipV8_4O94lB7Z8,2487
298
301
  hestia_earth/models/ipcc2019/co2ToAirOrganicSoilCultivation.py,sha256=e-hUmPMv_UxUM5otGkwToa8GheHzNbmYOlG9A8Lbw7M,7633
299
302
  hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py,sha256=4aRBzNpDNSw20IKNzz7zOq28sorrJUB5gxmHemgOZT0,6576
300
- hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py,sha256=TH9B0VLChh5NmB2uh0PiPVM6xiqgQK1czBMbuuccoRg,3871
301
- hestia_earth/models/ipcc2019/croppingDuration.py,sha256=wgXzEHsl2demqzKnZK6Ak7UKUu_CVU41ZsmwxG2uiOg,3055
302
- hestia_earth/models/ipcc2019/ligninContent.py,sha256=Qh-UH4lv1TIf7wWlbAPwIZZHxzbbmQgND3m15pt5Si8,7285
303
+ hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py,sha256=P6OxdUbvONaTVGchvogEnGeNxox-X1FaZ08yOdqqm6k,3879
304
+ hestia_earth/models/ipcc2019/croppingDuration.py,sha256=X2fuBCr-mspLwJUGOlVis9lnyzdZ92vYqgDA6dgL5eo,3088
305
+ hestia_earth/models/ipcc2019/ligninContent.py,sha256=nAhwrl0b3pbGQnAycEESAzakdpXajONTnbhNwgPR7nw,7293
306
+ hestia_earth/models/ipcc2019/n2OToAirCropResidueBurningDirect.py,sha256=43DObFfqABoH66fjgROu_Iv3bRKOUmCKk87bhBx1yj4,1851
303
307
  hestia_earth/models/ipcc2019/n2OToAirCropResidueDecompositionDirect.py,sha256=Fand7NbT27unwgFTxi_9NxT024s63vQ7U6-tk9yp3d8,3990
304
308
  hestia_earth/models/ipcc2019/n2OToAirCropResidueDecompositionIndirect.py,sha256=_Oj6Jw8F4rce7FmhWkzeqyB7W3ZQWpOiA10p6xrfSwc,3777
305
309
  hestia_earth/models/ipcc2019/n2OToAirExcretaDirect.py,sha256=RW_aFY409kplCYWo3oHHVk9FD3DkoEnGkprU9SaTdcw,2196
@@ -311,12 +315,12 @@ hestia_earth/models/ipcc2019/n2OToAirOrganicFertiliserIndirect.py,sha256=g2ssg9G
311
315
  hestia_earth/models/ipcc2019/n2OToAirOrganicSoilCultivationDirect.py,sha256=msMxD6m1OuVLj5eXPzD3UA-trM_W185Oy1iSvuYZkPM,5976
312
316
  hestia_earth/models/ipcc2019/nh3ToAirInorganicFertiliser.py,sha256=gvfv4VBHmEkppEMoHUIicAelYICdOjKxKBUw5f3meiQ,4480
313
317
  hestia_earth/models/ipcc2019/nh3ToAirOrganicFertiliser.py,sha256=Oih-34cGl7AZ_sIYWXktOWrzmj3_onvk3EW5f8-7QKI,4152
314
- hestia_earth/models/ipcc2019/nitrogenContent.py,sha256=YxlcDF0D9F79rYHTeuhl5kEtmb01UcspFInKi6I_zKM,7209
318
+ hestia_earth/models/ipcc2019/nitrogenContent.py,sha256=MnK-w0XxoRRAnZVOgT2x3MhblW_7YQbvsES2lbLr6fM,7217
315
319
  hestia_earth/models/ipcc2019/no3ToGroundwaterCropResidueDecomposition.py,sha256=8NOjbqJuQ-wnLz3bYmwaygSzKBdaF3N7hoELGNnO4YQ,3115
316
320
  hestia_earth/models/ipcc2019/no3ToGroundwaterExcreta.py,sha256=kf8KzTALAQ_pRVNEfpAG-aM94UgP6Q9T47UrXfOp_go,4517
317
321
  hestia_earth/models/ipcc2019/no3ToGroundwaterInorganicFertiliser.py,sha256=eyPfyIi8EqigOTsEA0BSyoUePyy_AjMlQNJ6Z8yyJ_Q,3413
318
322
  hestia_earth/models/ipcc2019/no3ToGroundwaterOrganicFertiliser.py,sha256=px2SN-uaus2cftXzlsYCUAxLuon6BnDXmaFI9xhQrgU,3347
319
- hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=vvq-GAzFtPw9BTKs7RnwRJwzZJDmU3vPVAzIC7WxrhM,34600
323
+ hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py,sha256=VGaCafUGSv_5dpk_qGLUpi5E-ys-1XLxJhUgMAhQIgQ,34660
320
324
  hestia_earth/models/ipcc2019/noxToAirInorganicFertiliser.py,sha256=fmmFgjtvOD2TrrLY03jYly_KvDnCsAXqhL_tmZQQt-A,4480
321
325
  hestia_earth/models/ipcc2019/noxToAirOrganicFertiliser.py,sha256=9dx_MRTwJGxJRq6mj2EJQMdQ2w6j7lw0fQk0If_cIGc,4152
322
326
  hestia_earth/models/ipcc2019/organicCarbonPerHa.py,sha256=D8Lph5clGjXb5F7sk-jlnqE30C2lokhqndpA0hUMwTk,7791
@@ -325,8 +329,8 @@ hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py,sha256=5_AltohTyRMBT8d
325
329
  hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py,sha256=s_F3fyHhPuqragrHxluqdK0GCGnEor17jGlGKue0UsA,9867
326
330
  hestia_earth/models/ipcc2019/organicSoilCultivation_utils.py,sha256=mJCKYZxqk5vFknckjIjGw478BjZbvKC_xQ-zYpvJ8xM,5628
327
331
  hestia_earth/models/ipcc2019/pastureGrass.py,sha256=_EwlAooSfrkcSy4rl_rk4PpeX1pcIiQcb7HE2lQkyn8,9847
328
- hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=KvjIQ3xwbq1rk3thHlkGgQaWKgh0hCkNnzC53JW9634,14178
329
- hestia_earth/models/ipcc2019/utils.py,sha256=MSDMu15D9DnilFUgi4_6jYXC0FaKso3OODauGTMB6hs,6229
332
+ hestia_earth/models/ipcc2019/pastureGrass_utils.py,sha256=so5AFrr_0eKXkUoyBpYhHgSXhTQ5z2XADahm2At4RR0,14285
333
+ hestia_earth/models/ipcc2019/utils.py,sha256=XMOxIlITt9JgZgdOtWUtHa0Eyp-10sJO9tEhK12Lgxc,6273
330
334
  hestia_earth/models/ipcc2019/animal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
335
  hestia_earth/models/ipcc2019/animal/fatContent.py,sha256=rnFergteN5rwH9KLyVQR7iolh5Onj2gF785DnLIbIHI,994
332
336
  hestia_earth/models/ipcc2019/animal/hoursWorkedPerDay.py,sha256=BBByUzgM7OymWnuU-IFMD-3cp_KXSNqXtoO-QdVjroU,965
@@ -336,7 +340,7 @@ hestia_earth/models/ipcc2019/animal/milkYieldPerAnimal.py,sha256=p7o3qvQbgq3QWqp
336
340
  hestia_earth/models/ipcc2019/animal/pastureGrass.py,sha256=lT74m-NljewFYdQJIe4he2uYJ9rWWSZSm1MCUrxj0gQ,11742
337
341
  hestia_earth/models/ipcc2019/animal/pregnancyRateTotal.py,sha256=zib2AW3WJTL4NRYN4a0rRiqSJ5PZLRtwDYia7gigQFY,968
338
342
  hestia_earth/models/ipcc2019/animal/trueProteinContent.py,sha256=fgV0u4sEtLmCk-vUHF6mM03uy1w9nVPDzmxSkLXgPBo,1010
339
- hestia_earth/models/ipcc2019/animal/utils.py,sha256=mYnSFOU7WcuJugTUKRV4mXzduZk_Q9MjDMS6o3S1tQM,4361
343
+ hestia_earth/models/ipcc2019/animal/utils.py,sha256=kRYmqAlUomspQ9wBXikgukjseLljaIo6EdQeOr4OR0s,4369
340
344
  hestia_earth/models/ipcc2019/animal/weightAtMaturity.py,sha256=bdNunYwW3D6i81AkWQ-vtv6PObv6V_oZdVvqzk4Caug,2869
341
345
  hestia_earth/models/ipcc2021/__init__.py,sha256=VTgGFKhwMmk_nuI1RRq0in27fHYVPBonlXlPK00K8no,409
342
346
  hestia_earth/models/ipcc2021/gwp100.py,sha256=EQ-OBQrahSgMBFtGregiNlbm3DHVwr67o4e29Z5Gns8,1039
@@ -344,9 +348,9 @@ hestia_earth/models/jarvisAndPain1994/__init__.py,sha256=ercUwy29sV7oPIESj8UjsGB
344
348
  hestia_earth/models/jarvisAndPain1994/n2ToAirExcreta.py,sha256=003gtGusD1MFJqb2iRck4d54fw25-1h_O2Zoy8mFHrc,1452
345
349
  hestia_earth/models/koble2014/__init__.py,sha256=jRciLONEhGHtMLu2rlWXEEVwcJqA-URsfH1cCt-Qti4,410
346
350
  hestia_earth/models/koble2014/cropResidueManagement.py,sha256=WvO_eqiNO0jdWITEkjHPtrndjCnrDb9BXEbkwHVpr6k,2702
347
- hestia_earth/models/koble2014/residueBurnt.py,sha256=vw1PqppcrisqRmEQTaPVQ3RNkfZbrYWEK2AsXcPG0F4,2025
351
+ hestia_earth/models/koble2014/residueBurnt.py,sha256=Sb7jZLz5AN1PWabhtu_cmw4g9vs6qGCLvIUe4jsVN8s,2074
348
352
  hestia_earth/models/koble2014/residueLeftOnField.py,sha256=BENMR_BUk0nYfe1YjTSz7y9hP9chZisl1Je1pP7KEyA,382
349
- hestia_earth/models/koble2014/residueRemoved.py,sha256=P9JkS4sVHvX_4O2K3ggXPhh0YUR_eY64SETzJoVSRrY,1799
353
+ hestia_earth/models/koble2014/residueRemoved.py,sha256=QNxHLBPFScBHzCQLZfTCvAcHp-EIirLN-jFSClAJW4E,1807
350
354
  hestia_earth/models/koble2014/utils.py,sha256=zQslKDPWq9MPfdstI29XLTlmlPDY8Qjpi8aLCILSN5E,2934
351
355
  hestia_earth/models/lcImpactAllEffects100Years/__init__.py,sha256=Z15q1K369kIkH4JC3X2mN0PdNHhUn6dscug6g4DvAxc,427
352
356
  hestia_earth/models/lcImpactAllEffects100Years/damageToFreshwaterEcosystemsClimateChange.py,sha256=BrkLQgt-BuQUTdA_Uzn46RGC50BQfsD9uLLP9MRpDAQ,1100
@@ -444,16 +448,16 @@ hestia_earth/models/linkedImpactAssessment/utils.py,sha256=7M-E7u35fIF0uMoA1hwcr
444
448
  hestia_earth/models/mocking/__init__.py,sha256=9VX50c-grz-snfd-7MBS0KfF7AadtbKuj7kK6PqtsgE,687
445
449
  hestia_earth/models/mocking/build_mock_search.py,sha256=p15ccEUmkmLp1RiGNznxMz3OFHbI8P1-29ExuohiQN8,1355
446
450
  hestia_earth/models/mocking/mock_search.py,sha256=ccFe_WrI73JElFmxp4hPNLCX7eeU--lBC1JFR901KJY,1069
447
- hestia_earth/models/mocking/search-results.json,sha256=LkJbrokIm6GlpOOMjWTNRcUOdYPL5Onx75en1b37LxE,162532
451
+ hestia_earth/models/mocking/search-results.json,sha256=yFpO3uRv4HbUY56ZOVVdLFnl_IZD3hSxMSSjbb6mwW4,162616
448
452
  hestia_earth/models/pooreNemecek2018/__init__.py,sha256=nPboL7ULJzL5nJD5q7q9VOZt_fxbKVm8fmn1Az5YkVY,417
449
- hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=Qt-mel4dkhK6N5uUOutNOinCTFjbjtGzITaaI0LvYc4,2396
450
- hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=JT0RybbvWVlo01FO8K0Yj41HrEaJT3Kj1xfayr2X-xw,2315
453
+ hestia_earth/models/pooreNemecek2018/aboveGroundCropResidueTotal.py,sha256=oXillpppAas1q9GKmODxe1YXyno3EzV-j12xhzkqtTc,2404
454
+ hestia_earth/models/pooreNemecek2018/belowGroundCropResidue.py,sha256=_pQMPSvI--Xm00H6vXDA4ct_pQXKRGrLE2f-2tQE6y4,2323
451
455
  hestia_earth/models/pooreNemecek2018/ch4ToAirAquacultureSystems.py,sha256=k_dB5iwOg6swQWb4fvfMCZ1dm1PnRff8Rpm1aclKOqA,6517
452
456
  hestia_earth/models/pooreNemecek2018/excretaKgN.py,sha256=EKVQK_wfDGRvj3lsSYp4xCjVEobOVt04fNhiZZXXfDk,5956
453
- hestia_earth/models/pooreNemecek2018/excretaKgVs.py,sha256=eIiiZPWjLya0ZOqiYXFKH10K693cAKFygP2p-WPcLyg,9278
454
- hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py,sha256=QWWS9P_q_mPruvCYm4PJ0PNcYJJ8QS3WEV7HN-6MneY,3920
457
+ hestia_earth/models/pooreNemecek2018/excretaKgVs.py,sha256=khyeuP2KBHSpseR2YPtXg0mT3qZS3fVVE47ey674fvw,9289
458
+ hestia_earth/models/pooreNemecek2018/freshwaterWithdrawalsDuringCycle.py,sha256=jyFhTiL7gHPrYqxZgeP0Dfd9oRFa1TaiyVq5-ia1Lfg,3928
455
459
  hestia_earth/models/pooreNemecek2018/landOccupationDuringCycle.py,sha256=gSUzPuzzLwQsBiX_Tgx6mWJ4pEB5qhlKoOtaEdmDGQ4,3431
456
- hestia_earth/models/pooreNemecek2018/longFallowDuration.py,sha256=Wdm6QyOttCFP9Y3OjbaYrvdMmivOmMIT-m5Eg9SM9rY,1511
460
+ hestia_earth/models/pooreNemecek2018/longFallowDuration.py,sha256=qtqIPWR4Fvbi5yWnMlG3apYPQT4X_YMCob3z035mQMU,1519
457
461
  hestia_earth/models/pooreNemecek2018/n2OToAirAquacultureSystemsDirect.py,sha256=n3G4p1ed7-45Ts09kbGGyJ4wea4dp8cY4lTm_9HAsP8,2375
458
462
  hestia_earth/models/pooreNemecek2018/n2ToAirAquacultureSystems.py,sha256=dFbrp4juLeCrD4wSDzfRrxiLpSFN_K4bmLsDxW4ckSs,2220
459
463
  hestia_earth/models/pooreNemecek2018/nh3ToAirAquacultureSystems.py,sha256=6P7DlHBcnrXYLPplZktDBjt_Y5W69vKHn8JqUPoODtk,3689
@@ -463,13 +467,13 @@ hestia_earth/models/pooreNemecek2018/no3ToGroundwaterInorganicFertiliser.py,sha2
463
467
  hestia_earth/models/pooreNemecek2018/no3ToGroundwaterOrganicFertiliser.py,sha256=aIDbxa0nqtqSZhlQbg8rk2OuJGeTZSxCQ6HOPuubheY,2304
464
468
  hestia_earth/models/pooreNemecek2018/no3ToGroundwaterSoilFlux_utils.py,sha256=G0D_YBCP29Yl_hmQ7jpZP6i0I708PiiaaVRoNrI01MI,6058
465
469
  hestia_earth/models/pooreNemecek2018/noxToAirAquacultureSystems.py,sha256=kmuAC6NmwT-Rg2qKt9BpRMReqNJT0vTRwhAqWbsYieA,2522
466
- hestia_earth/models/pooreNemecek2018/nurseryDensity.py,sha256=ZY4w4q6uvKls-Tj4hz770MRIwJeHxA4DZ10JUJYeBss,951
467
- hestia_earth/models/pooreNemecek2018/nurseryDuration.py,sha256=_k8OCZxCiT5hrWGLx4HF0CHi21eYtbkFMxMNYKctzCc,953
468
- hestia_earth/models/pooreNemecek2018/plantationDensity.py,sha256=-y-zXHFPet0LdIgSG-o2hV_sdIOLeuWoRikW2DPi3kk,957
469
- hestia_earth/models/pooreNemecek2018/plantationLifespan.py,sha256=FudC-csC1IkiFOJ_uD0s6_rwsgqVrUN6Ej7A03JXDsM,959
470
- hestia_earth/models/pooreNemecek2018/plantationProductiveLifespan.py,sha256=Q54woX67eUab0qEEAuW2naFGhnVPJHrMas3bG92KNeg,1740
470
+ hestia_earth/models/pooreNemecek2018/nurseryDensity.py,sha256=OSUWZ5IouqAppeBwWo7fQiZLLR0Do4m11hqWuQT8bPY,959
471
+ hestia_earth/models/pooreNemecek2018/nurseryDuration.py,sha256=lEfjkCfYfBPoRCgXnckSerTHcjBYsgD0bHwZDzo5tUY,961
472
+ hestia_earth/models/pooreNemecek2018/plantationDensity.py,sha256=_-w6rxwDQNPKnPhPwz_UHYb8S9l9FOJLtl7VzCGEjAQ,965
473
+ hestia_earth/models/pooreNemecek2018/plantationLifespan.py,sha256=6CTV3xF4HVjXo5mR7oXzQl_s-LbCtt1yA0GHSg_pJNQ,967
474
+ hestia_earth/models/pooreNemecek2018/plantationProductiveLifespan.py,sha256=vzV4ENwz-loJoVOGPvthD4XQb2CeWU78Z55swu3KJsE,1770
471
475
  hestia_earth/models/pooreNemecek2018/rotationDuration.py,sha256=j5hW_NEKYQbeMcdsqp2nQIDXCnUdZIKURzAmPCiegQk,1525
472
- hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py,sha256=Vx4T5qTM2GubwR-gRa4JEhkVi6LWYkt3jWN7VB0lHgY,2511
476
+ hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py,sha256=W_elFn-__VwMBnoGee6Gm5WNu_E2K7ipW2cHX5vmlOg,2519
473
477
  hestia_earth/models/pooreNemecek2018/utils.py,sha256=q3vVRch8waL8EzE-q0WtDRxsrbKhJfvx0olznNtTwcs,3790
474
478
  hestia_earth/models/poschEtAl2008/__init__.py,sha256=nvyyGglxCTV4PpxcOjY7jJb0v8Bjzj435Zt1j6VcryM,414
475
479
  hestia_earth/models/poschEtAl2008/terrestrialAcidificationPotentialAccumulatedExceedance.py,sha256=1pd7RX4Q0ilASi9k3l1zNnz3bUg2MakR8luJQVxYxKA,1418
@@ -528,13 +532,14 @@ hestia_earth/models/recipe2016Individualist/marineEutrophicationPotential.py,sha
528
532
  hestia_earth/models/recipe2016Individualist/ozoneDepletionPotential.py,sha256=cRpcfMsQnFFYV6lW5iy0yEqt9lqL0C7ALL-OdhdbV8A,1064
529
533
  hestia_earth/models/recipe2016Individualist/terrestrialAcidificationPotential.py,sha256=YvFqXh8SdYy1Na71mYGO9Dpi928fzzXESRA3x-JKG7Y,1069
530
534
  hestia_earth/models/recipe2016Individualist/terrestrialEcotoxicityPotential14Dcbeq.py,sha256=Sf6_kPt1hHRwe_Cg6Fz7nnxBZgIhpUzi8xMLJSxoRN8,928
535
+ hestia_earth/models/resourceUseNotRelevant/__init__.py,sha256=UWlMN3tYCyTDpnlyoKqsoAQADPgBwY5tZWN0FVXoPrQ,2236
531
536
  hestia_earth/models/schererPfister2015/__init__.py,sha256=_6FJKfWeAbbS3jFzQ8gEVzoX1LZdPWUTLrow6Hz90U0,419
532
- hestia_earth/models/schererPfister2015/nErosionSoilFlux.py,sha256=PotKe8iA8tmEUU1fF7CwcOoZSxTSv1QQPBHOQRAunRY,5370
533
- hestia_earth/models/schererPfister2015/pErosionSoilFlux.py,sha256=5RDeAi3UzflrqlV5ynGvTCKR3zLZE5Vffk_lAh5x_Ig,5382
537
+ hestia_earth/models/schererPfister2015/nErosionSoilFlux.py,sha256=rh1H-06upTXlv5x8RqhBt1RRrWnMznPbm3k3EBoAGY0,5450
538
+ hestia_earth/models/schererPfister2015/pErosionSoilFlux.py,sha256=2LVjKHpKKsV6vEcUrDwtqrdFqAYeSXzTLqhkBPBBxno,5462
534
539
  hestia_earth/models/schererPfister2015/pToDrainageWaterSoilFlux.py,sha256=iQs5lLLgGr1thOQ0ZnTLJDJjX7RBwPdu--8p81BZ988,2310
535
540
  hestia_earth/models/schererPfister2015/pToGroundwaterSoilFlux.py,sha256=tH-jyd8PFGvEVCO9u4coyVhghYcZyPgbPWQXQsTmDMg,1972
536
541
  hestia_earth/models/schererPfister2015/pToSurfaceWaterSoilFlux.py,sha256=evd2jmFZ9lq-uwXiBTgP5wJ-KTjNBVztjSp8eW9-8qg,2947
537
- hestia_earth/models/schererPfister2015/utils.py,sha256=prdPZKnxJAIqBmHN6FCmfvRU4rLSTx2bvVGSMzoM5NY,3235
542
+ hestia_earth/models/schererPfister2015/utils.py,sha256=UxGH749ddKP6dr8Tk6uqvLQrE_3zlfZ47JtF8uQKdg4,3272
538
543
  hestia_earth/models/schmidt2007/__init__.py,sha256=xheSN6LOGXpWx7Hnv83onhe60Xk1_jk1PJg1nH_aZOQ,412
539
544
  hestia_earth/models/schmidt2007/ch4ToAirWasteTreatment.py,sha256=YADAFxJl0UB_UCxr9mtrwMb4A749nh5hElAoLhu1Itg,1351
540
545
  hestia_earth/models/schmidt2007/h2SToAirWasteTreatment.py,sha256=Ma20xG4Crk7bp12FvpDQkyVwXyikFz9Bnn0pFoWSu64,1351
@@ -560,7 +565,7 @@ hestia_earth/models/stehfestBouwman2006/n2OToAirCropResidueDecompositionDirect.p
560
565
  hestia_earth/models/stehfestBouwman2006/n2OToAirExcretaDirect.py,sha256=k7LZrHUDzgBNlqBxMhSurDVhAeLdE_ZM9BdoItLqurw,2913
561
566
  hestia_earth/models/stehfestBouwman2006/n2OToAirInorganicFertiliserDirect.py,sha256=KbIVlDQfOoxsc-tz-VJkVLotSsRbnWFL7UJ7zedEkBg,3067
562
567
  hestia_earth/models/stehfestBouwman2006/n2OToAirOrganicFertiliserDirect.py,sha256=7pB4AC7D1UEOlIwwxv8psxRV1ADfGLqbtspOJcdKnrk,3054
563
- hestia_earth/models/stehfestBouwman2006/n2OToAirSoilFlux_utils.py,sha256=9vRDBWFdBrT9nV7smBBZK547bBv-L7hDk4SjtRaVwuc,7233
568
+ hestia_earth/models/stehfestBouwman2006/n2OToAirSoilFlux_utils.py,sha256=9ifN0toc4EnsRFQ0Z671zHMAQIWnoQBkTCD0YjQc3Jw,7238
564
569
  hestia_earth/models/stehfestBouwman2006/noxToAirCropResidueDecomposition.py,sha256=8vcw4ItFkrl1WwiZf0u0Qp0vhxxy-aWMBguMiViAGDM,2396
565
570
  hestia_earth/models/stehfestBouwman2006/noxToAirExcreta.py,sha256=AR1OZ6s4kY5Anl6WRE8xy2Pt2PTgcfWuTXaGPUhSf00,2576
566
571
  hestia_earth/models/stehfestBouwman2006/noxToAirInorganicFertiliser.py,sha256=-4QlBsHmG4gqD6-980FCEIoYF7HciibjwZT_sr4MnF8,2733
@@ -571,7 +576,7 @@ hestia_earth/models/stehfestBouwman2006GisImplementation/noxToAirCropResidueDeco
571
576
  hestia_earth/models/stehfestBouwman2006GisImplementation/noxToAirExcreta.py,sha256=9zYn_inKgCUgZALKfmYyS1vi03KUQn63yu1hB1_UXi4,2298
572
577
  hestia_earth/models/stehfestBouwman2006GisImplementation/noxToAirInorganicFertiliser.py,sha256=aAsbeNVB7xd5Tu1qdLdl1TmhzlqnyaOxXnLA_QR1SB8,2455
573
578
  hestia_earth/models/stehfestBouwman2006GisImplementation/noxToAirOrganicFertiliser.py,sha256=1s88H428oX8YFNLBXhXSfqsddqrHZFXAoSmdhAvAOsY,2439
574
- hestia_earth/models/stehfestBouwman2006GisImplementation/noxToAirSoilFlux_utils.py,sha256=yRsk-WcI13mVz4jerCAxJY91hqNs2JelXhbufP83Km0,3403
579
+ hestia_earth/models/stehfestBouwman2006GisImplementation/noxToAirSoilFlux_utils.py,sha256=lPxMKMtxOY8P07kf7XpGZCQBiqiZoyB558y_K8ZMgq8,3374
575
580
  hestia_earth/models/transformation/__init__.py,sha256=63Y_fXFBn4sX2l7F0hMsWkgIvxk5Tw9XoDBQr6bUBQQ,352
576
581
  hestia_earth/models/transformation/input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
577
582
  hestia_earth/models/transformation/input/excreta.py,sha256=LwxWzyGR1AyxEbt5s7z4CfdFyX52ft7Yd8xLusMPMak,4147
@@ -590,40 +595,40 @@ hestia_earth/models/utils/aggregated.py,sha256=G7FNJfHqJ_eoXB66kGdjLyZGDOI_gsF56
590
595
  hestia_earth/models/utils/animalProduct.py,sha256=M5IunAKGY6oZv3j1Ascl34ywyeLWApqOIlBzbtlA2FE,721
591
596
  hestia_earth/models/utils/aquacultureManagement.py,sha256=dxrbC1Xf140cohxTbSw6TxLAnAASWTdNZwBBam4yQnw,171
592
597
  hestia_earth/models/utils/array_builders.py,sha256=ko1pDZKaUudZqxOZ99vJamKAdoR6ND4ZmxVrYH6YjPc,19498
593
- hestia_earth/models/utils/background_emissions.py,sha256=ywxhI_x8zHnFootp5jzimUaNGHRsInnp8F0pBGIviVg,2870
594
- hestia_earth/models/utils/blank_node.py,sha256=zQhMFG4o7kUQY0J_7g84E8E1hwatSRZINTUb6fELB2s,56040
598
+ hestia_earth/models/utils/background_emissions.py,sha256=DnPzhEWO6OU7MwYsV33TjV9QjzwFNd2eBsxQXDtoxFM,3106
599
+ hestia_earth/models/utils/blank_node.py,sha256=o1MzCz6FXuJ4Iit55EeGrHbrGM9VUfdAF1RNqTBU89Y,56070
595
600
  hestia_earth/models/utils/cache_sources.py,sha256=MBkrPpjwNiC4ApDjeYVHZjWBbpvAerXRDrMHpjasAZ0,377
596
601
  hestia_earth/models/utils/completeness.py,sha256=iRG4uviOAQQ4T2Nr4LlelPVTS_F1felGZNJYxek_JG8,1239
597
602
  hestia_earth/models/utils/constant.py,sha256=DmB3VVuoh7Pz2QDBJqiUG6yAML2i0fOy1BPuPHmhT1w,3442
598
- hestia_earth/models/utils/crop.py,sha256=JF9vsXOlViiwsIkV-mQ9iRl4dZGgeP2mrgdAmKuhYaY,2713
599
- hestia_earth/models/utils/cropResidue.py,sha256=_0Q35CrliJeo31xGHsPWe8A2oHxijdIsOrf3gBEqhlA,612
603
+ hestia_earth/models/utils/crop.py,sha256=GbYwrz3Zd4JU-cwUBijc8GeAK0XgurV3ubwcFIgxhcU,2721
604
+ hestia_earth/models/utils/cropResidue.py,sha256=6rwC2Fw4ZwuQwvb38ZYUfL1UIZ7eEIy1zeNFv5OxYSQ,1220
600
605
  hestia_earth/models/utils/cropResidueManagement.py,sha256=nIDFjf39rDD10UHSVudfDyu-EiL261g8jyrgS-2aDKw,347
601
606
  hestia_earth/models/utils/currency.py,sha256=f_ArJANb--pZq4LL49SXQ1AMX_oKroqwBXKRRQqZwsM,578
602
- hestia_earth/models/utils/cycle.py,sha256=Lx085Eonp2W7EOi9BSlLWqtwY0ocZ5F1KY9dDGMn-W0,16199
607
+ hestia_earth/models/utils/cycle.py,sha256=FJWDPQ0utjtSTq-0SnewpqP_ateixs2XXCqN85l07Qw,16210
603
608
  hestia_earth/models/utils/descriptive_stats.py,sha256=EMVwFvg2OnZgKRAfireAoWY2EbrSvqR0V0bK9B53p28,1583
604
- hestia_earth/models/utils/ecoClimateZone.py,sha256=etsWsAQeYHCnDJJi-ezTrzjoaFILC1e3SMfSNsdRnPs,4241
609
+ hestia_earth/models/utils/ecoClimateZone.py,sha256=kJmXtRiq8-vWF7S1rNIA6WpWkPtt8JoNfWgG9azM_ts,4269
605
610
  hestia_earth/models/utils/emission.py,sha256=vzQQ4eKiC8KlmwFqT00lSV1V2dmTGMSzddOYNgFyka8,3636
606
- hestia_earth/models/utils/excretaManagement.py,sha256=cez_Rm69n8CzXuoil0fhi8XSOIEh2yfJzYFzhf9T5EM,2257
607
- hestia_earth/models/utils/feedipedia.py,sha256=mfGd3EaTQGh9aZaF9pxVJRH_vLEIqktwbwTKQWHv7hs,3967
608
- hestia_earth/models/utils/fertiliser.py,sha256=DBO4OBNgnQJ0fCQMDkIk_ZGZX-uKGaTFZCEXfAnJciY,690
611
+ hestia_earth/models/utils/excretaManagement.py,sha256=PNZoaf6nvdt1t7B8Apa638rU8T4hI5VW2fy1fAoC64k,2265
612
+ hestia_earth/models/utils/feedipedia.py,sha256=fVyEx2C5CSu0pv--tG6dOfQQ7WzThPoVuzM_FW9jP18,4009
613
+ hestia_earth/models/utils/fertiliser.py,sha256=9Kv7czDEPDvZ5Bz6Rr_2vy2MsXrPDvBC3921cEJSks8,810
609
614
  hestia_earth/models/utils/fuel.py,sha256=XzOELV3dn506PkMKjFQ_ZKVZInd2lL2x6PKdsa6Po4M,1429
610
615
  hestia_earth/models/utils/impact_assessment.py,sha256=YeO7Z-9_KYyIsb1JpRJmUBbsik0FcIuLAzafF2v9yQQ,7933
611
616
  hestia_earth/models/utils/indicator.py,sha256=qdXJP9PDQbEzcGYERp3d3exkDGFmgj1-2987Ls6Hums,772
612
- hestia_earth/models/utils/inorganicFertiliser.py,sha256=Uxum83qAbwRct3jLn9F12_v09NYhhhT5FTEF6TplneE,1766
613
- hestia_earth/models/utils/input.py,sha256=lSGQFmO7yKP962zwIoGd7Unj9YLnXuHFMa_lyK7V6bA,5139
617
+ hestia_earth/models/utils/inorganicFertiliser.py,sha256=2Uq6ATWwb_YYRzBCMdrlVWyCDDtWVApUxgxDEN3-3OA,1782
618
+ hestia_earth/models/utils/input.py,sha256=61aaJV6QApJQIQT5TMsBww46cBYpJdf__krnwV95KsY,6160
614
619
  hestia_earth/models/utils/landCover.py,sha256=8-nfynzCx9gf9YfhpuoH6Cn4kQwWFpYA5RmoGW-0ETE,300
615
- hestia_earth/models/utils/liveAnimal.py,sha256=GnajBPZw5d94raf80KtLloaOqlfqGAPwUtP9bRlGWeE,1754
616
- hestia_earth/models/utils/lookup.py,sha256=UCkg_MluWfgkznQBCXCZECahGmI7VNszVclLGRoXhlA,6190
620
+ hestia_earth/models/utils/liveAnimal.py,sha256=-ufUs00ALXRKGbrRJi7a7eTWVvkEj_pxLDWYbMJmx2g,1770
621
+ hestia_earth/models/utils/lookup.py,sha256=1sDA9LAh1zomS4XWdfM3QcBajgy7P5mfwngb6PPlRtM,6198
617
622
  hestia_earth/models/utils/management.py,sha256=urvoHvTw5wrO12POjGQ50Or25X1Y4Gx26l4fDoVt-Ck,376
618
- hestia_earth/models/utils/measurement.py,sha256=EalW6D3wnD7jygV-m1miIZRkQ_S9qIqWGuXpcDrYk28,11685
623
+ hestia_earth/models/utils/measurement.py,sha256=HElALkyxRa1Jj_rsf0cTUcgKPpxJZEP-XuMDFn8TusQ,11786
619
624
  hestia_earth/models/utils/method.py,sha256=ZYN2_Fyeiwr9pmvD84ZPg7ZHBlvaIY2A6XL4F_KByS0,740
620
625
  hestia_earth/models/utils/organicFertiliser.py,sha256=2HY-a0EBzUw4DkEAXClLMXVCEZTKYf0BwFHBo7lQ5Tg,363
621
626
  hestia_earth/models/utils/pesticideAI.py,sha256=DQIAjgkWjKPyuMLUvnEgVkeQGCEOBjyJJktWU747b00,2047
622
627
  hestia_earth/models/utils/practice.py,sha256=GEu2G2yMPbcIHldOzgv5OFp8bQ1Jt9OFgj0c_0F_kUc,372
623
628
  hestia_earth/models/utils/product.py,sha256=Oha4lMvediC1Lc5DksA6sAUT94Q1Cs9F4LFVe_uaqP4,11177
624
- hestia_earth/models/utils/productivity.py,sha256=rTJX_nemxHpOcPN7jiM2hFHknoLUIW8y-hFxVxIkg70,593
625
- hestia_earth/models/utils/property.py,sha256=oz3x-sJkNmORlDwb4o1q5I-azj0hteriUSZBP7S5idc,5390
626
- hestia_earth/models/utils/site.py,sha256=88b30OI2rly_2YJTps7x4JrAg4TuoqlzcG5-w2F-J5c,4084
629
+ hestia_earth/models/utils/productivity.py,sha256=947w8LzR7HqAQlM7AGibHbqton8RmeXvErHo7heag4I,601
630
+ hestia_earth/models/utils/property.py,sha256=glfINBxB59d6dRRfN09C9U3CxfFyM_dTEWdlPi6_l0c,5422
631
+ hestia_earth/models/utils/site.py,sha256=5S-53PHQnstr4LVveRuNhk4kpvGJtR8oc-t3OsxRyms,4128
627
632
  hestia_earth/models/utils/source.py,sha256=D_QlW7Ul_NV1iOucMNE3szT64b1RdSdecIEm6OukYhw,2459
628
633
  hestia_earth/models/utils/stats.py,sha256=-0vvhSDAhp4ZYXD1l6sO2hdok8_HgUM6OjCSYGSTHqU,15291
629
634
  hestia_earth/models/utils/temperature.py,sha256=ljlG4-yCgFFb6LRZweb18cZKLrr7K2mqd4E4Hz_D1f8,476
@@ -656,15 +661,17 @@ tests/models/test_config.py,sha256=w27OA_pk9NuDbxzMD--l72Ea97SL1HS6bos6mOUCy8k,3
656
661
  tests/models/test_ecoinventV3.py,sha256=SvBn1ZomoturZhjj4BE2EU46Sq0il-tOJIqutmGadWs,2023
657
662
  tests/models/test_ecoinventV3AndEmberClimate.py,sha256=_7sX0s07Xr00uNcVk78L1AdSqI1OpUV3tkkG1hVSY2w,803
658
663
  tests/models/test_emissionNotRelevant.py,sha256=TsIV47lpn7joLGx-LlPVqWbshcLf2c6pUvB3FZwLvwY,1023
664
+ tests/models/test_resourceUseNotRelevant.py,sha256=z1zY3pJdffongIsBJaLB7WToBrMiE4wYuHSsAbGEJ7w,983
659
665
  tests/models/agribalyse2016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
660
666
  tests/models/agribalyse2016/test_fuelElectricity.py,sha256=u_wNlqngJc8NELPr16kYsYQ-_2PcL8BnrfJucY7dccU,1353
661
667
  tests/models/agribalyse2016/test_machineryInfrastructureDepreciatedAmountPerCycle.py,sha256=75yJ0yuPbIizpSsHr7CpZnUv01LZbuYsm5s9hE0VL_o,1090
662
- tests/models/akagiEtAl2011AndIpcc2006/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
663
- tests/models/akagiEtAl2011AndIpcc2006/test_ch4ToAirCropResidueBurning.py,sha256=7UsY623XO_UPrOFHql6NF8jpzwZUHhAndZ40tp3gAMs,1507
664
- tests/models/akagiEtAl2011AndIpcc2006/test_n2OToAirCropResidueBurningDirect.py,sha256=GvjzYcVsFYdq7AxpSBoLN1DftWhluoL-D3IyIdh4b7w,1519
665
- tests/models/akagiEtAl2011AndIpcc2006/test_nh3ToAirCropResidueBurning.py,sha256=FRjgCjtEDHO6l7qBsD-BfPhH5mWurAn8QCEr01S5B2I,1480
666
- tests/models/akagiEtAl2011AndIpcc2006/test_noxToAirCropResidueBurning.py,sha256=Jy2ltPv7FXOtVahqBR2KjUVsfJMEaIu17leay9FGUfk,1480
667
- tests/models/akagiEtAl2011AndIpcc2006/test_utils.py,sha256=sCkqGJU8RGwHaxlwiyx2YtYHsQQVlTo3Z6lkRJjfHiI,941
668
+ tests/models/akagiEtAl2011/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
669
+ tests/models/akagiEtAl2011/test_ch4ToAirCropResidueBurning.py,sha256=HfpljsiisaQux2QUX2Jhgsvwp84E-eUUcdN5T9kMBf8,1142
670
+ tests/models/akagiEtAl2011/test_nh3ToAirCropResidueBurning.py,sha256=NAFGO7aSJ6pumlSJ51NWwfRvnneXMe40l5m9pq-cOMU,1142
671
+ tests/models/akagiEtAl2011/test_noxToAirCropResidueBurning.py,sha256=3GIergySTs_aiqT8wMMSTu7zDWJ244EwRNOPkU_TLiI,1142
672
+ tests/models/akagiEtAl2011/test_pm25ToAirCropResidueBurning.py,sha256=hGnX5WymuO41ddDecjbMiKjdFi20rQNdOr-ErVo1f34,1143
673
+ tests/models/akagiEtAl2011/test_so2ToAirCropResidueBurning.py,sha256=kWoTSIMoGIpBR8OgH1LzIqkgvwsTU7mOov5O9ZmlIbE,1142
674
+ tests/models/akagiEtAl2011/test_utils.py,sha256=0OjbTm75fPT38vB_mOnvWq1iw_SPaGfDvcuQEymGB6o,541
668
675
  tests/models/aware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
669
676
  tests/models/aware/test_scarcityWeightedWaterUse.py,sha256=Tl888UE-v5xQCInOXxn291Tkx3Qyz_bKkd5inVwlDNc,2003
670
677
  tests/models/chaudharyBrooks2018/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -729,13 +736,13 @@ tests/models/cycle/pre_checks/test_site.py,sha256=2JTrsOXVGfNn7FlLiX7DPNs6AHdeZu
729
736
  tests/models/cycle/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
730
737
  tests/models/cycle/product/test_currency.py,sha256=r7TA0FDDS9U50-FolEMXESi4pvSmwXnQxAHrQh0lRjA,1222
731
738
  tests/models/cycle/product/test_economicValueShare.py,sha256=sFS-gKt6oglqeKuDqHsPfZ90cEROOIdydFsOu4E85eo,4624
732
- tests/models/cycle/product/test_price.py,sha256=zmWNdF2P4k2QTje_62NJDklCIwmk2vF8xuOoVzL9qf0,1193
739
+ tests/models/cycle/product/test_price.py,sha256=zO_IYKXAih4lDpbLMBGualUwUm1vwqLq32qw46H94mI,839
733
740
  tests/models/cycle/product/test_primary.py,sha256=UfLOOxUkDyeSOmDv4NyN6v5Yf0RO9etZNT797fbCbpA,1862
734
741
  tests/models/cycle/product/test_properties.py,sha256=7pcBH_Ny8JeQ2dWXBU-ZSmY5iYl0f_qFejp8Vk5e1H8,1142
735
742
  tests/models/cycle/product/test_revenue.py,sha256=H_LxjvMEyyr8dr8SAC3zWezGsGcD4lglVt26eT8QoL8,849
736
743
  tests/models/cycle/product/test_value.py,sha256=IfkcE8kgrvXg_iIbnoJ3n0CIjlfgg_lHkILQ8u38HVE,963
737
744
  tests/models/dammgen2009/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
738
- tests/models/dammgen2009/test_noxToAirExcreta.py,sha256=RWd9QvzmJtN9M6UC6KDHkXwtKvwv0aAfMuI9HtsJLvk,1213
745
+ tests/models/dammgen2009/test_noxToAirExcreta.py,sha256=fFy1oUTJPjAMVrNxTXM_nu-5RSZL1o4BQBM4FnjAd5M,1616
739
746
  tests/models/deRuijterEtAl2010/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
740
747
  tests/models/deRuijterEtAl2010/test_nh3ToAirCropResidueDecomposition.py,sha256=kS1nUBVohOSCb386g6Wq7iVclmx0haekUDYo7VQ4NCA,2030
741
748
  tests/models/ecoalimV9/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -811,7 +818,7 @@ tests/models/geospatialDatabase/test_temperatureLongTermAnnualMean.py,sha256=Wrz
811
818
  tests/models/geospatialDatabase/test_temperatureMonthly.py,sha256=eUaI1TZ-9sXFxWR2UoKBbca8dzW21zp5jGcfbooTt3M,746
812
819
  tests/models/geospatialDatabase/test_totalNitrogenPerKgSoil.py,sha256=fZuFjIJ_-bF8HqoNfzA0odmABiSgnttlGQw2Rphqu70,1632
813
820
  tests/models/geospatialDatabase/test_totalPhosphorusPerKgSoil.py,sha256=N5Vqf3YKlxHxWRe1PP3Kpbd30bhPOsB8eYr2IGS7quk,1026
814
- tests/models/geospatialDatabase/test_utils.py,sha256=bdQfDkCTj5DtuUou2iRhHau-l0nrF28z3t-_5W1TQQY,756
821
+ tests/models/geospatialDatabase/test_utils.py,sha256=MGSuJYejnXG1TGmEy-ooUxfW6alXhR36iqzJWUHyyqI,773
815
822
  tests/models/geospatialDatabase/test_waterDepth.py,sha256=v1y6OcEdSOKu5wlIOYD9UctAx2k7ODP3eLf0WHZZz5w,954
816
823
  tests/models/globalCropWaterModel2008/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
817
824
  tests/models/globalCropWaterModel2008/test_rootingDepth.py,sha256=lSjN_3AHoqajnQ2JfeuzLReL9au1d0uiCG2NZbvFXkM,2688
@@ -828,6 +835,8 @@ tests/models/hestia/test_coldDressedCarcassWeightPerHead.py,sha256=5UwhLh0DjPlOc
828
835
  tests/models/hestia/test_concentrateFeed.py,sha256=knFM7SlKZhvmRu9T6T5H1fitFAZBuEBdxiBQpnekn4M,2012
829
836
  tests/models/hestia/test_cropResidueManagement.py,sha256=zjHY0dlrJN7pqlRIs3rpssuwqOFJtjv4El3V39QpoFs,2021
830
837
  tests/models/hestia/test_croppingIntensity.py,sha256=YIBeAj3HSpLTKKjTNpQyy273w36xKSnv2lUbeO_-cb0,1566
838
+ tests/models/hestia/test_default_emissions.py,sha256=d85cKeFJsT-p3ti4AliSPB7lUJmwNoogRU-sUGn52Zg,869
839
+ tests/models/hestia/test_default_resourceUse.py,sha256=RZ0oV4lzl-LujGoih6OAxxZmeqi655KHQWQNG_senmg,917
831
840
  tests/models/hestia/test_energyContentLowerHeatingValue.py,sha256=sjFrRFNMGvZy8i5WWqfR3Z_92wd9lUTtdZv0YFXidR8,1222
832
841
  tests/models/hestia/test_excretaKgMass.py,sha256=tY4he1xRDHZi976slnFra-4lRqWwogx2fXkpXfJxpOY,2924
833
842
  tests/models/hestia/test_excretaKgN.py,sha256=7yuF9-nrwfkcmU_VsQtFBYSO92RqEDtUU9kdL0ERiUk,1091
@@ -838,7 +847,7 @@ tests/models/hestia/test_freshWater.py,sha256=v2UD69csKrniKP3MXkOEHxQeE6O3-lvIVi
838
847
  tests/models/hestia/test_histosol.py,sha256=7g-3wQPZok2O8mExcnKZxO_T2Ye_h3UHv3HG3Kn8orM,888
839
848
  tests/models/hestia/test_inorganicFertiliser.py,sha256=v2Zs1Ig-ChOaq9gXuurcBt12izkH2bRUUuzW6rh3rqQ,643
840
849
  tests/models/hestia/test_irrigatedTypeUnspecified.py,sha256=bluZADFagxfXW4QyI0CIJzG97D2V33w333Z9Vwjqo0M,2015
841
- tests/models/hestia/test_landCover.py,sha256=XwzHCbJQt-jBpCnXcWLumTREyMNEEkUAuM2GViJl3iU,7492
850
+ tests/models/hestia/test_landCover.py,sha256=YLu-fttf0tGGT8IAPGo8BZDsSyRoW7f-JU8Ra0Pp-dA,7494
842
851
  tests/models/hestia/test_landTransformation100YearAverageDuringCycle.py,sha256=3qa4rWUFqP1VM5-vm_182rhiBYJDxPqJwWtBqJ5K028,956
843
852
  tests/models/hestia/test_landTransformation20YearAverageDuringCycle.py,sha256=bUByojQuVeuCfko1_2YtNJi1PT9yktHlcbPi_p-MPvk,1001
844
853
  tests/models/hestia/test_liveAnimal.py,sha256=3K9cL1fwr6LlBl1_D8zIaeCOuiExqkDEU7BXx1JK_dk,2139
@@ -915,7 +924,7 @@ tests/models/ipcc2019/test_belowGroundBiomass.py,sha256=Cu41RM63R-xti0qi_mLD0J5T
915
924
  tests/models/ipcc2019/test_belowGroundCropResidue.py,sha256=no71pfxgOhn_tEWc_EwuWvlKRtHFqlIqNIvnP7cj0Tc,2568
916
925
  tests/models/ipcc2019/test_biomass_utils.py,sha256=I2q4pDGAD0aY_kpZCMPJoC-KbRYxdzY1rhr4xtJFWIA,3592
917
926
  tests/models/ipcc2019/test_carbonContent.py,sha256=_GWF5nGy-PxiqBZ5V7W_sHMz75YRzmxr79R-sZZg7yk,4146
918
- tests/models/ipcc2019/test_ch4ToAirAquacultureSystems.py,sha256=o7bHOS4JkwexRrDhLzpfr8nyYCctgRL32YZbam5RBrI,1891
927
+ tests/models/ipcc2019/test_ch4ToAirAquacultureSystems.py,sha256=hG1zunH2gCeix8fxxkoGfl_I0GRyAcLbwEtwWVE9i5M,1925
919
928
  tests/models/ipcc2019/test_ch4ToAirEntericFermentation.py,sha256=nmmxxJFX_VFOgvNxmj4q825vVEtEq-B61DVNo3inirs,8567
920
929
  tests/models/ipcc2019/test_ch4ToAirExcreta.py,sha256=e58NXmBW2SNVLUqQO9A66Xq6jiGTyhdFZDZk51JApF8,2902
921
930
  tests/models/ipcc2019/test_ch4ToAirFloodedRice.py,sha256=YRyxNaGPAgsCJBRXhwhEsZ6r44dawHMSN-Qmi-yS0xI,1025
@@ -929,6 +938,7 @@ tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py,sha256=gPT_yy
929
938
  tests/models/ipcc2019/test_co2ToAirUreaHydrolysis.py,sha256=2u4_jtekmVzLTwKpNr1fVcAzgegm17Fh9h59JRXFpOM,1030
930
939
  tests/models/ipcc2019/test_croppingDuration.py,sha256=1oRW1QaEwQvBadyVhaDi-jlkjuNqodyAinl88TdPmiY,1879
931
940
  tests/models/ipcc2019/test_ligninContent.py,sha256=eIKEN__ab-0R52EhlhPSBiHnmTl6xOf1XbI33O-W9A4,4146
941
+ tests/models/ipcc2019/test_n2OToAirCropResidueBurningDirect.py,sha256=WPCv2DRfVjOb2uGwDvEkrIGlddO6kyuC5iQTA5bCUAE,1469
932
942
  tests/models/ipcc2019/test_n2OToAirCropResidueDecompositionDirect.py,sha256=vKbWQNZAGPtsqonM-Cc3n3hNitft0hcjn2TNrTFC1iY,2729
933
943
  tests/models/ipcc2019/test_n2OToAirCropResidueDecompositionIndirect.py,sha256=it2PVNYBNAvQWmWLDJ9Evjqtx7SJl-X0ZyQz3Fuvb3k,2119
934
944
  tests/models/ipcc2019/test_n2OToAirExcretaDirect.py,sha256=-ddwSZia_QQXSrCbIrv_uQMUO3X9_WNk2WtKF8gSYTM,1627
@@ -1203,6 +1213,7 @@ tests/models/utils/test_array_builders.py,sha256=4giHf3bTNd2ReAgcKinKjLpQOOcmfF0
1203
1213
  tests/models/utils/test_blank_node.py,sha256=F5pCV-5bKxqsrubjN1W-PACltBljF7z84_7lFBcDFJs,32871
1204
1214
  tests/models/utils/test_cache_sources.py,sha256=xcGMVbYoV23YC4HLBTL_4qZP1ME2cp3DFebgJMxI2TE,721
1205
1215
  tests/models/utils/test_crop.py,sha256=d508vQdtB_Q_6hEahNueXed5PaEiLeN7ScbwZIKCiDI,862
1216
+ tests/models/utils/test_cropResidue.py,sha256=jBHXQSAoeu0e59KuoQiYd_ZSiwwlTBSe8c-qRIANKbw,910
1206
1217
  tests/models/utils/test_cropResidueManagement.py,sha256=RQt8lexeJzCyxZceIutgDpw7BpcqmjsUB0C0yZC2QpY,930
1207
1218
  tests/models/utils/test_currency.py,sha256=BPsojPsY9QW2aj8vgbjkPQXU8GU6wDwwtPZ3HdC4KTU,277
1208
1219
  tests/models/utils/test_dataCompleteness.py,sha256=Dx3qRUfEW6xqXPdaitJBny8bkfE6rdZvRO9EynuaPMc,1727
@@ -1243,8 +1254,8 @@ tests/orchestrator/strategies/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
1243
1254
  tests/orchestrator/strategies/run/test_add_blank_node_if_missing.py,sha256=K4xg4UAXfNhSaLyknKVPO7MGBF44Z_gD7CuZ_pe28gU,3512
1244
1255
  tests/orchestrator/strategies/run/test_add_key_if_missing.py,sha256=hKwvk1ohcBVnQUCTiDhRW99J0xEa29BpwFi1KC0yWLE,329
1245
1256
  tests/orchestrator/strategies/run/test_always.py,sha256=w5-Dhp6yLzgZGAeMRz3OrqZbbAed9gZ1O266a3z9k7w,134
1246
- hestia_earth_models-0.72.2.dist-info/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
1247
- hestia_earth_models-0.72.2.dist-info/METADATA,sha256=q364RDPcHbLSGe6V7W4XVoLXCNPKe3HvGwISTBgWfIg,4045
1248
- hestia_earth_models-0.72.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1249
- hestia_earth_models-0.72.2.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
1250
- hestia_earth_models-0.72.2.dist-info/RECORD,,
1257
+ hestia_earth_models-0.73.0.dist-info/LICENSE,sha256=TD25LoiRJsA5CPUNrcyt1PXlGcbUGFMAeZoBcfCrCNE,1154
1258
+ hestia_earth_models-0.73.0.dist-info/METADATA,sha256=OFEDflzVeE8N4CAJRyBDBZi2scLUFQd8Vx2lqji16zI,4045
1259
+ hestia_earth_models-0.73.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
1260
+ hestia_earth_models-0.73.0.dist-info/top_level.txt,sha256=1dqA9TqpOLTEgpqa-YBsmbCmmNU1y56AtfFGEceZ2A0,19
1261
+ hestia_earth_models-0.73.0.dist-info/RECORD,,