@hestia-earth/glossary 0.6.0 → 0.6.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 +20 -0
- package/package.json +1 -1
- package/resources/term-restrictions.json +58 -16
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
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.6.1](https://gitlab.com/hestia-earth/hestia-glossary/compare/v0.6.0...v0.6.1) (2022-08-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **emission:** add `synonym` to `BOD5, to water, inputs production` ([3e36b4e](https://gitlab.com/hestia-earth/hestia-glossary/commit/3e36b4ee7007fc8193d19b65418dcc5edff0aa7f))
|
|
11
|
+
* **emission:** add term `BOD5, to water, industrial processes` ([0f0d91d](https://gitlab.com/hestia-earth/hestia-glossary/commit/0f0d91dc6fba6bae56001482873f7138e478790b))
|
|
12
|
+
* **emission:** add term `NO3, to surface water, industrial processes` ([829c076](https://gitlab.com/hestia-earth/hestia-glossary/commit/829c076d040651768132de8be308270a97520ccf))
|
|
13
|
+
* **grass:** add `stylosanthes campo grande plants` and `stylosanthes campo grande, fresh forage` ([27f8f5e](https://gitlab.com/hestia-earth/hestia-glossary/commit/27f8f5ea101cc4f2eb90d74a6b89f83f4e61f4f7))
|
|
14
|
+
* **property:** add lookup `commonToSupplementInAnimalFeed` ([21becf4](https://gitlab.com/hestia-earth/hestia-glossary/commit/21becf495078eab957eae29284c4d0d822d6a94a))
|
|
15
|
+
* **system:** add `liveAnimal` digestibility lookup ([bf5793f](https://gitlab.com/hestia-earth/hestia-glossary/commit/bf5793f3a593fe76c59157c0c0e00aaec839b811)), closes [#458](https://gitlab.com/hestia-earth/hestia-glossary/issues/458)
|
|
16
|
+
* **system:** add additional terms for animal production systems ([af18067](https://gitlab.com/hestia-earth/hestia-glossary/commit/af18067d876f7f8be7f0d637d6647d34351aa8f1)), closes [#458](https://gitlab.com/hestia-earth/hestia-glossary/issues/458)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* **resourceUse:** remove `permanent pasture` from `allowedSiteType` for land transf. from pasture ([89ba5eb](https://gitlab.com/hestia-earth/hestia-glossary/commit/89ba5eb06ca29aafc617e5eff9e362ca27a612f9)), closes [#472](https://gitlab.com/hestia-earth/hestia-glossary/issues/472)
|
|
22
|
+
* **resourceUse:** remove siteType from `siteTypeAllowed` if land transformation from same siteType ([926948b](https://gitlab.com/hestia-earth/hestia-glossary/commit/926948b1e43ab587cdd59f502c7909b8d85d761c)), closes [#472](https://gitlab.com/hestia-earth/hestia-glossary/issues/472)
|
|
23
|
+
* **soilAmendment:** rename `Innoculant` `Inoculant` ([bb666d9](https://gitlab.com/hestia-earth/hestia-glossary/commit/bb666d959a213ec7b222519d8fbbaf0a0c2344a8))
|
|
24
|
+
|
|
5
25
|
## [0.6.0](https://gitlab.com/hestia-earth/hestia-glossary/compare/v0.5.2...v0.6.0) (2022-08-04)
|
|
6
26
|
|
|
7
27
|
|
package/package.json
CHANGED
|
@@ -1545,6 +1545,17 @@
|
|
|
1545
1545
|
"all"
|
|
1546
1546
|
]
|
|
1547
1547
|
},
|
|
1548
|
+
"bod5ToWaterIndustrialProcesses": {
|
|
1549
|
+
"siteTypesAllowed": [
|
|
1550
|
+
"agri-food processor"
|
|
1551
|
+
],
|
|
1552
|
+
"productTermIdsAllowed": [
|
|
1553
|
+
"all"
|
|
1554
|
+
],
|
|
1555
|
+
"productTermTypesAllowed": [
|
|
1556
|
+
"all"
|
|
1557
|
+
]
|
|
1558
|
+
},
|
|
1548
1559
|
"bod5ToWaterInputsProduction": {
|
|
1549
1560
|
"siteTypesAllowed": [
|
|
1550
1561
|
"all"
|
|
@@ -2935,6 +2946,17 @@
|
|
|
2935
2946
|
"liveAquaticSpecies"
|
|
2936
2947
|
]
|
|
2937
2948
|
},
|
|
2949
|
+
"no3ToSurfaceWaterIndustrialProcesses": {
|
|
2950
|
+
"siteTypesAllowed": [
|
|
2951
|
+
"agri-food processor"
|
|
2952
|
+
],
|
|
2953
|
+
"productTermIdsAllowed": [
|
|
2954
|
+
"all"
|
|
2955
|
+
],
|
|
2956
|
+
"productTermTypesAllowed": [
|
|
2957
|
+
"all"
|
|
2958
|
+
]
|
|
2959
|
+
},
|
|
2938
2960
|
"no3ToSurfaceWaterInputsProduction": {
|
|
2939
2961
|
"siteTypesAllowed": [
|
|
2940
2962
|
"all"
|
|
@@ -9314,7 +9336,6 @@
|
|
|
9314
9336
|
},
|
|
9315
9337
|
"landTransformationFromCropland20YearAverageDuringCycle": {
|
|
9316
9338
|
"siteTypesAllowed": [
|
|
9317
|
-
"cropland",
|
|
9318
9339
|
"glass or high accessible cover",
|
|
9319
9340
|
"permanent pasture",
|
|
9320
9341
|
"animal housing",
|
|
@@ -9325,7 +9346,6 @@
|
|
|
9325
9346
|
},
|
|
9326
9347
|
"landTransformationFromTemporaryCropland20YearAverageDuringCycle": {
|
|
9327
9348
|
"siteTypesAllowed": [
|
|
9328
|
-
"cropland",
|
|
9329
9349
|
"glass or high accessible cover",
|
|
9330
9350
|
"permanent pasture",
|
|
9331
9351
|
"animal housing",
|
|
@@ -9336,7 +9356,6 @@
|
|
|
9336
9356
|
},
|
|
9337
9357
|
"landTransformationFromPermanentCropland20YearAverageDuringCycle": {
|
|
9338
9358
|
"siteTypesAllowed": [
|
|
9339
|
-
"cropland",
|
|
9340
9359
|
"glass or high accessible cover",
|
|
9341
9360
|
"permanent pasture",
|
|
9342
9361
|
"animal housing",
|
|
@@ -9349,7 +9368,6 @@
|
|
|
9349
9368
|
"siteTypesAllowed": [
|
|
9350
9369
|
"cropland",
|
|
9351
9370
|
"glass or high accessible cover",
|
|
9352
|
-
"permanent pasture",
|
|
9353
9371
|
"animal housing",
|
|
9354
9372
|
"pond",
|
|
9355
9373
|
"agri-food processor",
|
|
@@ -9380,7 +9398,6 @@
|
|
|
9380
9398
|
},
|
|
9381
9399
|
"landTransformationFromCropland100YearAverageDuringCycle": {
|
|
9382
9400
|
"siteTypesAllowed": [
|
|
9383
|
-
"cropland",
|
|
9384
9401
|
"glass or high accessible cover",
|
|
9385
9402
|
"permanent pasture",
|
|
9386
9403
|
"animal housing",
|
|
@@ -9391,7 +9408,6 @@
|
|
|
9391
9408
|
},
|
|
9392
9409
|
"landTransformationFromTemporaryCropland100YearAverageDuringCycle": {
|
|
9393
9410
|
"siteTypesAllowed": [
|
|
9394
|
-
"cropland",
|
|
9395
9411
|
"glass or high accessible cover",
|
|
9396
9412
|
"permanent pasture",
|
|
9397
9413
|
"animal housing",
|
|
@@ -9402,7 +9418,6 @@
|
|
|
9402
9418
|
},
|
|
9403
9419
|
"landTransformationFromPermanentCropland100YearAverageDuringCycle": {
|
|
9404
9420
|
"siteTypesAllowed": [
|
|
9405
|
-
"cropland",
|
|
9406
9421
|
"glass or high accessible cover",
|
|
9407
9422
|
"permanent pasture",
|
|
9408
9423
|
"animal housing",
|
|
@@ -9415,7 +9430,6 @@
|
|
|
9415
9430
|
"siteTypesAllowed": [
|
|
9416
9431
|
"cropland",
|
|
9417
9432
|
"glass or high accessible cover",
|
|
9418
|
-
"permanent pasture",
|
|
9419
9433
|
"animal housing",
|
|
9420
9434
|
"pond",
|
|
9421
9435
|
"agri-food processor",
|
|
@@ -9446,7 +9460,6 @@
|
|
|
9446
9460
|
},
|
|
9447
9461
|
"landTransformationFromCropland20YearAverageInputsProduction": {
|
|
9448
9462
|
"siteTypesAllowed": [
|
|
9449
|
-
"cropland",
|
|
9450
9463
|
"glass or high accessible cover",
|
|
9451
9464
|
"permanent pasture",
|
|
9452
9465
|
"animal housing",
|
|
@@ -9457,7 +9470,6 @@
|
|
|
9457
9470
|
},
|
|
9458
9471
|
"landTransformationFromTemporaryCropland20YearAverageInputsProduction": {
|
|
9459
9472
|
"siteTypesAllowed": [
|
|
9460
|
-
"cropland",
|
|
9461
9473
|
"glass or high accessible cover",
|
|
9462
9474
|
"permanent pasture",
|
|
9463
9475
|
"animal housing",
|
|
@@ -9468,7 +9480,6 @@
|
|
|
9468
9480
|
},
|
|
9469
9481
|
"landTransformationFromPermanentCropland20YearAverageInputsProduction": {
|
|
9470
9482
|
"siteTypesAllowed": [
|
|
9471
|
-
"cropland",
|
|
9472
9483
|
"glass or high accessible cover",
|
|
9473
9484
|
"permanent pasture",
|
|
9474
9485
|
"animal housing",
|
|
@@ -9481,7 +9492,6 @@
|
|
|
9481
9492
|
"siteTypesAllowed": [
|
|
9482
9493
|
"cropland",
|
|
9483
9494
|
"glass or high accessible cover",
|
|
9484
|
-
"permanent pasture",
|
|
9485
9495
|
"animal housing",
|
|
9486
9496
|
"pond",
|
|
9487
9497
|
"agri-food processor",
|
|
@@ -9512,7 +9522,6 @@
|
|
|
9512
9522
|
},
|
|
9513
9523
|
"landTransformationFromCropland100YearAverageInputsProduction": {
|
|
9514
9524
|
"siteTypesAllowed": [
|
|
9515
|
-
"cropland",
|
|
9516
9525
|
"glass or high accessible cover",
|
|
9517
9526
|
"permanent pasture",
|
|
9518
9527
|
"animal housing",
|
|
@@ -9523,7 +9532,6 @@
|
|
|
9523
9532
|
},
|
|
9524
9533
|
"landTransformationFromTemporaryCropland100YearAverageInputsProduction": {
|
|
9525
9534
|
"siteTypesAllowed": [
|
|
9526
|
-
"cropland",
|
|
9527
9535
|
"glass or high accessible cover",
|
|
9528
9536
|
"permanent pasture",
|
|
9529
9537
|
"animal housing",
|
|
@@ -9534,7 +9542,6 @@
|
|
|
9534
9542
|
},
|
|
9535
9543
|
"landTransformationFromPermanentCropland100YearAverageInputsProduction": {
|
|
9536
9544
|
"siteTypesAllowed": [
|
|
9537
|
-
"cropland",
|
|
9538
9545
|
"glass or high accessible cover",
|
|
9539
9546
|
"permanent pasture",
|
|
9540
9547
|
"animal housing",
|
|
@@ -9547,7 +9554,6 @@
|
|
|
9547
9554
|
"siteTypesAllowed": [
|
|
9548
9555
|
"cropland",
|
|
9549
9556
|
"glass or high accessible cover",
|
|
9550
|
-
"permanent pasture",
|
|
9551
9557
|
"animal housing",
|
|
9552
9558
|
"pond",
|
|
9553
9559
|
"agri-food processor",
|
|
@@ -12453,6 +12459,42 @@
|
|
|
12453
12459
|
"permanent pasture"
|
|
12454
12460
|
]
|
|
12455
12461
|
},
|
|
12462
|
+
"batteryCageSystem": {
|
|
12463
|
+
"siteTypesAllowed": [
|
|
12464
|
+
"animal housing"
|
|
12465
|
+
]
|
|
12466
|
+
},
|
|
12467
|
+
"colonyCageSystem": {
|
|
12468
|
+
"siteTypesAllowed": [
|
|
12469
|
+
"animal housing"
|
|
12470
|
+
]
|
|
12471
|
+
},
|
|
12472
|
+
"barnSystem": {
|
|
12473
|
+
"siteTypesAllowed": [
|
|
12474
|
+
"animal housing"
|
|
12475
|
+
]
|
|
12476
|
+
},
|
|
12477
|
+
"freeRange": {
|
|
12478
|
+
"siteTypesAllowed": [
|
|
12479
|
+
"cropland",
|
|
12480
|
+
"permanent pasture",
|
|
12481
|
+
"animal housing"
|
|
12482
|
+
]
|
|
12483
|
+
},
|
|
12484
|
+
"feedlotFed": {
|
|
12485
|
+
"siteTypesAllowed": [
|
|
12486
|
+
"cropland",
|
|
12487
|
+
"permanent pasture",
|
|
12488
|
+
"animal housing"
|
|
12489
|
+
]
|
|
12490
|
+
},
|
|
12491
|
+
"pastureFed": {
|
|
12492
|
+
"siteTypesAllowed": [
|
|
12493
|
+
"cropland",
|
|
12494
|
+
"permanent pasture",
|
|
12495
|
+
"animal housing"
|
|
12496
|
+
]
|
|
12497
|
+
},
|
|
12456
12498
|
"noTillage": {
|
|
12457
12499
|
"siteTypesAllowed": [
|
|
12458
12500
|
"cropland",
|