@hestia-earth/data-api 0.0.2-1

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 (106) hide show
  1. package/.dockerignore +25 -0
  2. package/.env.test +7 -0
  3. package/.eslintignore +7 -0
  4. package/.eslintrc.js +11 -0
  5. package/.gitlab-ci.yml +125 -0
  6. package/.mocharc.js +8 -0
  7. package/.nvrm +1 -0
  8. package/.nycrc +15 -0
  9. package/Dockerfile +17 -0
  10. package/cleanup-docker.sh +4 -0
  11. package/commitlint.config.js +1 -0
  12. package/database/index.ts +76 -0
  13. package/database/migrations/001.do.init.sql +53 -0
  14. package/database/migrations/002.do.add-aggregated-sites.sql +16 -0
  15. package/database/migrations/003.do.add-generated-period-cols.sql +7 -0
  16. package/database/migrations/index.ts +36 -0
  17. package/database/seed/common.ts +7 -0
  18. package/database/seed/index.ts +55 -0
  19. package/database/seed/local/index.ts +28 -0
  20. package/database/seed/production/index.ts +3 -0
  21. package/database/seed/staging/index.ts +5 -0
  22. package/database/seed/test/index.ts +28 -0
  23. package/dev.ts +3 -0
  24. package/dist/aggregated-nodes/model/index.d.ts +25 -0
  25. package/dist/aggregated-nodes/model/index.js +11 -0
  26. package/dist/models.d.ts +1 -0
  27. package/dist/models.js +17 -0
  28. package/docker-compose.yml +42 -0
  29. package/envs/.master.env +7 -0
  30. package/envs/.staging.env +7 -0
  31. package/index.js +3 -0
  32. package/package.json +105 -0
  33. package/run-docker.sh +14 -0
  34. package/run-test.sh +5 -0
  35. package/scripts/run-lambda.ts +10 -0
  36. package/scripts/run-migrations.ts +18 -0
  37. package/scripts/run-resetdb.ts +18 -0
  38. package/scripts/run-seed.ts +18 -0
  39. package/serverless.yml +76 -0
  40. package/src/aggregated-nodes/model/index.ts +37 -0
  41. package/src/aggregated-nodes/routes/pg-get-filters.ts +44 -0
  42. package/src/aggregated-nodes/routes/pg-get.ts +50 -0
  43. package/src/aggregated-nodes/routes.spec.ts +242 -0
  44. package/src/aggregated-nodes/routes.ts +56 -0
  45. package/src/aggregated-nodes/services/pg-get-filters.ts +52 -0
  46. package/src/aggregated-nodes/services/pg-get.ts +77 -0
  47. package/src/app.spec.ts +34 -0
  48. package/src/app.ts +59 -0
  49. package/src/config.ts +21 -0
  50. package/src/cors.spec.ts +32 -0
  51. package/src/cors.ts +7 -0
  52. package/src/errors.spec.ts +114 -0
  53. package/src/errors.ts +121 -0
  54. package/src/index.spec.ts +94 -0
  55. package/src/index.ts +14 -0
  56. package/src/lambdas/sentry.ts +12 -0
  57. package/src/lambdas/update-aggregated-nodes/handler.spec.ts +86 -0
  58. package/src/lambdas/update-aggregated-nodes/handler.ts +141 -0
  59. package/src/logger.spec.ts +20 -0
  60. package/src/logger.ts +45 -0
  61. package/src/maintenance.spec.ts +76 -0
  62. package/src/maintenance.ts +19 -0
  63. package/src/models.ts +1 -0
  64. package/src/routes.spec.ts +33 -0
  65. package/src/routes.ts +9 -0
  66. package/src/settings/model/index.ts +21 -0
  67. package/src/settings/routes/get.spec.ts +33 -0
  68. package/src/settings/routes/get.ts +3 -0
  69. package/src/settings/routes/update.spec.ts +33 -0
  70. package/src/settings/routes/update.ts +5 -0
  71. package/src/settings/routes.spec.ts +75 -0
  72. package/src/settings/routes.ts +21 -0
  73. package/src/settings/services/get.spec.ts +62 -0
  74. package/src/settings/services/get.ts +18 -0
  75. package/src/settings/services/update.spec.ts +118 -0
  76. package/src/settings/services/update.ts +47 -0
  77. package/src/slack.spec.ts +42 -0
  78. package/src/slack.ts +17 -0
  79. package/src/swagger/routes.ts +57 -0
  80. package/src/types/async-express-errors/index.d.ts +1 -0
  81. package/src/types/express/index.d.ts +10 -0
  82. package/src/utils/endpoint-wrapper.spec.ts +80 -0
  83. package/src/utils/endpoint-wrapper.ts +16 -0
  84. package/src/utils/middleware.spec.ts +154 -0
  85. package/src/utils/middleware.ts +33 -0
  86. package/test/Dockerfile +13 -0
  87. package/test/docker-compose.yml +40 -0
  88. package/test/fixtures/aggregated-nodes/get.ts +184 -0
  89. package/test/fixtures/update-aggregated-nodes/abyssinianKaleSeedWhole-cycle_pivoted.csv +5 -0
  90. package/test/fixtures/update-aggregated-nodes/abyssinianKaleSeedWhole-cycle_pivoted.csv.cycle.json +458 -0
  91. package/test/fixtures/update-aggregated-nodes/abyssinianKaleSeedWhole-cycle_pivoted.csv.site.json +182 -0
  92. package/test/fixtures/update-aggregated-nodes/abyssinianKaleSeedWhole-impactassessment_pivoted.csv +3 -0
  93. package/test/fixtures/update-aggregated-nodes/abyssinianKaleSeedWhole-impactassessment_pivoted.csv.impactAssessment.json +988 -0
  94. package/test/fixtures/update-aggregated-nodes/abyssinianKaleStraw-impactassessment_pivoted.csv +3 -0
  95. package/test/fixtures/update-aggregated-nodes/cycle-missing-impactassessment_pivoted.csv +3 -0
  96. package/test/fixtures/update-aggregated-nodes/tomatoFruit-cycle_pivoted.csv +5 -0
  97. package/test/fixtures/update-aggregated-nodes/tomatoFruit-cycle_pivoted.csv.cycle.json +584 -0
  98. package/test/fixtures/update-aggregated-nodes/tomatoFruit-cycle_pivoted.csv.site.json +212 -0
  99. package/test/fixtures/update-aggregated-nodes/tomatoFruit-impactassessment_pivoted.csv +3 -0
  100. package/test/fixtures/update-aggregated-nodes/tomatoFruit-impactassessment_pivoted.csv.impactAssessment.json +1002 -0
  101. package/test/prepare.ts +15 -0
  102. package/test/utils.ts +33 -0
  103. package/tsconfig.build.json +13 -0
  104. package/tsconfig.dist.json +14 -0
  105. package/tsconfig.json +37 -0
  106. package/tsconfig.lambdas.json +13 -0
@@ -0,0 +1,988 @@
1
+ [
2
+ {
3
+ "@id": "abyssinianKaleSeedWhole-poland-conventional-non-irrigated-2010-2019",
4
+ "startDate": 2010,
5
+ "endDate": 2019,
6
+ "product": {
7
+ "term": {
8
+ "termType": "crop",
9
+ "name": "Abyssinian kale, seed (whole)",
10
+ "units": "kg",
11
+ "@id": "abyssinianKaleSeedWhole"
12
+ },
13
+ "variety": "Crambe Galactica",
14
+ "value": 1283.3333333333333,
15
+ "price": 0.60291,
16
+ "currency": "EUR",
17
+ "primary": true,
18
+ "economicValueShare": 86.32519430237608,
19
+ "added": "economicValueShare",
20
+ "addedVersion": "0.47.0",
21
+ "properties": {
22
+ "ashContent": {
23
+ "value": 4.07
24
+ },
25
+ "carbonContent": {
26
+ "value": 64.05
27
+ },
28
+ "dryMatter": {
29
+ "value": 89.93
30
+ },
31
+ "energyContentHigherHeatingValue": {
32
+ "value": 26.55
33
+ },
34
+ "energyContentLowerHeatingValue": {
35
+ "value": 23.63
36
+ },
37
+ "fatContent": {
38
+ "value": 36.3
39
+ },
40
+ "nitrogenContent": {
41
+ "value": 4.06
42
+ },
43
+ "sulphurContent": {
44
+ "value": 0.78
45
+ },
46
+ "volatileSolidsContent": {
47
+ "value": 79.13
48
+ }
49
+ }
50
+ },
51
+ "functionalUnitQuantity": 1,
52
+ "allocationMethod": "none",
53
+ "organic": false,
54
+ "irrigated": false,
55
+ "dataPrivate": false,
56
+ "country": {
57
+ "@id": "GADM-POL",
58
+ "name": "Poland"
59
+ },
60
+ "aggregated": true,
61
+ "aggregatedVersion": "0.15.1",
62
+ "name": "Abyssinian kale, seed (whole) - Poland - Conventional, Non Irrigated - 2010-2019",
63
+ "cycle": {
64
+ "@id": "abyssinianKaleSeedWhole-poland-conventional-non-irrigated-2010-2019"
65
+ },
66
+ "aggregatedQualityScore": 2,
67
+ "site": {
68
+ "@id": "abyssinianKaleSeedWhole-poland-conventional-non-irrigated-2010-2019"
69
+ },
70
+ "source": {
71
+ "@id": "pu2wmwp8yfv7",
72
+ "name": "Hestia Team (2023)"
73
+ },
74
+ "emissionsResourceUse": {
75
+ "112TrichlorotrifluoroethaneToAirInputsProduction": {
76
+ "value": 2.9240048377109466e-11
77
+ },
78
+ "11DichlorotetrafluoroethaneToAirInputsProduction": {
79
+ "value": 5.898126052406635e-10
80
+ },
81
+ "bod5ToWaterIndustrialProcesses": {
82
+ "value": 0
83
+ },
84
+ "bod5ToWaterInputsProduction": {
85
+ "value": 0
86
+ },
87
+ "bromochlorodifluoromethaneToAirInputsProduction": {
88
+ "value": 7.980207204071586e-10
89
+ },
90
+ "ch4ToAirAquacultureSystems": {
91
+ "value": 0
92
+ },
93
+ "ch4ToAirEntericFermentation": {
94
+ "value": 0
95
+ },
96
+ "ch4ToAirFloodedRice": {
97
+ "value": 0
98
+ },
99
+ "ch4ToAirInputsProductionFossil": {
100
+ "value": 0.0003751901661717
101
+ },
102
+ "ch4ToAirInputsProductionNonFossil": {
103
+ "value": 0.0000029376907608
104
+ },
105
+ "chlorodifluoromethaneToAirInputsProduction": {
106
+ "value": 4.713822438171623e-9
107
+ },
108
+ "co2ToAirFuelCombustion": {
109
+ "value": 0.1335028326057408
110
+ },
111
+ "co2ToAirInputsProduction": {
112
+ "value": 0.3322412166640929
113
+ },
114
+ "co2ToAirLimeHydrolysis": {
115
+ "value": 0
116
+ },
117
+ "co2ToAirOrganicSoilCultivation": {
118
+ "value": 0
119
+ },
120
+ "co2ToAirSoilCarbonStockChange": {
121
+ "value": -0.0169416012231477
122
+ },
123
+ "co2ToAirUreaHydrolysis": {
124
+ "value": 0
125
+ },
126
+ "codToWaterIndustrialProcesses": {
127
+ "value": 0
128
+ },
129
+ "codToWaterInputsProduction": {
130
+ "value": 0
131
+ },
132
+ "dichlorodifluoromethaneToAirInputsProduction": {
133
+ "value": 1.5957654797569734e-9
134
+ },
135
+ "freshwaterWithdrawalsInputsProduction": {
136
+ "value": 0.1101011786185712
137
+ },
138
+ "h2SToAirIndustrialProcesses": {
139
+ "value": 0
140
+ },
141
+ "h2SToAirInputsProduction": {
142
+ "value": 0
143
+ },
144
+ "hexaneToAirIndustrialProcesses": {
145
+ "value": 0
146
+ },
147
+ "hexaneToAirInputsProduction": {
148
+ "value": 0
149
+ },
150
+ "landOccupationDuringCycle": {
151
+ "value": 3.222843005219579
152
+ },
153
+ "landOccupationInputsProduction": {
154
+ "value": 0.2349201787710244
155
+ },
156
+ "landTransformationFromForest100YearAverageDuringCycle": {
157
+ "value": 0
158
+ },
159
+ "landTransformationFromForest100YearAverageInputsProduction": {
160
+ "value": 0.0392888602520565
161
+ },
162
+ "landTransformationFromForest20YearAverageDuringCycle": {
163
+ "value": 0
164
+ },
165
+ "landTransformationFromForest20YearAverageInputsProduction": {
166
+ "value": 0.0831346038122082
167
+ },
168
+ "landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle": {
169
+ "value": 0
170
+ },
171
+ "landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction": {
172
+ "value": 0.0126053529578672
173
+ },
174
+ "landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle": {
175
+ "value": 0
176
+ },
177
+ "landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction": {
178
+ "value": 0.0132620141577369
179
+ },
180
+ "landTransformationFromPermanentPasture100YearAverageDuringCycle": {
181
+ "value": 0.0210984384189601
182
+ },
183
+ "landTransformationFromPermanentPasture100YearAverageInputsProduction": {
184
+ "value": 0.0000074980872637
185
+ },
186
+ "landTransformationFromPermanentPasture20YearAverageDuringCycle": {
187
+ "value": 0
188
+ },
189
+ "landTransformationFromPermanentPasture20YearAverageInputsProduction": {
190
+ "value": 0.0000113357059693
191
+ },
192
+ "n2OToAirAquacultureSystemsDirect": {
193
+ "value": 0
194
+ },
195
+ "n2OToAirAquacultureSystemsIndirect": {
196
+ "value": 0
197
+ },
198
+ "n2OToAirCropResidueDecompositionDirect": {
199
+ "value": 0
200
+ },
201
+ "n2OToAirExcretaDirect": {
202
+ "value": 0
203
+ },
204
+ "n2OToAirExcretaIndirect": {
205
+ "value": 0
206
+ },
207
+ "n2OToAirFuelCombustionDirect": {
208
+ "value": 0.0000057275663199
209
+ },
210
+ "n2OToAirInorganicFertiliserDirect": {
211
+ "value": 0.0011411395141912
212
+ },
213
+ "n2OToAirInorganicFertiliserIndirect": {
214
+ "value": 0.0002661575364877
215
+ },
216
+ "n2OToAirInputsProduction": {
217
+ "value": 0.0007797453003926
218
+ },
219
+ "n2OToAirOrganicFertiliserDirect": {
220
+ "value": 0.0002738734834058
221
+ },
222
+ "n2OToAirOrganicFertiliserIndirect": {
223
+ "value": 0.0001110132992124
224
+ },
225
+ "n2OToAirOrganicSoilCultivationDirect": {
226
+ "value": 0
227
+ },
228
+ "n2ToAirAquacultureSystems": {
229
+ "value": 0
230
+ },
231
+ "nErosionInputsProduction": {
232
+ "value": 0.0004513857490856
233
+ },
234
+ "nErosionSoilFlux": {
235
+ "value": 0.0005122115223812
236
+ },
237
+ "nToSurfaceWaterAquacultureSystems": {
238
+ "value": 0
239
+ },
240
+ "nToSurfaceWaterInputsProduction": {
241
+ "value": 0
242
+ },
243
+ "nh3ToAirAquacultureSystems": {
244
+ "value": 0
245
+ },
246
+ "nh3ToAirInorganicFertiliser": {
247
+ "value": 0.0010391069497306
248
+ },
249
+ "nh3ToAirInputsProduction": {
250
+ "value": 0.0002629720862235
251
+ },
252
+ "nh3ToAirOrganicFertiliser": {
253
+ "value": 0
254
+ },
255
+ "nh4ToGroundwaterInputsProduction": {
256
+ "value": 0
257
+ },
258
+ "nh4ToSurfaceWaterAquacultureSystems": {
259
+ "value": 0
260
+ },
261
+ "nh4ToSurfaceWaterInputsProduction": {
262
+ "value": 0
263
+ },
264
+ "nmvocToAirAnimalHousing": {
265
+ "value": 0
266
+ },
267
+ "nmvocToAirInputsProduction": {
268
+ "value": 0
269
+ },
270
+ "nmvocToAirSilageFeeding": {
271
+ "value": 0
272
+ },
273
+ "no3ToGroundwaterInputsProduction": {
274
+ "value": 0
275
+ },
276
+ "no3ToSurfaceWaterAquacultureSystems": {
277
+ "value": 0
278
+ },
279
+ "no3ToSurfaceWaterIndustrialProcesses": {
280
+ "value": 0
281
+ },
282
+ "no3ToSurfaceWaterInputsProduction": {
283
+ "value": 0
284
+ },
285
+ "noToAirAquacultureSystems": {
286
+ "value": 0
287
+ },
288
+ "noToAirInputsProduction": {
289
+ "value": 0
290
+ },
291
+ "noxToAirAquacultureSystems": {
292
+ "value": 0
293
+ },
294
+ "noxToAirCropResidueDecomposition": {
295
+ "value": 0
296
+ },
297
+ "noxToAirExcreta": {
298
+ "value": 0
299
+ },
300
+ "noxToAirFuelCombustion": {
301
+ "value": 0.0013741526577579
302
+ },
303
+ "noxToAirInorganicFertiliser": {
304
+ "value": 0.0010701483379491
305
+ },
306
+ "noxToAirInputsProduction": {
307
+ "value": 0.0007558895358518
308
+ },
309
+ "noxToAirOrganicFertiliser": {
310
+ "value": 0.0002568356011077
311
+ },
312
+ "pErosionInputsProduction": {
313
+ "value": 0.0001085994743523
314
+ },
315
+ "pErosionSoilFlux": {
316
+ "value": 0.0000389664246875
317
+ },
318
+ "pToDrainageWaterInputsProduction": {
319
+ "value": 0.0000097482638811
320
+ },
321
+ "pToDrainageWaterSoilFlux": {
322
+ "value": 0
323
+ },
324
+ "pToGroundwaterInputsProduction": {
325
+ "value": 5.88006180825771e-9
326
+ },
327
+ "pToGroundwaterSoilFlux": {
328
+ "value": 0.000048491657654
329
+ },
330
+ "pToSurfaceWaterAquacultureSystems": {
331
+ "value": 0
332
+ },
333
+ "pToSurfaceWaterInputsProduction": {
334
+ "value": 0.0000231365409034
335
+ },
336
+ "pToSurfaceWaterSoilFlux": {
337
+ "value": 0
338
+ },
339
+ "pm10ToAirAnimalHousing": {
340
+ "value": 0
341
+ },
342
+ "pm10ToAirInputsProduction": {
343
+ "value": 0
344
+ },
345
+ "pm25ToAirAnimalHousing": {
346
+ "value": 0
347
+ },
348
+ "pm25ToAirInputsProduction": {
349
+ "value": 0
350
+ },
351
+ "po43ToSurfaceWaterAquacultureSystems": {
352
+ "value": 0
353
+ },
354
+ "po43ToSurfaceWaterInputsProduction": {
355
+ "value": 0
356
+ },
357
+ "so2ToAirFuelCombustion": {
358
+ "value": 0.0000842289164704
359
+ },
360
+ "so2ToAirInputsProduction": {
361
+ "value": 0.0007598166544714
362
+ }
363
+ },
364
+ "endpoints": {
365
+ "damageToFreshwaterEcosystemsPdfYear": {
366
+ "value": 0.0266755329579373
367
+ },
368
+ "damageToFreshwaterEcosystemsSpeciesYear": {
369
+ "value": 1.5428850103267146e-10
370
+ },
371
+ "damageToHumanHealth": {
372
+ "value": 1.2607681289108957e-8
373
+ },
374
+ "damageToMarineEcosystemsPdfYear": {
375
+ "value": 0.0008874041251739
376
+ },
377
+ "damageToMarineEcosystemsSpeciesYear": {
378
+ "value": 1.5711702263180473e-12
379
+ },
380
+ "damageToTerrestrialEcosystemsPdfYear": {
381
+ "value": 0.0266755329579996
382
+ },
383
+ "damageToTerrestrialEcosystemsSpeciesYear": {
384
+ "value": 1.4615177369931e-9
385
+ }
386
+ },
387
+ "impacts": {
388
+ "damageToFreshwaterEcosystemsClimateChange": {
389
+ "value": 3.2670681130167958e-15
390
+ },
391
+ "damageToFreshwaterEcosystemsFreshwaterEcotoxicity": {
392
+ "value": 0.026675532957934
393
+ },
394
+ "damageToFreshwaterEcosystemsFreshwaterEutrophication": {
395
+ "value": 8.356610816224178e-18
396
+ },
397
+ "damageToFreshwaterEcosystemsWaterStress": {
398
+ "value": 6.208737184540735e-20
399
+ },
400
+ "damageToHumanHealthClimateChange": {
401
+ "value": 0.0000083866451214
402
+ },
403
+ "damageToHumanHealthHumanToxicityNonCancerogenic": {
404
+ "value": 7.025573867115569e-10
405
+ },
406
+ "damageToHumanHealthParticulateMatterFormation": {
407
+ "value": 0.000001037231293
408
+ },
409
+ "damageToHumanHealthPhotochemicalOzoneFormation": {
410
+ "value": 6.222647038800092e-10
411
+ },
412
+ "damageToHumanHealthStratosphericOzoneDepletion": {
413
+ "value": 5.903929978302814e-8
414
+ },
415
+ "damageToHumanHealthWaterStress": {
416
+ "value": 3.9836602091608434e-13
417
+ },
418
+ "damageToMarineEcosystemsMarineEcotoxicity": {
419
+ "value": 0.0008874041251738
420
+ },
421
+ "damageToMarineEcosystemsMarineEutrophication": {
422
+ "value": 1.4229920343821943e-16
423
+ },
424
+ "damageToTerrestrialEcosystemsClimateChange": {
425
+ "value": 1.053759868481293e-14
426
+ },
427
+ "damageToTerrestrialEcosystemsLandOccupation": {
428
+ "value": 5.5117481340638313e-14
429
+ },
430
+ "damageToTerrestrialEcosystemsLandTransformation": {
431
+ "value": 0
432
+ },
433
+ "damageToTerrestrialEcosystemsPhotochemicalOzoneFormation": {
434
+ "value": 2.1779264635800322e-18
435
+ },
436
+ "damageToTerrestrialEcosystemsTerrestrialAcidification": {
437
+ "value": 1.0249288878918165e-19
438
+ },
439
+ "damageToTerrestrialEcosystemsTerrestrialEcotoxicity": {
440
+ "value": 0.026675532957934
441
+ },
442
+ "damageToTerrestrialEcosystemsTotalLandUseEffects": {
443
+ "value": 5.5117481340638313e-14
444
+ },
445
+ "ecosystemDamageOzoneFormation": {
446
+ "value": 0.0034570261326667
447
+ },
448
+ "eutrophicationPotentialExcludingFate": {
449
+ "value": 0.002706400841963
450
+ },
451
+ "eutrophicationPotentialIncludingFateAverageEurope": {
452
+ "value": 0.0097473712138033
453
+ },
454
+ "freshwaterAquaticEcotoxicityPotential14Dcbeq": {
455
+ "value": 0.000955727998663
456
+ },
457
+ "freshwaterEcotoxicityPotentialPaf": {
458
+ "value": 0.2001660871951407
459
+ },
460
+ "freshwaterEutrophicationPotential": {
461
+ "value": 0.0002289482415403
462
+ },
463
+ "gwp100": {
464
+ "value": 1.221
465
+ },
466
+ "humanDamageOzoneFormation": {
467
+ "value": 0.0034570261326667
468
+ },
469
+ "humanNonCarcinogenicToxicity": {
470
+ "value": 0.0227295057786568
471
+ },
472
+ "marineAquaticEcotoxicityPotential14Dcbeq": {
473
+ "value": 0.0001863083133579
474
+ },
475
+ "marineEutrophicationPotential": {
476
+ "value": 0.000912710502009
477
+ },
478
+ "ozoneDepletionPotential": {
479
+ "value": 0.0000180567940542
480
+ },
481
+ "terrestrialAcidificationPotential": {
482
+ "value": 0.0046406498891722
483
+ },
484
+ "terrestrialAcidificationPotentialExcludingFate": {
485
+ "value": 0.0057118724514026
486
+ },
487
+ "terrestrialAcidificationPotentialIncludingFateAverageEurope": {
488
+ "value": 0.0048246942089905
489
+ },
490
+ "terrestrialEcotoxicityPotential14Dcbeq": {
491
+ "value": 2.7845253837338704
492
+ }
493
+ }
494
+ },
495
+ {
496
+ "@id": "abyssinianKaleSeedWhole-poland-2010-2019",
497
+ "startDate": 2010,
498
+ "endDate": 2019,
499
+ "product": {
500
+ "term": {
501
+ "termType": "crop",
502
+ "name": "Abyssinian kale, seed (whole)",
503
+ "units": "kg",
504
+ "@id": "abyssinianKaleSeedWhole"
505
+ },
506
+ "variety": "Crambe Galactica",
507
+ "value": 1283.3333333333333,
508
+ "price": 0.60291,
509
+ "currency": "EUR",
510
+ "primary": true,
511
+ "economicValueShare": 86.32519430237608,
512
+ "added": "economicValueShare",
513
+ "addedVersion": "0.47.0",
514
+ "properties": {
515
+ "ashContent": {
516
+ "value": 4.07
517
+ },
518
+ "carbonContent": {
519
+ "value": 64.05
520
+ },
521
+ "dryMatter": {
522
+ "value": 89.93
523
+ },
524
+ "energyContentHigherHeatingValue": {
525
+ "value": 26.55
526
+ },
527
+ "energyContentLowerHeatingValue": {
528
+ "value": 23.63
529
+ },
530
+ "fatContent": {
531
+ "value": 36.3
532
+ },
533
+ "nitrogenContent": {
534
+ "value": 4.06
535
+ },
536
+ "sulphurContent": {
537
+ "value": 0.78
538
+ },
539
+ "volatileSolidsContent": {
540
+ "value": 79.13
541
+ }
542
+ }
543
+ },
544
+ "functionalUnitQuantity": 1,
545
+ "allocationMethod": "none",
546
+ "organic": false,
547
+ "irrigated": false,
548
+ "dataPrivate": false,
549
+ "country": {
550
+ "@id": "GADM-POL",
551
+ "name": "Poland"
552
+ },
553
+ "aggregated": true,
554
+ "aggregatedVersion": "0.15.1",
555
+ "name": "Abyssinian kale, seed (whole) - Poland - 2010-2019",
556
+ "cycle": {
557
+ "@id": "abyssinianKaleSeedWhole-poland-2010-2019"
558
+ },
559
+ "aggregatedQualityScore": 2,
560
+ "site": {
561
+ "@id": "abyssinianKaleSeedWhole-poland-2010-2019"
562
+ },
563
+ "source": {
564
+ "@id": "pu2wmwp8yfv7",
565
+ "name": "Hestia Team (2023)"
566
+ },
567
+ "emissionsResourceUse": {
568
+ "112TrichlorotrifluoroethaneToAirInputsProduction": {
569
+ "value": 2.9240048377109466e-11
570
+ },
571
+ "11DichlorotetrafluoroethaneToAirInputsProduction": {
572
+ "value": 5.898126052406635e-10
573
+ },
574
+ "bod5ToWaterIndustrialProcesses": {
575
+ "value": 0
576
+ },
577
+ "bod5ToWaterInputsProduction": {
578
+ "value": 0
579
+ },
580
+ "bromochlorodifluoromethaneToAirInputsProduction": {
581
+ "value": 7.980207204071586e-10
582
+ },
583
+ "ch4ToAirAquacultureSystems": {
584
+ "value": 0
585
+ },
586
+ "ch4ToAirEntericFermentation": {
587
+ "value": 0
588
+ },
589
+ "ch4ToAirFloodedRice": {
590
+ "value": 0
591
+ },
592
+ "ch4ToAirInputsProductionFossil": {
593
+ "value": 0.0003751901661717
594
+ },
595
+ "ch4ToAirInputsProductionNonFossil": {
596
+ "value": 0.0000029376907608
597
+ },
598
+ "chlorodifluoromethaneToAirInputsProduction": {
599
+ "value": 4.713822438171623e-9
600
+ },
601
+ "co2ToAirFuelCombustion": {
602
+ "value": 0.1335028326057408
603
+ },
604
+ "co2ToAirInputsProduction": {
605
+ "value": 0.3322412166640929
606
+ },
607
+ "co2ToAirLimeHydrolysis": {
608
+ "value": 0
609
+ },
610
+ "co2ToAirOrganicSoilCultivation": {
611
+ "value": 0
612
+ },
613
+ "co2ToAirSoilCarbonStockChange": {
614
+ "value": -0.0169416012231477
615
+ },
616
+ "co2ToAirUreaHydrolysis": {
617
+ "value": 0
618
+ },
619
+ "codToWaterIndustrialProcesses": {
620
+ "value": 0
621
+ },
622
+ "codToWaterInputsProduction": {
623
+ "value": 0
624
+ },
625
+ "dichlorodifluoromethaneToAirInputsProduction": {
626
+ "value": 1.5957654797569734e-9
627
+ },
628
+ "freshwaterWithdrawalsInputsProduction": {
629
+ "value": 0.1101011786185712
630
+ },
631
+ "h2SToAirIndustrialProcesses": {
632
+ "value": 0
633
+ },
634
+ "h2SToAirInputsProduction": {
635
+ "value": 0
636
+ },
637
+ "hexaneToAirIndustrialProcesses": {
638
+ "value": 0
639
+ },
640
+ "hexaneToAirInputsProduction": {
641
+ "value": 0
642
+ },
643
+ "landOccupationDuringCycle": {
644
+ "value": 3.222843005219579
645
+ },
646
+ "landOccupationInputsProduction": {
647
+ "value": 0.2349201787710244
648
+ },
649
+ "landTransformationFromForest100YearAverageDuringCycle": {
650
+ "value": 0
651
+ },
652
+ "landTransformationFromForest100YearAverageInputsProduction": {
653
+ "value": 0.0392888602520565
654
+ },
655
+ "landTransformationFromForest20YearAverageDuringCycle": {
656
+ "value": 0
657
+ },
658
+ "landTransformationFromForest20YearAverageInputsProduction": {
659
+ "value": 0.0831346038122082
660
+ },
661
+ "landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle": {
662
+ "value": 0
663
+ },
664
+ "landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction": {
665
+ "value": 0.0126053529578672
666
+ },
667
+ "landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle": {
668
+ "value": 0
669
+ },
670
+ "landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction": {
671
+ "value": 0.0132620141577369
672
+ },
673
+ "landTransformationFromPermanentPasture100YearAverageDuringCycle": {
674
+ "value": 0.0210984384189601
675
+ },
676
+ "landTransformationFromPermanentPasture100YearAverageInputsProduction": {
677
+ "value": 0.0000074980872637
678
+ },
679
+ "landTransformationFromPermanentPasture20YearAverageDuringCycle": {
680
+ "value": 0
681
+ },
682
+ "landTransformationFromPermanentPasture20YearAverageInputsProduction": {
683
+ "value": 0.0000113357059693
684
+ },
685
+ "n2OToAirAquacultureSystemsDirect": {
686
+ "value": 0
687
+ },
688
+ "n2OToAirAquacultureSystemsIndirect": {
689
+ "value": 0
690
+ },
691
+ "n2OToAirCropResidueDecompositionDirect": {
692
+ "value": 0
693
+ },
694
+ "n2OToAirExcretaDirect": {
695
+ "value": 0
696
+ },
697
+ "n2OToAirExcretaIndirect": {
698
+ "value": 0
699
+ },
700
+ "n2OToAirFuelCombustionDirect": {
701
+ "value": 0.0000057275663199
702
+ },
703
+ "n2OToAirInorganicFertiliserDirect": {
704
+ "value": 0.0011411395141912
705
+ },
706
+ "n2OToAirInorganicFertiliserIndirect": {
707
+ "value": 0.0002661575364877
708
+ },
709
+ "n2OToAirInputsProduction": {
710
+ "value": 0.0007797453003926
711
+ },
712
+ "n2OToAirOrganicFertiliserDirect": {
713
+ "value": 0.0002738734834058
714
+ },
715
+ "n2OToAirOrganicFertiliserIndirect": {
716
+ "value": 0.0001110132992124
717
+ },
718
+ "n2OToAirOrganicSoilCultivationDirect": {
719
+ "value": 0
720
+ },
721
+ "n2ToAirAquacultureSystems": {
722
+ "value": 0
723
+ },
724
+ "nErosionInputsProduction": {
725
+ "value": 0.0004513857490856
726
+ },
727
+ "nErosionSoilFlux": {
728
+ "value": 0.0005122115223812
729
+ },
730
+ "nToSurfaceWaterAquacultureSystems": {
731
+ "value": 0
732
+ },
733
+ "nToSurfaceWaterInputsProduction": {
734
+ "value": 0
735
+ },
736
+ "nh3ToAirAquacultureSystems": {
737
+ "value": 0
738
+ },
739
+ "nh3ToAirInorganicFertiliser": {
740
+ "value": 0.0010391069497306
741
+ },
742
+ "nh3ToAirInputsProduction": {
743
+ "value": 0.0002629720862235
744
+ },
745
+ "nh3ToAirOrganicFertiliser": {
746
+ "value": 0
747
+ },
748
+ "nh4ToGroundwaterInputsProduction": {
749
+ "value": 0
750
+ },
751
+ "nh4ToSurfaceWaterAquacultureSystems": {
752
+ "value": 0
753
+ },
754
+ "nh4ToSurfaceWaterInputsProduction": {
755
+ "value": 0
756
+ },
757
+ "nmvocToAirAnimalHousing": {
758
+ "value": 0
759
+ },
760
+ "nmvocToAirInputsProduction": {
761
+ "value": 0
762
+ },
763
+ "nmvocToAirSilageFeeding": {
764
+ "value": 0
765
+ },
766
+ "no3ToGroundwaterInputsProduction": {
767
+ "value": 0
768
+ },
769
+ "no3ToSurfaceWaterAquacultureSystems": {
770
+ "value": 0
771
+ },
772
+ "no3ToSurfaceWaterIndustrialProcesses": {
773
+ "value": 0
774
+ },
775
+ "no3ToSurfaceWaterInputsProduction": {
776
+ "value": 0
777
+ },
778
+ "noToAirAquacultureSystems": {
779
+ "value": 0
780
+ },
781
+ "noToAirInputsProduction": {
782
+ "value": 0
783
+ },
784
+ "noxToAirAquacultureSystems": {
785
+ "value": 0
786
+ },
787
+ "noxToAirCropResidueDecomposition": {
788
+ "value": 0
789
+ },
790
+ "noxToAirExcreta": {
791
+ "value": 0
792
+ },
793
+ "noxToAirFuelCombustion": {
794
+ "value": 0.0013741526577579
795
+ },
796
+ "noxToAirInorganicFertiliser": {
797
+ "value": 0.0010701483379491
798
+ },
799
+ "noxToAirInputsProduction": {
800
+ "value": 0.0007558895358518
801
+ },
802
+ "noxToAirOrganicFertiliser": {
803
+ "value": 0.0002568356011077
804
+ },
805
+ "pErosionInputsProduction": {
806
+ "value": 0.0001085994743523
807
+ },
808
+ "pErosionSoilFlux": {
809
+ "value": 0.0000389664246875
810
+ },
811
+ "pToDrainageWaterInputsProduction": {
812
+ "value": 0.0000097482638811
813
+ },
814
+ "pToDrainageWaterSoilFlux": {
815
+ "value": 0
816
+ },
817
+ "pToGroundwaterInputsProduction": {
818
+ "value": 5.88006180825771e-9
819
+ },
820
+ "pToGroundwaterSoilFlux": {
821
+ "value": 0.000048491657654
822
+ },
823
+ "pToSurfaceWaterAquacultureSystems": {
824
+ "value": 0
825
+ },
826
+ "pToSurfaceWaterInputsProduction": {
827
+ "value": 0.0000231365409034
828
+ },
829
+ "pToSurfaceWaterSoilFlux": {
830
+ "value": 0
831
+ },
832
+ "pm10ToAirAnimalHousing": {
833
+ "value": 0
834
+ },
835
+ "pm10ToAirInputsProduction": {
836
+ "value": 0
837
+ },
838
+ "pm25ToAirAnimalHousing": {
839
+ "value": 0
840
+ },
841
+ "pm25ToAirInputsProduction": {
842
+ "value": 0
843
+ },
844
+ "po43ToSurfaceWaterAquacultureSystems": {
845
+ "value": 0
846
+ },
847
+ "po43ToSurfaceWaterInputsProduction": {
848
+ "value": 0
849
+ },
850
+ "so2ToAirFuelCombustion": {
851
+ "value": 0.0000842289164704
852
+ },
853
+ "so2ToAirInputsProduction": {
854
+ "value": 0.0007598166544714
855
+ }
856
+ },
857
+ "endpoints": {
858
+ "damageToFreshwaterEcosystemsPdfYear": {
859
+ "value": 0.0266755329579373
860
+ },
861
+ "damageToFreshwaterEcosystemsSpeciesYear": {
862
+ "value": 1.5428850103267146e-10
863
+ },
864
+ "damageToHumanHealth": {
865
+ "value": 1.2607681289108957e-8
866
+ },
867
+ "damageToMarineEcosystemsPdfYear": {
868
+ "value": 0.0008874041251739
869
+ },
870
+ "damageToMarineEcosystemsSpeciesYear": {
871
+ "value": 1.5711702263180473e-12
872
+ },
873
+ "damageToTerrestrialEcosystemsPdfYear": {
874
+ "value": 0.0266755329579996
875
+ },
876
+ "damageToTerrestrialEcosystemsSpeciesYear": {
877
+ "value": 1.4615177369931e-9
878
+ }
879
+ },
880
+ "impacts": {
881
+ "damageToFreshwaterEcosystemsClimateChange": {
882
+ "value": 3.2670681130167958e-15
883
+ },
884
+ "damageToFreshwaterEcosystemsFreshwaterEcotoxicity": {
885
+ "value": 0.026675532957934
886
+ },
887
+ "damageToFreshwaterEcosystemsFreshwaterEutrophication": {
888
+ "value": 8.356610816224178e-18
889
+ },
890
+ "damageToFreshwaterEcosystemsWaterStress": {
891
+ "value": 6.208737184540735e-20
892
+ },
893
+ "damageToHumanHealthClimateChange": {
894
+ "value": 0.0000083866451214
895
+ },
896
+ "damageToHumanHealthHumanToxicityNonCancerogenic": {
897
+ "value": 7.025573867115569e-10
898
+ },
899
+ "damageToHumanHealthParticulateMatterFormation": {
900
+ "value": 0.000001037231293
901
+ },
902
+ "damageToHumanHealthPhotochemicalOzoneFormation": {
903
+ "value": 6.222647038800092e-10
904
+ },
905
+ "damageToHumanHealthStratosphericOzoneDepletion": {
906
+ "value": 5.903929978302814e-8
907
+ },
908
+ "damageToHumanHealthWaterStress": {
909
+ "value": 3.9836602091608434e-13
910
+ },
911
+ "damageToMarineEcosystemsMarineEcotoxicity": {
912
+ "value": 0.0008874041251738
913
+ },
914
+ "damageToMarineEcosystemsMarineEutrophication": {
915
+ "value": 1.4229920343821943e-16
916
+ },
917
+ "damageToTerrestrialEcosystemsClimateChange": {
918
+ "value": 1.053759868481293e-14
919
+ },
920
+ "damageToTerrestrialEcosystemsLandOccupation": {
921
+ "value": 5.5117481340638313e-14
922
+ },
923
+ "damageToTerrestrialEcosystemsLandTransformation": {
924
+ "value": 0
925
+ },
926
+ "damageToTerrestrialEcosystemsPhotochemicalOzoneFormation": {
927
+ "value": 2.1779264635800322e-18
928
+ },
929
+ "damageToTerrestrialEcosystemsTerrestrialAcidification": {
930
+ "value": 1.0249288878918165e-19
931
+ },
932
+ "damageToTerrestrialEcosystemsTerrestrialEcotoxicity": {
933
+ "value": 0.026675532957934
934
+ },
935
+ "damageToTerrestrialEcosystemsTotalLandUseEffects": {
936
+ "value": 5.5117481340638313e-14
937
+ },
938
+ "ecosystemDamageOzoneFormation": {
939
+ "value": 0.0034570261326667
940
+ },
941
+ "eutrophicationPotentialExcludingFate": {
942
+ "value": 0.002706400841963
943
+ },
944
+ "eutrophicationPotentialIncludingFateAverageEurope": {
945
+ "value": 0.0097473712138033
946
+ },
947
+ "freshwaterAquaticEcotoxicityPotential14Dcbeq": {
948
+ "value": 0.000955727998663
949
+ },
950
+ "freshwaterEcotoxicityPotentialPaf": {
951
+ "value": 0.2001660871951407
952
+ },
953
+ "freshwaterEutrophicationPotential": {
954
+ "value": 0.0002289482415403
955
+ },
956
+ "gwp100": {
957
+ "value": 1.221
958
+ },
959
+ "humanDamageOzoneFormation": {
960
+ "value": 0.0034570261326667
961
+ },
962
+ "humanNonCarcinogenicToxicity": {
963
+ "value": 0.0227295057786568
964
+ },
965
+ "marineAquaticEcotoxicityPotential14Dcbeq": {
966
+ "value": 0.0001863083133579
967
+ },
968
+ "marineEutrophicationPotential": {
969
+ "value": 0.000912710502009
970
+ },
971
+ "ozoneDepletionPotential": {
972
+ "value": 0.0000180567940542
973
+ },
974
+ "terrestrialAcidificationPotential": {
975
+ "value": 0.0046406498891722
976
+ },
977
+ "terrestrialAcidificationPotentialExcludingFate": {
978
+ "value": 0.0057118724514026
979
+ },
980
+ "terrestrialAcidificationPotentialIncludingFateAverageEurope": {
981
+ "value": 0.0048246942089905
982
+ },
983
+ "terrestrialEcotoxicityPotential14Dcbeq": {
984
+ "value": 2.7845253837338704
985
+ }
986
+ }
987
+ }
988
+ ]