hestia-earth-models 0.73.7__py3-none-any.whl → 0.73.8__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 (62) hide show
  1. hestia_earth/models/config/Cycle.json +116 -26
  2. hestia_earth/models/config/ImpactAssessment.json +239 -199
  3. hestia_earth/models/dammgen2009/noxToAirExcreta.py +11 -9
  4. hestia_earth/models/ecoalimV9/cycle.py +29 -39
  5. hestia_earth/models/ecoalimV9/impact_assessment.py +38 -40
  6. hestia_earth/models/ecoalimV9/utils.py +82 -16
  7. hestia_earth/models/ecoinventV3/__init__.py +3 -3
  8. hestia_earth/models/emepEea2019/n2OToAirFuelCombustionDirect.py +2 -2
  9. hestia_earth/models/hestia/default_emissions.py +2 -6
  10. hestia_earth/models/hestia/default_resourceUse.py +2 -5
  11. hestia_earth/models/hestia/seed_emissions.py +7 -3
  12. hestia_earth/models/impact_assessment/emissions.py +3 -5
  13. hestia_earth/models/ipcc2019/biocharOrganicCarbonPerHa.py +9 -3
  14. hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py +1 -5
  15. hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py +1 -5
  16. hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py +1 -33
  17. hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py +1 -5
  18. hestia_earth/models/ipcc2019/n2OToAirAquacultureSystemsIndirect.py +44 -0
  19. hestia_earth/models/ipcc2019/n2OToAirCropResidueBurningIndirect.py +43 -0
  20. hestia_earth/models/ipcc2019/n2OToAirCropResidueDecompositionIndirect.py +13 -70
  21. hestia_earth/models/ipcc2019/n2OToAirExcretaIndirect.py +13 -70
  22. hestia_earth/models/ipcc2019/n2OToAirFuelCombustionIndirect.py +43 -0
  23. hestia_earth/models/ipcc2019/n2OToAirInorganicFertiliserIndirect.py +13 -70
  24. hestia_earth/models/ipcc2019/n2OToAirNaturalVegetationBurningIndirect.py +43 -0
  25. hestia_earth/models/ipcc2019/n2OToAirOrganicFertiliserIndirect.py +13 -70
  26. hestia_earth/models/ipcc2019/n2OToAirOrganicSoilBurningIndirect.py +43 -0
  27. hestia_earth/models/ipcc2019/n2OToAirOrganicSoilCultivationIndirect.py +43 -0
  28. hestia_earth/models/ipcc2019/n2OToAir_indirect_emissions_utils.py +112 -0
  29. hestia_earth/models/ipcc2019/utils.py +0 -25
  30. hestia_earth/models/jarvisAndPain1994/n2ToAirExcreta.py +11 -9
  31. hestia_earth/models/linkedImpactAssessment/emissions.py +24 -15
  32. hestia_earth/models/linkedImpactAssessment/utils.py +5 -1
  33. hestia_earth/models/mocking/search-results.json +354 -354
  34. hestia_earth/models/utils/background_emissions.py +17 -10
  35. hestia_earth/models/utils/emission.py +18 -8
  36. hestia_earth/models/utils/impact_assessment.py +3 -3
  37. hestia_earth/models/utils/indicator.py +8 -1
  38. hestia_earth/models/utils/lookup.py +29 -17
  39. hestia_earth/models/utils/productivity.py +1 -1
  40. hestia_earth/models/version.py +1 -1
  41. hestia_earth/orchestrator/strategies/merge/merge_list.py +41 -54
  42. {hestia_earth_models-0.73.7.dist-info → hestia_earth_models-0.73.8.dist-info}/METADATA +3 -3
  43. {hestia_earth_models-0.73.7.dist-info → hestia_earth_models-0.73.8.dist-info}/RECORD +62 -47
  44. tests/models/dammgen2009/test_noxToAirExcreta.py +2 -2
  45. tests/models/ecoalimV9/test_cycle.py +1 -1
  46. tests/models/ecoalimV9/test_impact_assessment.py +1 -1
  47. tests/models/ecoalimV9/test_utils.py +13 -0
  48. tests/models/ipcc2019/test_biocharOrganicCarbonPerHa.py +2 -1
  49. tests/models/ipcc2019/test_n2OToAirAquacultureSystemsIndirect.py +45 -0
  50. tests/models/ipcc2019/test_n2OToAirCropResidueBurningIndirect.py +45 -0
  51. tests/models/ipcc2019/test_n2OToAirCropResidueDecompositionIndirect.py +6 -32
  52. tests/models/ipcc2019/test_n2OToAirExcretaIndirect.py +6 -32
  53. tests/models/ipcc2019/test_n2OToAirFuelCombustionIndirect.py +45 -0
  54. tests/models/ipcc2019/test_n2OToAirInorganicFertiliserIndirect.py +6 -32
  55. tests/models/ipcc2019/test_n2OToAirNaturalVegetationBurningIndirect.py +45 -0
  56. tests/models/ipcc2019/test_n2OToAirOrganicFertiliserIndirect.py +6 -32
  57. tests/models/ipcc2019/test_n2OToAirOrganicSoilBurningIndirect.py +45 -0
  58. tests/models/ipcc2019/test_n2OToAirOrganicSoilCultivationIndirect.py +45 -0
  59. tests/models/ipcc2019/test_n2OToAir_indirect_emissions_utils.py +19 -0
  60. {hestia_earth_models-0.73.7.dist-info → hestia_earth_models-0.73.8.dist-info}/LICENSE +0 -0
  61. {hestia_earth_models-0.73.7.dist-info → hestia_earth_models-0.73.8.dist-info}/WHEEL +0 -0
  62. {hestia_earth_models-0.73.7.dist-info → hestia_earth_models-0.73.8.dist-info}/top_level.txt +0 -0
@@ -2080,8 +2080,8 @@
2080
2080
  [
2081
2081
  {
2082
2082
  "key": "emissions",
2083
- "model": "ipcc2019",
2084
- "value": "n2OToAirInorganicFertiliserIndirect",
2083
+ "model": "pooreNemecek2018",
2084
+ "value": "noxToAirAquacultureSystems",
2085
2085
  "runStrategy": "add_blank_node_if_missing",
2086
2086
  "runArgs": {
2087
2087
  "runNonMeasured": true,
@@ -2095,8 +2095,8 @@
2095
2095
  },
2096
2096
  {
2097
2097
  "key": "emissions",
2098
- "model": "jarvisAndPain1994",
2099
- "value": "n2ToAirExcreta",
2098
+ "model": "pooreNemecek2018",
2099
+ "value": "nh3ToAirAquacultureSystems",
2100
2100
  "runStrategy": "add_blank_node_if_missing",
2101
2101
  "runArgs": {
2102
2102
  "runNonMeasured": true,
@@ -2107,24 +2107,11 @@
2107
2107
  "replaceThreshold": ["value", 0.01]
2108
2108
  },
2109
2109
  "stage": 2
2110
- }
2111
- ],
2112
- {
2113
- "key": "emissions",
2114
- "model": "emissionNotRelevant",
2115
- "value": "all",
2116
- "runStrategy": "always",
2117
- "mergeStrategy": "list",
2118
- "mergeArgs": {
2119
- "replaceLowerTier": true
2120
2110
  },
2121
- "stage": 2
2122
- },
2123
- [
2124
2111
  {
2125
2112
  "key": "emissions",
2126
2113
  "model": "pooreNemecek2018",
2127
- "value": "noxToAirAquacultureSystems",
2114
+ "value": "n2ToAirAquacultureSystems",
2128
2115
  "runStrategy": "add_blank_node_if_missing",
2129
2116
  "runArgs": {
2130
2117
  "runNonMeasured": true,
@@ -2139,7 +2126,7 @@
2139
2126
  {
2140
2127
  "key": "emissions",
2141
2128
  "model": "pooreNemecek2018",
2142
- "value": "nh3ToAirAquacultureSystems",
2129
+ "value": "n2OToAirAquacultureSystemsDirect",
2143
2130
  "runStrategy": "add_blank_node_if_missing",
2144
2131
  "runArgs": {
2145
2132
  "runNonMeasured": true,
@@ -2154,7 +2141,7 @@
2154
2141
  {
2155
2142
  "key": "emissions",
2156
2143
  "model": "pooreNemecek2018",
2157
- "value": "n2ToAirAquacultureSystems",
2144
+ "value": "ch4ToAirAquacultureSystems",
2158
2145
  "runStrategy": "add_blank_node_if_missing",
2159
2146
  "runArgs": {
2160
2147
  "runNonMeasured": true,
@@ -2168,8 +2155,25 @@
2168
2155
  },
2169
2156
  {
2170
2157
  "key": "emissions",
2171
- "model": "pooreNemecek2018",
2172
- "value": "n2OToAirAquacultureSystemsDirect",
2158
+ "model": "hestia",
2159
+ "value": "pToSurfaceWaterAquacultureSystems",
2160
+ "runStrategy": "add_blank_node_if_missing",
2161
+ "runArgs": {
2162
+ "runNonMeasured": true,
2163
+ "runNonAddedTerm": true
2164
+ },
2165
+ "mergeStrategy": "list",
2166
+ "mergeArgs": {
2167
+ "replaceThreshold": ["value", 0.01]
2168
+ },
2169
+ "stage": 2
2170
+ }
2171
+ ],
2172
+ [
2173
+ {
2174
+ "key": "emissions",
2175
+ "model": "ipcc2019",
2176
+ "value": "n2OToAirInorganicFertiliserIndirect",
2173
2177
  "runStrategy": "add_blank_node_if_missing",
2174
2178
  "runArgs": {
2175
2179
  "runNonMeasured": true,
@@ -2183,8 +2187,8 @@
2183
2187
  },
2184
2188
  {
2185
2189
  "key": "emissions",
2186
- "model": "pooreNemecek2018",
2187
- "value": "ch4ToAirAquacultureSystems",
2190
+ "model": "ipcc2019",
2191
+ "value": "n2OToAirAquacultureSystemsIndirect",
2188
2192
  "runStrategy": "add_blank_node_if_missing",
2189
2193
  "runArgs": {
2190
2194
  "runNonMeasured": true,
@@ -2198,8 +2202,83 @@
2198
2202
  },
2199
2203
  {
2200
2204
  "key": "emissions",
2201
- "model": "hestia",
2202
- "value": "pToSurfaceWaterAquacultureSystems",
2205
+ "model": "ipcc2019",
2206
+ "value": "n2OToAirCropResidueBurningIndirect",
2207
+ "runStrategy": "add_blank_node_if_missing",
2208
+ "runArgs": {
2209
+ "runNonMeasured": true,
2210
+ "runNonAddedTerm": true
2211
+ },
2212
+ "mergeStrategy": "list",
2213
+ "mergeArgs": {
2214
+ "replaceThreshold": ["value", 0.01]
2215
+ },
2216
+ "stage": 2
2217
+ },
2218
+ {
2219
+ "key": "emissions",
2220
+ "model": "ipcc2019",
2221
+ "value": "n2OToAirFuelCombustionIndirect",
2222
+ "runStrategy": "add_blank_node_if_missing",
2223
+ "runArgs": {
2224
+ "runNonMeasured": true,
2225
+ "runNonAddedTerm": true
2226
+ },
2227
+ "mergeStrategy": "list",
2228
+ "mergeArgs": {
2229
+ "replaceThreshold": ["value", 0.01]
2230
+ },
2231
+ "stage": 2
2232
+ },
2233
+ {
2234
+ "key": "emissions",
2235
+ "model": "ipcc2019",
2236
+ "value": "n2OToAirNaturalVegetationBurningIndirect",
2237
+ "runStrategy": "add_blank_node_if_missing",
2238
+ "runArgs": {
2239
+ "runNonMeasured": true,
2240
+ "runNonAddedTerm": true
2241
+ },
2242
+ "mergeStrategy": "list",
2243
+ "mergeArgs": {
2244
+ "replaceThreshold": ["value", 0.01]
2245
+ },
2246
+ "stage": 2
2247
+ },
2248
+ {
2249
+ "key": "emissions",
2250
+ "model": "ipcc2019",
2251
+ "value": "n2OToAirOrganicSoilBurningIndirect",
2252
+ "runStrategy": "add_blank_node_if_missing",
2253
+ "runArgs": {
2254
+ "runNonMeasured": true,
2255
+ "runNonAddedTerm": true
2256
+ },
2257
+ "mergeStrategy": "list",
2258
+ "mergeArgs": {
2259
+ "replaceThreshold": ["value", 0.01]
2260
+ },
2261
+ "stage": 2
2262
+ },
2263
+ {
2264
+ "key": "emissions",
2265
+ "model": "ipcc2019",
2266
+ "value": "n2OToAirOrganicSoilCultivationIndirect",
2267
+ "runStrategy": "add_blank_node_if_missing",
2268
+ "runArgs": {
2269
+ "runNonMeasured": true,
2270
+ "runNonAddedTerm": true
2271
+ },
2272
+ "mergeStrategy": "list",
2273
+ "mergeArgs": {
2274
+ "replaceThreshold": ["value", 0.01]
2275
+ },
2276
+ "stage": 2
2277
+ },
2278
+ {
2279
+ "key": "emissions",
2280
+ "model": "jarvisAndPain1994",
2281
+ "value": "n2ToAirExcreta",
2203
2282
  "runStrategy": "add_blank_node_if_missing",
2204
2283
  "runArgs": {
2205
2284
  "runNonMeasured": true,
@@ -2212,6 +2291,17 @@
2212
2291
  "stage": 2
2213
2292
  }
2214
2293
  ],
2294
+ {
2295
+ "key": "emissions",
2296
+ "model": "emissionNotRelevant",
2297
+ "value": "all",
2298
+ "runStrategy": "always",
2299
+ "mergeStrategy": "list",
2300
+ "mergeArgs": {
2301
+ "replaceLowerTier": true
2302
+ },
2303
+ "stage": 2
2304
+ },
2215
2305
  {
2216
2306
  "key": "products",
2217
2307
  "model": "transformation",