@hestia-earth/glossary 0.4.1 → 0.4.2
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 +21 -0
- package/package.json +1 -1
- package/resources/arrayTreatment.json +36 -1
- package/resources/impactAssessment.json +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
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.4.2](https://gitlab.com/hestia-earth/hestia-glossary/compare/v0.4.1...v0.4.2) (2022-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **crop:** add pearl millet forage, hay and straw ([3b41ae9](https://gitlab.com/hestia-earth/hestia-glossary/commit/3b41ae90c4ed43d5fc91a9c1c883961f234dd929))
|
|
11
|
+
* **crop:** remove grasses ([11bef75](https://gitlab.com/hestia-earth/hestia-glossary/commit/11bef7506ed0e07823e6c7b08e08d5013cdbc6fe)), closes [#103](https://gitlab.com/hestia-earth/hestia-glossary/issues/103)
|
|
12
|
+
* **liveAnimal:** add `chick` ([3b2553a](https://gitlab.com/hestia-earth/hestia-glossary/commit/3b2553a02c98ed463bf7cc45e5d6e55a865866f6))
|
|
13
|
+
* **measurement:** add `(growing season)` terms ([c1585d1](https://gitlab.com/hestia-earth/hestia-glossary/commit/c1585d11300a7eafc1f32170059202d21dc284a0))
|
|
14
|
+
* **measurement:** add `Soil saturated hydraulic conductivity` ([a0b3633](https://gitlab.com/hestia-earth/hestia-glossary/commit/a0b3633ca58e896332745176336b43684a033ac4))
|
|
15
|
+
* **methodMeasurement:** add `NH4OAc method, exchangeable potassium` ([d8b6827](https://gitlab.com/hestia-earth/hestia-glossary/commit/d8b682790e495f435314eb052da4a3761ca5653c))
|
|
16
|
+
* **organicFertilizer:** add `Seamac Gold` ([d34967f](https://gitlab.com/hestia-earth/hestia-glossary/commit/d34967fefa82cee252f06a307017238fd35d1ae3))
|
|
17
|
+
* **pesticideAI:** rename `magnesium sulphate` `magnesium sulfate anhydrous` ([971cfc5](https://gitlab.com/hestia-earth/hestia-glossary/commit/971cfc5c17e2493cf7cb2c43904e778318f506e5)), closes [#365](https://gitlab.com/hestia-earth/hestia-glossary/issues/365)
|
|
18
|
+
* **soilAmendment:** add `kieserite` ([9154d93](https://gitlab.com/hestia-earth/hestia-glossary/commit/9154d934b9fb0acc03df787bc1e188da59a91c7f)), closes [#365](https://gitlab.com/hestia-earth/hestia-glossary/issues/365)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* **emission:** error in `siteTypesAllowed` for excreta emissions ([bbfe9f3](https://gitlab.com/hestia-earth/hestia-glossary/commit/bbfe9f3e30b8fca8101367aa24811557620e487f))
|
|
24
|
+
* **inorganicFertilizer:** fix errors introduced in previous commit ([883773f](https://gitlab.com/hestia-earth/hestia-glossary/commit/883773ff960c626fb1f7ebf98885d6f584613df1))
|
|
25
|
+
|
|
5
26
|
### [0.4.1](https://gitlab.com/hestia-earth/hestia-glossary/compare/v0.4.0...v0.4.1) (2022-06-08)
|
|
6
27
|
|
|
7
28
|
|
package/package.json
CHANGED
|
@@ -12,30 +12,40 @@
|
|
|
12
12
|
"precipitationMonthly": "mean",
|
|
13
13
|
"precipitationDaily": "mean",
|
|
14
14
|
"precipitationHourly": "mean",
|
|
15
|
+
"precipitationGrowingSeason": "mean",
|
|
16
|
+
"precipitationGrowingSeasonLongTermAnnualMean": "mean",
|
|
15
17
|
"rainfallLongTermAnnualMean": "mean",
|
|
16
18
|
"rainfallAnnual": "mean",
|
|
17
19
|
"rainfallPeriod": "mean",
|
|
18
20
|
"rainfallMonthly": "mean",
|
|
19
21
|
"rainfallDaily": "mean",
|
|
20
22
|
"rainfallHourly": "mean",
|
|
23
|
+
"rainfallGrowingSeason": "mean",
|
|
24
|
+
"rainfallGrowingSeasonLongTermAnnualMean": "mean",
|
|
21
25
|
"drainageWaterLongTermAnnualMean": "mean",
|
|
22
26
|
"drainageWaterAnnual": "mean",
|
|
23
27
|
"drainageWaterPeriod": "mean",
|
|
24
28
|
"drainageWaterMonthly": "mean",
|
|
25
29
|
"drainageWaterDaily": "mean",
|
|
26
30
|
"drainageWaterHourly": "mean",
|
|
31
|
+
"drainageWaterGrowingSeason": "mean",
|
|
32
|
+
"drainageWaterGrowingSeasonLongTermAnnualMean": "mean",
|
|
27
33
|
"arealActualEvapotranspirationLongTermAnnualMean": "mean",
|
|
28
34
|
"arealActualEvapotranspirationAnnual": "mean",
|
|
29
35
|
"arealActualEvapotranspirationPeriod": "mean",
|
|
30
36
|
"arealActualEvapotranspirationMonthly": "mean",
|
|
31
37
|
"arealActualEvapotranspirationDaily": "mean",
|
|
32
38
|
"arealActualEvapotranspirationHourly": "mean",
|
|
39
|
+
"arealActualEvapotranspirationGrowingSeason": "mean",
|
|
40
|
+
"arealActualEvapotranspirationGrowingSeasonLongTermAnnualMean": "mean",
|
|
33
41
|
"potentialEvapotranspirationLongTermAnnualMean": "mean",
|
|
34
42
|
"potentialEvapotranspirationAnnual": "mean",
|
|
35
43
|
"potentialEvapotranspirationPeriod": "mean",
|
|
36
44
|
"potentialEvapotranspirationMonthly": "mean",
|
|
37
45
|
"potentialEvapotranspirationDaily": "mean",
|
|
38
46
|
"potentialEvapotranspirationHourly": "mean",
|
|
47
|
+
"potentialEvapotranspirationGrowingSeason": "mean",
|
|
48
|
+
"potentialEvapotranspirationGrowingSeasonLongTermAnnualMean": "mean",
|
|
39
49
|
"temperatureLongTermAnnualMean": "mean",
|
|
40
50
|
"temperatureAnnual": "mean",
|
|
41
51
|
"temperaturePeriod": "mean",
|
|
@@ -43,8 +53,8 @@
|
|
|
43
53
|
"temperatureDaily": "mean",
|
|
44
54
|
"temperatureHourly": "mean",
|
|
45
55
|
"temperaturePointMeasurement": "mean",
|
|
46
|
-
"temperatureGrowingSeasonLongTermAnnualMean": "mean",
|
|
47
56
|
"temperatureGrowingSeason": "mean",
|
|
57
|
+
"temperatureGrowingSeasonLongTermAnnualMean": "mean",
|
|
48
58
|
"wetBulbTemperatureLongTermAnnualMean": "mean",
|
|
49
59
|
"wetBulbTemperatureAnnual": "mean",
|
|
50
60
|
"wetBulbTemperaturePeriod": "mean",
|
|
@@ -52,6 +62,8 @@
|
|
|
52
62
|
"wetBulbTemperatureDaily": "mean",
|
|
53
63
|
"wetBulbTemperatureHourly": "mean",
|
|
54
64
|
"wetBulbTemperaturePointMeasurement": "mean",
|
|
65
|
+
"wetBulbTemperatureGrowingSeason": "mean",
|
|
66
|
+
"wetBulbTemperatureGrowingSeasonLongTermAnnualMean": "mean",
|
|
55
67
|
"soilTemperatureLongTermAnnualMean": "mean",
|
|
56
68
|
"soilTemperatureAnnual": "mean",
|
|
57
69
|
"soilTemperaturePeriod": "mean",
|
|
@@ -59,33 +71,45 @@
|
|
|
59
71
|
"soilTemperatureDaily": "mean",
|
|
60
72
|
"soilTemperatureHourly": "mean",
|
|
61
73
|
"soilTemperaturePointMeasurement": "mean",
|
|
74
|
+
"soilTemperatureGrowingSeason": "mean",
|
|
75
|
+
"soilTemperatureGrowingSeasonLongTermAnnualMean": "mean",
|
|
62
76
|
"sunshineDurationLongTermAnnualMean": "mean",
|
|
63
77
|
"sunshineDurationAnnual": "mean",
|
|
64
78
|
"sunshineDurationPeriod": "mean",
|
|
65
79
|
"sunshineDurationMonthly": "mean",
|
|
66
80
|
"sunshineDurationDaily": "mean",
|
|
81
|
+
"sunshineDurationGrowingSeason": "mean",
|
|
82
|
+
"sunshineDurationGrowingSeasonLongTermAnnualMean": "mean",
|
|
67
83
|
"numberOfFrozenDaysLongTermAnnualMean": "mean",
|
|
68
84
|
"numberOfFrozenDaysAnnual": "mean",
|
|
69
85
|
"numberOfFrozenDaysPeriod": "mean",
|
|
70
86
|
"numberOfFrozenDaysMonthly": "mean",
|
|
87
|
+
"numberOfFrozenDaysGrowingSeason": "mean",
|
|
88
|
+
"numberOfFrozenDaysGrowingSeasonLongTermAnnualMean": "mean",
|
|
71
89
|
"totalSolarRadiationLongTermAnnualMean": "mean",
|
|
72
90
|
"totalSolarRadiationAnnual": "mean",
|
|
73
91
|
"totalSolarRadiationPeriod": "mean",
|
|
74
92
|
"totalSolarRadiationMonthly": "mean",
|
|
75
93
|
"totalSolarRadiationDaily": "mean",
|
|
76
94
|
"totalSolarRadiationHourly": "mean",
|
|
95
|
+
"totalSolarRadiationGrowingSeason": "mean",
|
|
96
|
+
"totalSolarRadiationGrowingSeasonLongTermAnnualMean": "mean",
|
|
77
97
|
"directSolarRadiationLongTermAnnualMean": "mean",
|
|
78
98
|
"directSolarRadiationAnnual": "mean",
|
|
79
99
|
"directSolarRadiationPeriod": "mean",
|
|
80
100
|
"directSolarRadiationMonthly": "mean",
|
|
81
101
|
"directSolarRadiationDaily": "mean",
|
|
82
102
|
"directSolarRadiationHourly": "mean",
|
|
103
|
+
"directSolarRadiationGrowingSeason": "mean",
|
|
104
|
+
"directSolarRadiationGrowingSeasonLongTermAnnualMean": "mean",
|
|
83
105
|
"diffuseSolarRadiationLongTermAnnualMean": "mean",
|
|
84
106
|
"diffuseSolarRadiationAnnual": "mean",
|
|
85
107
|
"diffuseSolarRadiationPeriod": "mean",
|
|
86
108
|
"diffuseSolarRadiationMonthly": "mean",
|
|
87
109
|
"diffuseSolarRadiationDaily": "mean",
|
|
88
110
|
"diffuseSolarRadiationHourly": "mean",
|
|
111
|
+
"diffuseSolarRadiationGrowingSeason": "mean",
|
|
112
|
+
"diffuseSolarRadiationGrowingSeasonLongTermAnnualMean": "mean",
|
|
89
113
|
"humidityLongTermAnnualMean": "mean",
|
|
90
114
|
"humidityAnnual": "mean",
|
|
91
115
|
"humidityPeriod": "mean",
|
|
@@ -93,6 +117,8 @@
|
|
|
93
117
|
"humidityDaily": "mean",
|
|
94
118
|
"humidityHourly": "mean",
|
|
95
119
|
"humidityPointMeasurement": "mean",
|
|
120
|
+
"humidityGrowingSeason": "mean",
|
|
121
|
+
"humidityGrowingSeasonLongTermAnnualMean": "mean",
|
|
96
122
|
"dewPointLongTermAnnualMean": "mean",
|
|
97
123
|
"dewPointAnnual": "mean",
|
|
98
124
|
"dewPointPeriod": "mean",
|
|
@@ -100,6 +126,8 @@
|
|
|
100
126
|
"dewPointDaily": "mean",
|
|
101
127
|
"dewPointHourly": "mean",
|
|
102
128
|
"dewPointPointMeasurement": "mean",
|
|
129
|
+
"dewPointGrowingSeason": "mean",
|
|
130
|
+
"dewPointGrowingSeasonLongTermAnnualMean": "mean",
|
|
103
131
|
"airPressureLongTermAnnualMean": "mean",
|
|
104
132
|
"airPressureAnnual": "mean",
|
|
105
133
|
"airPressurePeriod": "mean",
|
|
@@ -107,6 +135,8 @@
|
|
|
107
135
|
"airPressureDaily": "mean",
|
|
108
136
|
"airPressureHourly": "mean",
|
|
109
137
|
"airPressurePointMeasurement": "mean",
|
|
138
|
+
"airPressureGrowingSeason": "mean",
|
|
139
|
+
"airPressureGrowingSeasonLongTermAnnualMean": "mean",
|
|
110
140
|
"windSpeedLongTermAnnualMean": "mean",
|
|
111
141
|
"windSpeedAnnual": "mean",
|
|
112
142
|
"windSpeedPeriod": "mean",
|
|
@@ -114,6 +144,8 @@
|
|
|
114
144
|
"windSpeedDaily": "mean",
|
|
115
145
|
"windSpeedHourly": "mean",
|
|
116
146
|
"windSpeedPointMeasurement": "mean",
|
|
147
|
+
"windSpeedGrowingSeason": "mean",
|
|
148
|
+
"windSpeedGrowingSeasonLongTermAnnualMean": "mean",
|
|
117
149
|
"windDirectionLongTermAnnualMean": "mean",
|
|
118
150
|
"windDirectionAnnual": "mean",
|
|
119
151
|
"windDirectionPeriod": "mean",
|
|
@@ -121,6 +153,8 @@
|
|
|
121
153
|
"windDirectionDaily": "mean",
|
|
122
154
|
"windDirectionHourly": "mean",
|
|
123
155
|
"windDirectionPointMeasurement": "mean",
|
|
156
|
+
"windDirectionGrowingSeason": "mean",
|
|
157
|
+
"windDirectionGrowingSeasonLongTermAnnualMean": "mean",
|
|
124
158
|
"leafWetness": "mean",
|
|
125
159
|
"soilDepth": "mean",
|
|
126
160
|
"soilBulkDensity": "mean",
|
|
@@ -220,6 +254,7 @@
|
|
|
220
254
|
"cationExchangeCapacityPerM3Soil": "mean",
|
|
221
255
|
"soilRedoxPotential": "mean",
|
|
222
256
|
"soilElectricalConductivity": "mean",
|
|
257
|
+
"soilSaturatedHydraulicConductivity": "mean",
|
|
223
258
|
"rootBiomass": "mean",
|
|
224
259
|
"aboveGroundBiomass": "mean",
|
|
225
260
|
"leafLitterBiomass": "mean",
|
|
@@ -35,11 +35,9 @@
|
|
|
35
35
|
"cratyliaPlant",
|
|
36
36
|
"durumWheatPlants",
|
|
37
37
|
"eggplant",
|
|
38
|
-
"elephantGrassPlants",
|
|
39
38
|
"gliricidiaSepiumTrees",
|
|
40
39
|
"grapeVines",
|
|
41
40
|
"guarBeanPlants",
|
|
42
|
-
"sudanGrassPlants",
|
|
43
41
|
"peanutPlants",
|
|
44
42
|
"jutePlants",
|
|
45
43
|
"largeLeafFlemingiaPlant",
|
|
@@ -62,9 +60,7 @@
|
|
|
62
60
|
"rosePlants",
|
|
63
61
|
"rubberTrees",
|
|
64
62
|
"ryePlants",
|
|
65
|
-
"ryegrassPlants",
|
|
66
63
|
"sesbanTrees",
|
|
67
|
-
"sisalPlants",
|
|
68
64
|
"sorghumPlants",
|
|
69
65
|
"soybeanPlants",
|
|
70
66
|
"sugarcanePlants",
|