@hestia-earth/glossary 0.53.0 → 0.53.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.
- package/CHANGELOG.md +16 -0
- package/README.md +3 -3
- package/index.js +15 -15
- package/lookups/README.md +0 -0
- package/package.json +2 -2
- package/resources/arrayTreatment.json +2 -1
- package/resources/term-restrictions.json +276 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.53.1](https://gitlab.com/hestia-earth/hestia-glossary/compare/v0.53.0...v0.53.1) (2024-08-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **landUseManagement:** change `arrayTreatment` on `Pasture grass` to `sum` ([ca45a2e](https://gitlab.com/hestia-earth/hestia-glossary/commit/ca45a2e4e9fe174fed65795a7a5239a053a9b87c)), closes [#1431](https://gitlab.com/hestia-earth/hestia-glossary/issues/1431)
|
|
11
|
+
* **liveAnimal:** add PM and TSP lookups ([73155c1](https://gitlab.com/hestia-earth/hestia-glossary/commit/73155c1247569ec87dc0325be1733fdd3f8c941e))
|
|
12
|
+
* **measurement:** add new term `belowGroundBiomass` to glossary ([6b23802](https://gitlab.com/hestia-earth/hestia-glossary/commit/6b238028b55dcebf455c88eefeb50bfe8b6b1c4d))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **inorganicFertiliser:** error in `Nitrogen content` of `Nitric acid` ([1593bb9](https://gitlab.com/hestia-earth/hestia-glossary/commit/1593bb9dcde97ff69f151cda9e2349f91e6a3ea4)), closes [#1444](https://gitlab.com/hestia-earth/hestia-glossary/issues/1444)
|
|
18
|
+
* **region:** change `Laos` `subClassOf` to `region-south-eastern-asia` ([38fdefd](https://gitlab.com/hestia-earth/hestia-glossary/commit/38fdefd12ceb08bd44fee89ec3ef77a7bb1cd16d)), closes [#1454](https://gitlab.com/hestia-earth/hestia-glossary/issues/1454)
|
|
19
|
+
* **region:** update `area` for level 0 regions ([e9882c5](https://gitlab.com/hestia-earth/hestia-glossary/commit/e9882c5fb7f1f3ef735ac416042e0da2b66ac4e0))
|
|
20
|
+
|
|
5
21
|
## [0.53.0](https://gitlab.com/hestia-earth/hestia-glossary/compare/v0.52.0...v0.53.0) (2024-08-06)
|
|
6
22
|
|
|
7
23
|
|
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
#
|
|
1
|
+
# HESTIA Glossary
|
|
2
2
|
|
|
3
|
-
Describing data consistently with the same terms makes data exchange possible.
|
|
3
|
+
Describing data consistently with the same terms makes data exchange possible. HESTIA maintains a [Glossary of Terms](https://hestia.earth/glossary) to describe the agri-food system. Only these Terms can be used to describe data.
|
|
4
4
|
|
|
5
5
|
Terms are created or amended as follows:
|
|
6
6
|
|
|
7
7
|
1) Glossaries for each termType are initially created in Excel files. Each column header must either be a field in the schema for Term, a Property from the Glossary of Terms, or a lookup.
|
|
8
8
|
|
|
9
|
-
2) To update or change an Excel file, carefully follow the [contribution guidelines](/CONTRIBUTING.md). The
|
|
9
|
+
2) To update or change an Excel file, carefully follow the [contribution guidelines](/CONTRIBUTING.md). The HESTIA team will review your updates and approve them.
|
|
10
10
|
|
|
11
11
|
3) Each row of the Excel file is converted into a JSON-LD file following the schema for the Term.
|
|
12
12
|
|
package/index.js
CHANGED
|
@@ -10,25 +10,25 @@ const loadResource = filename => require(`./resources/${filename}`);
|
|
|
10
10
|
const loadResourceKey = (filename, key) => loadResource(filename)[key];
|
|
11
11
|
|
|
12
12
|
/**
|
|
13
|
-
* Converts the iso31662 code to the [term.name](https://hestia.earth/schema/Term#name) from the
|
|
13
|
+
* Converts the iso31662 code to the [term.name](https://hestia.earth/schema/Term#name) from the HESTIA Glossary.
|
|
14
14
|
*
|
|
15
15
|
* @param {string} code The [iso31662 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
|
|
16
|
-
* @returns {string} The
|
|
16
|
+
* @returns {string} The HESTIA country [name](https://hestia.earth/schema/Term#name).
|
|
17
17
|
*/
|
|
18
18
|
const iso31662ToName = (code = '') => loadResourceKey('iso3166-2-to-name.json', code.toUpperCase());
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
|
-
* Converts the iso31662 code to the [term.id](https://hestia.earth/schema/Term#id) from the
|
|
21
|
+
* Converts the iso31662 code to the [term.id](https://hestia.earth/schema/Term#id) from the HESTIA Glossary.
|
|
22
22
|
*
|
|
23
23
|
* @param {string} code The [iso31662 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
|
|
24
|
-
* @returns {string} The
|
|
24
|
+
* @returns {string} The HESTIA country [id](https://hestia.earth/schema/Term#id).
|
|
25
25
|
*/
|
|
26
26
|
const iso31662ToId = (code = '') => loadResourceKey('iso3166-2-to-id.json', code.toUpperCase());
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
* Converts the [term.id](https://hestia.earth/schema/Term#id) from the
|
|
29
|
+
* Converts the [term.id](https://hestia.earth/schema/Term#id) from the HESTIA Glossary to a iso31662 code.
|
|
30
30
|
*
|
|
31
|
-
* @param {string} id The
|
|
31
|
+
* @param {string} id The HESTIA country [id](https://hestia.earth/schema/Term#id).
|
|
32
32
|
* @returns {string} The [iso31662 country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
|
|
33
33
|
*/
|
|
34
34
|
const idToIso31662 = (id = '') => loadResourceKey('id-to-iso3166-2.json', id.toUpperCase());
|
|
@@ -36,7 +36,7 @@ const idToIso31662 = (id = '') => loadResourceKey('id-to-iso3166-2.json', id.toU
|
|
|
36
36
|
/**
|
|
37
37
|
* Determines how an array of values should be handled (if summed up, or averaged, etc.).
|
|
38
38
|
*
|
|
39
|
-
* @param {string} id The
|
|
39
|
+
* @param {string} id The HESTIA term [id](https://hestia.earth/schema/Term#id).
|
|
40
40
|
* @returns {string} Possible values are: `mean`, `mode` and `sum`.
|
|
41
41
|
*/
|
|
42
42
|
const getArrayTreatment = (id) => loadResourceKey('arrayTreatment.json', id) || 'sum';
|
|
@@ -44,7 +44,7 @@ const getArrayTreatment = (id) => loadResourceKey('arrayTreatment.json', id) ||
|
|
|
44
44
|
/**
|
|
45
45
|
* Returns the `@id` of the default model that should be used for display of this Term.
|
|
46
46
|
*
|
|
47
|
-
* @param {string} id The
|
|
47
|
+
* @param {string} id The HESTIA term [id](https://hestia.earth/schema/Term#id).
|
|
48
48
|
* @returns {string} The `@id` of the model if set.
|
|
49
49
|
*/
|
|
50
50
|
const getDefaultModelId = (id) => loadResourceKey('defaultModelId.json', id);
|
|
@@ -52,7 +52,7 @@ const getDefaultModelId = (id) => loadResourceKey('defaultModelId.json', id);
|
|
|
52
52
|
/**
|
|
53
53
|
* Returns the list of `@id` of the default models that should be used for display.
|
|
54
54
|
*
|
|
55
|
-
* @param {string} id The
|
|
55
|
+
* @param {string} id The HESTIA term [id](https://hestia.earth/schema/Term#id).
|
|
56
56
|
* @returns {string[]} The list of default `@id`.
|
|
57
57
|
*/
|
|
58
58
|
const getDefaultModels = () => Object.entries(loadResource('defaultModelId.json')).filter(([key, value]) => !!value).map(([key]) => key);
|
|
@@ -60,7 +60,7 @@ const getDefaultModels = () => Object.entries(loadResource('defaultModelId.json'
|
|
|
60
60
|
/**
|
|
61
61
|
* Returns the list of restrictions of the Term.
|
|
62
62
|
*
|
|
63
|
-
* @param {string} id The
|
|
63
|
+
* @param {string} id The HESTIA term [id](https://hestia.earth/schema/Term#id).
|
|
64
64
|
* @returns A list of restrictions as an object.
|
|
65
65
|
*/
|
|
66
66
|
const getTermRestrictions = (id) => loadResourceKey('term-restrictions.json', id);
|
|
@@ -68,20 +68,20 @@ const getTermRestrictions = (id) => loadResourceKey('term-restrictions.json', id
|
|
|
68
68
|
/**
|
|
69
69
|
* Returns the list of restrictions of the Term/Model mapping.
|
|
70
70
|
*
|
|
71
|
-
* @param {string} id The
|
|
72
|
-
* @param {string} modelId The
|
|
71
|
+
* @param {string} id The HESTIA term [id](https://hestia.earth/schema/Term#id).
|
|
72
|
+
* @param {string} modelId The HESTIA term [id](https://hestia.earth/schema/Term#id).
|
|
73
73
|
* @returns A list of restrictions as an object.
|
|
74
74
|
*/
|
|
75
75
|
const getTermModelRestrictions = (id, modelId) => (loadResourceKey('term-restrictions.json', id) || {})[modelId];
|
|
76
76
|
|
|
77
77
|
/**
|
|
78
|
-
* Checks whether the emission is in the
|
|
78
|
+
* Checks whether the emission is in the HESTIA System Boundary.
|
|
79
79
|
*
|
|
80
|
-
* @param {string} id The
|
|
80
|
+
* @param {string} id The HESTIA term [id](https://hestia.earth/schema/Term#id).
|
|
81
81
|
* @returns {boolean} True if the Term is included.
|
|
82
82
|
*/
|
|
83
83
|
const isInSystemBoundary = (id) => {
|
|
84
|
-
const value = loadResourceKey('
|
|
84
|
+
const value = loadResourceKey('inHESTIADefaultSystemBoundary.json', id);
|
|
85
85
|
return !value || value === 'true';
|
|
86
86
|
};
|
|
87
87
|
|
package/lookups/README.md
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hestia-earth/glossary",
|
|
3
|
-
"version": "0.53.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.53.1",
|
|
4
|
+
"description": "HESTIA Earth Glossary library",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -656,7 +656,7 @@
|
|
|
656
656
|
"canopyCoverShadeTrees": "mean",
|
|
657
657
|
"shadeTreeSpecies": "mode",
|
|
658
658
|
"shadeTreeSpacing": "mean",
|
|
659
|
-
"pastureGrass": "
|
|
659
|
+
"pastureGrass": "sum",
|
|
660
660
|
"continuousGrazing": "mean",
|
|
661
661
|
"rotationalGrazing": "mean",
|
|
662
662
|
"canopyCoverPasture": "mean",
|
|
@@ -1030,6 +1030,7 @@
|
|
|
1030
1030
|
"soilSaturatedHydraulicConductivity": "mean",
|
|
1031
1031
|
"rootBiomass": "mean",
|
|
1032
1032
|
"aboveGroundBiomass": "mean",
|
|
1033
|
+
"belowGroundBiomass": "mean",
|
|
1033
1034
|
"leafLitterBiomass": "mean",
|
|
1034
1035
|
"waterDepth": "mean",
|
|
1035
1036
|
"slowFlowingWater": "arrayNotAllowed",
|
|
@@ -171260,6 +171260,282 @@
|
|
|
171260
171260
|
"permanent pasture"
|
|
171261
171261
|
]
|
|
171262
171262
|
},
|
|
171263
|
+
"belowGroundBiomass": {
|
|
171264
|
+
"aggregatedModels": {
|
|
171265
|
+
"siteTypesAllowed": []
|
|
171266
|
+
},
|
|
171267
|
+
"emissionNotRelevant": {
|
|
171268
|
+
"siteTypesAllowed": []
|
|
171269
|
+
},
|
|
171270
|
+
"linkedImpactAssessment": {
|
|
171271
|
+
"siteTypesAllowed": []
|
|
171272
|
+
},
|
|
171273
|
+
"otherModel": {
|
|
171274
|
+
"siteTypesAllowed": []
|
|
171275
|
+
},
|
|
171276
|
+
"spatial": {
|
|
171277
|
+
"siteTypesAllowed": []
|
|
171278
|
+
},
|
|
171279
|
+
"agribalyse2016": {
|
|
171280
|
+
"siteTypesAllowed": []
|
|
171281
|
+
},
|
|
171282
|
+
"akagiEtAl2011AndIpcc2006": {
|
|
171283
|
+
"siteTypesAllowed": []
|
|
171284
|
+
},
|
|
171285
|
+
"allenEtAl2018": {
|
|
171286
|
+
"siteTypesAllowed": []
|
|
171287
|
+
},
|
|
171288
|
+
"aware": {
|
|
171289
|
+
"siteTypesAllowed": []
|
|
171290
|
+
},
|
|
171291
|
+
"blonkConsultants2016": {
|
|
171292
|
+
"siteTypesAllowed": []
|
|
171293
|
+
},
|
|
171294
|
+
"chaudharyBrooks2018": {
|
|
171295
|
+
"siteTypesAllowed": []
|
|
171296
|
+
},
|
|
171297
|
+
"chaudharyEtAl2015": {
|
|
171298
|
+
"siteTypesAllowed": []
|
|
171299
|
+
},
|
|
171300
|
+
"cml2001Baseline": {
|
|
171301
|
+
"siteTypesAllowed": []
|
|
171302
|
+
},
|
|
171303
|
+
"cml2001NonBaseline": {
|
|
171304
|
+
"siteTypesAllowed": []
|
|
171305
|
+
},
|
|
171306
|
+
"cumulativeEnergyDemandCedMethod": {
|
|
171307
|
+
"siteTypesAllowed": []
|
|
171308
|
+
},
|
|
171309
|
+
"dammgen2009": {
|
|
171310
|
+
"siteTypesAllowed": []
|
|
171311
|
+
},
|
|
171312
|
+
"deRuijterEtAl2010": {
|
|
171313
|
+
"siteTypesAllowed": []
|
|
171314
|
+
},
|
|
171315
|
+
"ecoIndicator95": {
|
|
171316
|
+
"siteTypesAllowed": []
|
|
171317
|
+
},
|
|
171318
|
+
"ecoinventV2": {
|
|
171319
|
+
"siteTypesAllowed": []
|
|
171320
|
+
},
|
|
171321
|
+
"ecoinventV3": {
|
|
171322
|
+
"siteTypesAllowed": []
|
|
171323
|
+
},
|
|
171324
|
+
"edip2003": {
|
|
171325
|
+
"siteTypesAllowed": []
|
|
171326
|
+
},
|
|
171327
|
+
"emepEea2019": {
|
|
171328
|
+
"siteTypesAllowed": []
|
|
171329
|
+
},
|
|
171330
|
+
"emepEea2019CountryAverageFertiliserMix": {
|
|
171331
|
+
"siteTypesAllowed": []
|
|
171332
|
+
},
|
|
171333
|
+
"environmentalFootprintV3": {
|
|
171334
|
+
"siteTypesAllowed": []
|
|
171335
|
+
},
|
|
171336
|
+
"epa2014": {
|
|
171337
|
+
"siteTypesAllowed": []
|
|
171338
|
+
},
|
|
171339
|
+
"europeanEnvironmentAgency2013": {
|
|
171340
|
+
"siteTypesAllowed": []
|
|
171341
|
+
},
|
|
171342
|
+
"europeanEnvironmentAgency2016": {
|
|
171343
|
+
"siteTypesAllowed": []
|
|
171344
|
+
},
|
|
171345
|
+
"faostat2018": {
|
|
171346
|
+
"siteTypesAllowed": []
|
|
171347
|
+
},
|
|
171348
|
+
"globalCropWaterModel2008": {
|
|
171349
|
+
"siteTypesAllowed": []
|
|
171350
|
+
},
|
|
171351
|
+
"harmonizedWorldSoilDatabaseV12": {
|
|
171352
|
+
"siteTypesAllowed": []
|
|
171353
|
+
},
|
|
171354
|
+
"haversineFormula": {
|
|
171355
|
+
"siteTypesAllowed": []
|
|
171356
|
+
},
|
|
171357
|
+
"hestiaAggregatedData": {
|
|
171358
|
+
"siteTypesAllowed": []
|
|
171359
|
+
},
|
|
171360
|
+
"hyde32": {
|
|
171361
|
+
"siteTypesAllowed": []
|
|
171362
|
+
},
|
|
171363
|
+
"ipcc1995": {
|
|
171364
|
+
"siteTypesAllowed": []
|
|
171365
|
+
},
|
|
171366
|
+
"ipcc1996": {
|
|
171367
|
+
"siteTypesAllowed": []
|
|
171368
|
+
},
|
|
171369
|
+
"ipcc2001": {
|
|
171370
|
+
"siteTypesAllowed": []
|
|
171371
|
+
},
|
|
171372
|
+
"ipcc2006": {
|
|
171373
|
+
"siteTypesAllowed": []
|
|
171374
|
+
},
|
|
171375
|
+
"ipcc2007": {
|
|
171376
|
+
"siteTypesAllowed": []
|
|
171377
|
+
},
|
|
171378
|
+
"ipcc2013ExcludingFeedbacks": {
|
|
171379
|
+
"siteTypesAllowed": []
|
|
171380
|
+
},
|
|
171381
|
+
"ipcc2013IncludingFeedbacks": {
|
|
171382
|
+
"siteTypesAllowed": []
|
|
171383
|
+
},
|
|
171384
|
+
"ipcc2019": {
|
|
171385
|
+
"siteTypesAllowed": []
|
|
171386
|
+
},
|
|
171387
|
+
"ipcc2019CountryAverageFertiliserMix": {
|
|
171388
|
+
"siteTypesAllowed": []
|
|
171389
|
+
},
|
|
171390
|
+
"ipcc2021": {
|
|
171391
|
+
"siteTypesAllowed": []
|
|
171392
|
+
},
|
|
171393
|
+
"koble2014": {
|
|
171394
|
+
"siteTypesAllowed": []
|
|
171395
|
+
},
|
|
171396
|
+
"lanca": {
|
|
171397
|
+
"siteTypesAllowed": []
|
|
171398
|
+
},
|
|
171399
|
+
"lcImpactAllEffects100Years": {
|
|
171400
|
+
"siteTypesAllowed": []
|
|
171401
|
+
},
|
|
171402
|
+
"lcImpactAllEffectsInfinite": {
|
|
171403
|
+
"siteTypesAllowed": []
|
|
171404
|
+
},
|
|
171405
|
+
"lcImpactCertainEffects100Years": {
|
|
171406
|
+
"siteTypesAllowed": []
|
|
171407
|
+
},
|
|
171408
|
+
"lcImpactCertainEffectsInfinite": {
|
|
171409
|
+
"siteTypesAllowed": []
|
|
171410
|
+
},
|
|
171411
|
+
"milaICanalsEtAl2007": {
|
|
171412
|
+
"siteTypesAllowed": []
|
|
171413
|
+
},
|
|
171414
|
+
"papatryphonEtAl2004": {
|
|
171415
|
+
"siteTypesAllowed": []
|
|
171416
|
+
},
|
|
171417
|
+
"pooreNemecek2018": {
|
|
171418
|
+
"siteTypesAllowed": []
|
|
171419
|
+
},
|
|
171420
|
+
"poschEtAl2008": {
|
|
171421
|
+
"siteTypesAllowed": []
|
|
171422
|
+
},
|
|
171423
|
+
"pribyl2010": {
|
|
171424
|
+
"siteTypesAllowed": []
|
|
171425
|
+
},
|
|
171426
|
+
"rainsModel": {
|
|
171427
|
+
"siteTypesAllowed": []
|
|
171428
|
+
},
|
|
171429
|
+
"recipe2008Egalitarian": {
|
|
171430
|
+
"siteTypesAllowed": []
|
|
171431
|
+
},
|
|
171432
|
+
"recipe2008Hierarchist": {
|
|
171433
|
+
"siteTypesAllowed": []
|
|
171434
|
+
},
|
|
171435
|
+
"recipe2008Individualist": {
|
|
171436
|
+
"siteTypesAllowed": []
|
|
171437
|
+
},
|
|
171438
|
+
"recipe2016Egalitarian": {
|
|
171439
|
+
"siteTypesAllowed": []
|
|
171440
|
+
},
|
|
171441
|
+
"recipe2016Hierarchist": {
|
|
171442
|
+
"siteTypesAllowed": []
|
|
171443
|
+
},
|
|
171444
|
+
"recipe2016Individualist": {
|
|
171445
|
+
"siteTypesAllowed": []
|
|
171446
|
+
},
|
|
171447
|
+
"royEtAl2014": {
|
|
171448
|
+
"siteTypesAllowed": []
|
|
171449
|
+
},
|
|
171450
|
+
"salca": {
|
|
171451
|
+
"siteTypesAllowed": []
|
|
171452
|
+
},
|
|
171453
|
+
"schererPfister2015": {
|
|
171454
|
+
"siteTypesAllowed": []
|
|
171455
|
+
},
|
|
171456
|
+
"sqcb": {
|
|
171457
|
+
"siteTypesAllowed": []
|
|
171458
|
+
},
|
|
171459
|
+
"sqcbFaistEmmeneggerEtAl2009": {
|
|
171460
|
+
"siteTypesAllowed": []
|
|
171461
|
+
},
|
|
171462
|
+
"stehfestBouwman2006": {
|
|
171463
|
+
"siteTypesAllowed": []
|
|
171464
|
+
},
|
|
171465
|
+
"stehfestBouwman2006GisImplementation": {
|
|
171466
|
+
"siteTypesAllowed": []
|
|
171467
|
+
},
|
|
171468
|
+
"usetoxV2": {
|
|
171469
|
+
"siteTypesAllowed": []
|
|
171470
|
+
},
|
|
171471
|
+
"webbEtAl2012AndSintermannEtAl2012": {
|
|
171472
|
+
"siteTypesAllowed": []
|
|
171473
|
+
},
|
|
171474
|
+
"worldMeteorologicalOrganization1999": {
|
|
171475
|
+
"siteTypesAllowed": []
|
|
171476
|
+
},
|
|
171477
|
+
"cml1992": {
|
|
171478
|
+
"siteTypesAllowed": []
|
|
171479
|
+
},
|
|
171480
|
+
"ridouttPfister2010": {
|
|
171481
|
+
"siteTypesAllowed": []
|
|
171482
|
+
},
|
|
171483
|
+
"semc2000": {
|
|
171484
|
+
"siteTypesAllowed": []
|
|
171485
|
+
},
|
|
171486
|
+
"akiyamaEtAl2010": {
|
|
171487
|
+
"siteTypesAllowed": []
|
|
171488
|
+
},
|
|
171489
|
+
"cnspsModel": {
|
|
171490
|
+
"siteTypesAllowed": []
|
|
171491
|
+
},
|
|
171492
|
+
"dewulfEtAl2007": {
|
|
171493
|
+
"siteTypesAllowed": []
|
|
171494
|
+
},
|
|
171495
|
+
"ecoIndicator99": {
|
|
171496
|
+
"siteTypesAllowed": []
|
|
171497
|
+
},
|
|
171498
|
+
"ecoinventV3AndEmberClimate": {
|
|
171499
|
+
"siteTypesAllowed": []
|
|
171500
|
+
},
|
|
171501
|
+
"frischknechtEtAl2000": {
|
|
171502
|
+
"siteTypesAllowed": []
|
|
171503
|
+
},
|
|
171504
|
+
"jarvisAndPain1994": {
|
|
171505
|
+
"siteTypesAllowed": []
|
|
171506
|
+
},
|
|
171507
|
+
"pefcrGuidanceDocument2017": {
|
|
171508
|
+
"siteTypesAllowed": []
|
|
171509
|
+
},
|
|
171510
|
+
"riskpollModel": {
|
|
171511
|
+
"siteTypesAllowed": []
|
|
171512
|
+
},
|
|
171513
|
+
"schmidt2007": {
|
|
171514
|
+
"siteTypesAllowed": []
|
|
171515
|
+
},
|
|
171516
|
+
"usEpa1993": {
|
|
171517
|
+
"siteTypesAllowed": []
|
|
171518
|
+
},
|
|
171519
|
+
"usEpa1995": {
|
|
171520
|
+
"siteTypesAllowed": []
|
|
171521
|
+
},
|
|
171522
|
+
"directive200829EcOfTheEuropeanParliament": {
|
|
171523
|
+
"siteTypesAllowed": []
|
|
171524
|
+
},
|
|
171525
|
+
"impact2002Model": {
|
|
171526
|
+
"siteTypesAllowed": []
|
|
171527
|
+
},
|
|
171528
|
+
"gfliV2": {
|
|
171529
|
+
"siteTypesAllowed": []
|
|
171530
|
+
},
|
|
171531
|
+
"siteTypesAllowed": [
|
|
171532
|
+
"forest",
|
|
171533
|
+
"other natural vegetation",
|
|
171534
|
+
"cropland",
|
|
171535
|
+
"glass or high accessible cover",
|
|
171536
|
+
"permanent pasture"
|
|
171537
|
+
]
|
|
171538
|
+
},
|
|
171263
171539
|
"leafLitterBiomass": {
|
|
171264
171540
|
"aggregatedModels": {
|
|
171265
171541
|
"siteTypesAllowed": []
|