hestia-earth-models 0.64.14__py3-none-any.whl → 0.65.0__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.
- hestia_earth/models/agribalyse2016/fuelElectricity.py +1 -1
- hestia_earth/models/cache_sites.py +15 -24
- hestia_earth/models/chaudharyBrooks2018/damageToTerrestrialEcosystemsLandTransformation.py +6 -9
- hestia_earth/models/cycle/input/hestiaAggregatedData.py +46 -22
- hestia_earth/models/cycle/pre_checks/cache_sources.py +3 -25
- hestia_earth/models/cycle/product/economicValueShare.py +2 -2
- hestia_earth/models/environmentalFootprintV3/soilQualityIndexLandTransformation.py +11 -33
- hestia_earth/models/faostat2018/landTransformation100YearAverageDuringCycle.py +34 -0
- hestia_earth/models/faostat2018/landTransformation20YearAverageDuringCycle.py +34 -0
- hestia_earth/models/faostat2018/utils.py +47 -3
- hestia_earth/models/hestia/landCover.py +5 -5
- hestia_earth/models/hestia/seed_emissions.py +275 -0
- hestia_earth/models/ipcc2019/aboveGroundBiomass.py +2 -2
- hestia_earth/models/ipcc2019/belowGroundBiomass.py +8 -2
- hestia_earth/models/ipcc2019/biomass_utils.py +11 -4
- hestia_earth/models/ipcc2019/ch4ToAirEntericFermentation.py +19 -10
- hestia_earth/models/ipcc2019/co2ToAirAboveGroundBiomassStockChange.py +2 -1
- hestia_earth/models/ipcc2019/co2ToAirBelowGroundBiomassStockChange.py +2 -1
- hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py +8 -7
- hestia_earth/models/ipcc2019/co2ToAirSoilOrganicCarbonStockChange.py +2 -1
- hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1_utils.py +28 -34
- hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2_utils.py +8 -12
- hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py +13 -30
- hestia_earth/models/linkedImpactAssessment/{landTransformationFromCropland20YearAverageInputsProduction.py → landTransformation100YearAverageInputsProduction.py} +5 -2
- hestia_earth/models/linkedImpactAssessment/{landTransformationFromCropland100YearAverageInputsProduction.py → landTransformation20YearAverageInputsProduction.py} +5 -2
- hestia_earth/models/linkedImpactAssessment/utils.py +69 -12
- hestia_earth/models/mocking/search-results.json +444 -444
- hestia_earth/models/pooreNemecek2018/excretaKgN.py +45 -41
- hestia_earth/models/pooreNemecek2018/excretaKgVs.py +89 -63
- hestia_earth/models/pooreNemecek2018/saplingsDepreciatedAmountPerCycle.py +8 -8
- hestia_earth/models/pooreNemecek2018/utils.py +60 -19
- hestia_earth/models/schererPfister2015/nErosionSoilFlux.py +4 -3
- hestia_earth/models/schererPfister2015/pErosionSoilFlux.py +4 -3
- hestia_earth/models/schererPfister2015/utils.py +12 -9
- hestia_earth/models/site/management.py +70 -55
- hestia_earth/models/site/pre_checks/cache_sources.py +2 -20
- hestia_earth/models/utils/__init__.py +12 -1
- hestia_earth/models/utils/aggregated.py +1 -1
- hestia_earth/models/utils/blank_node.py +20 -12
- hestia_earth/models/utils/cache_sources.py +15 -0
- hestia_earth/models/utils/crop.py +5 -0
- hestia_earth/models/utils/indicator.py +3 -1
- hestia_earth/models/version.py +1 -1
- {hestia_earth_models-0.64.14.dist-info → hestia_earth_models-0.65.0.dist-info}/METADATA +2 -2
- {hestia_earth_models-0.64.14.dist-info → hestia_earth_models-0.65.0.dist-info}/RECORD +75 -104
- tests/models/cml2001Baseline/test_abioticResourceDepletionMineralsAndMetals.py +1 -1
- tests/models/cycle/input/test_hestiaAggregatedData.py +5 -2
- tests/models/environmentalFootprintV3/test_soilQualityIndexLandTransformation.py +39 -28
- tests/models/{hyde32/test_landTransformationFromForest20YearAverageDuringCycle.py → faostat2018/test_landTransformation100YearAverageDuringCycle.py} +5 -5
- tests/models/{hyde32/test_landTransformationFromForest100YearAverageDuringCycle.py → faostat2018/test_landTransformation20YearAverageDuringCycle.py} +5 -5
- tests/models/faostat2018/test_utils.py +28 -0
- tests/models/hestia/test_landCover.py +2 -1
- tests/models/hestia/test_seed_emissions.py +27 -0
- tests/models/ipcc2019/test_aboveGroundBiomass.py +40 -4
- tests/models/ipcc2019/test_belowGroundBiomass.py +40 -4
- tests/models/ipcc2019/test_co2ToAirAboveGroundBiomassStockChange.py +52 -15
- tests/models/ipcc2019/test_co2ToAirBelowGroundBiomassStockChange.py +50 -14
- tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py +53 -32
- tests/models/ipcc2019/test_organicCarbonPerHa.py +91 -108
- tests/models/ipcc2019/test_organicCarbonPerHa_tier_1_utils.py +33 -50
- tests/models/ipcc2019/test_organicCarbonPerHa_tier_2_utils.py +0 -52
- tests/models/linkedImpactAssessment/test_freshwaterWithdrawalsInputsProduction.py +6 -4
- tests/models/linkedImpactAssessment/test_landOccupationInputsProduction.py +6 -4
- tests/models/linkedImpactAssessment/{test_landTransformationFromForest100YearAverageInputsProduction.py → test_landTransformation100YearAverageInputsProduction.py} +7 -5
- tests/models/linkedImpactAssessment/{test_landTransformationFromForest20YearAverageInputsProduction.py → test_landTransformation20YearAverageInputsProduction.py} +7 -5
- tests/models/pooreNemecek2018/test_excretaKgN.py +2 -2
- tests/models/pooreNemecek2018/test_excretaKgVs.py +1 -1
- tests/models/pooreNemecek2018/test_utils.py +26 -0
- tests/models/site/test_management.py +10 -27
- tests/models/test_cache_sites.py +40 -12
- tests/models/utils/test_blank_node.py +0 -8
- tests/models/utils/test_cache_sources.py +21 -0
- hestia_earth/models/blonkConsultants2016/landTransformationFromForest20YearAverageDuringCycle.py +0 -90
- hestia_earth/models/faostat2018/landTransformationFromCropland100YearAverage.py +0 -74
- hestia_earth/models/faostat2018/landTransformationFromCropland20YearAverage.py +0 -74
- hestia_earth/models/hyde32/__init__.py +0 -13
- hestia_earth/models/hyde32/landTransformationFromCropland100YearAverageDuringCycle.py +0 -60
- hestia_earth/models/hyde32/landTransformationFromCropland20YearAverageDuringCycle.py +0 -60
- hestia_earth/models/hyde32/landTransformationFromForest100YearAverageDuringCycle.py +0 -60
- hestia_earth/models/hyde32/landTransformationFromForest20YearAverageDuringCycle.py +0 -60
- hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle.py +0 -61
- hestia_earth/models/hyde32/landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py +0 -61
- hestia_earth/models/hyde32/landTransformationFromPermanentPasture100YearAverageDuringCycle.py +0 -61
- hestia_earth/models/hyde32/landTransformationFromPermanentPasture20YearAverageDuringCycle.py +0 -61
- hestia_earth/models/hyde32/utils.py +0 -72
- hestia_earth/models/linkedImpactAssessment/landTransformationFromForest100YearAverageInputsProduction.py +0 -36
- hestia_earth/models/linkedImpactAssessment/landTransformationFromForest20YearAverageInputsProduction.py +0 -36
- hestia_earth/models/linkedImpactAssessment/landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction.py +0 -36
- hestia_earth/models/linkedImpactAssessment/landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction.py +0 -36
- hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPasture100YearAverageInputsProduction.py +0 -36
- hestia_earth/models/linkedImpactAssessment/landTransformationFromPermanentPasture20YearAverageInputsProduction.py +0 -36
- tests/models/blonkConsultants2016/test_landTransformationFromForest20YearAverageDuringCycle.py +0 -36
- tests/models/cycle/pre_checks/test_cache_sources.py +0 -25
- tests/models/faostat2018/test_landTransformationFromCropland100YearAverage.py +0 -40
- tests/models/faostat2018/test_landTransformationFromCropland20YearAverage.py +0 -40
- tests/models/hyde32/__init__.py +0 -0
- tests/models/hyde32/test_landTransformationFromCropland100YearAverageDuringCycle.py +0 -21
- tests/models/hyde32/test_landTransformationFromCropland20YearAverageDuringCycle.py +0 -21
- tests/models/hyde32/test_landTransformationFromOtherNaturalVegetation100YearAverageDuringCycle.py +0 -23
- tests/models/hyde32/test_landTransformationFromOtherNaturalVegetation20YearAverageDuringCycle.py +0 -21
- tests/models/hyde32/test_landTransformationFromPermanentPasture100YearAverageDuringCycle.py +0 -21
- tests/models/hyde32/test_landTransformationFromPermanentPasture20YearAverageDuringCycle.py +0 -21
- tests/models/linkedImpactAssessment/test_landTransformationFromCropland100YearAverageInputsProduction.py +0 -23
- tests/models/linkedImpactAssessment/test_landTransformationFromCropland20YearAverageInputsProduction.py +0 -23
- tests/models/linkedImpactAssessment/test_landTransformationFromOtherNaturalVegetation100YearAverageInputsProduction.py +0 -23
- tests/models/linkedImpactAssessment/test_landTransformationFromOtherNaturalVegetation20YearAverageInputsProduction.py +0 -23
- tests/models/linkedImpactAssessment/test_landTransformationFromPermanentPasture100YearAverageInputsProduction.py +0 -24
- tests/models/linkedImpactAssessment/test_landTransformationFromPermanentPasture20YearAverageInputsProduction.py +0 -24
- tests/models/site/pre_checks/test_cache_sources.py +0 -21
- {hestia_earth_models-0.64.14.dist-info → hestia_earth_models-0.65.0.dist-info}/LICENSE +0 -0
- {hestia_earth_models-0.64.14.dist-info → hestia_earth_models-0.65.0.dist-info}/WHEEL +0 -0
- {hestia_earth_models-0.64.14.dist-info → hestia_earth_models-0.65.0.dist-info}/top_level.txt +0 -0
|
@@ -171,443 +171,443 @@
|
|
|
171
171
|
},
|
|
172
172
|
{
|
|
173
173
|
"@type": "Term",
|
|
174
|
-
"@id": "
|
|
174
|
+
"@id": "trichlorofluoromethaneToAirIndustrialProcesses"
|
|
175
175
|
},
|
|
176
176
|
{
|
|
177
177
|
"@type": "Term",
|
|
178
|
-
"@id": "
|
|
178
|
+
"@id": "chloropentafluoroethaneToAirInputsProduction"
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"@type": "Term",
|
|
182
|
-
"@id": "
|
|
182
|
+
"@id": "po43ToSurfaceWaterInputsProduction"
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
185
|
"@type": "Term",
|
|
186
|
-
"@id": "
|
|
186
|
+
"@id": "nitriteToAirInputsProduction"
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
"@type": "Term",
|
|
190
|
-
"@id": "
|
|
190
|
+
"@id": "pm25ToAirAnimalHousing"
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
"@type": "Term",
|
|
194
|
-
"@id": "
|
|
194
|
+
"@id": "12DibromotetrafluoroethaneToAirIndustrialProcesses"
|
|
195
195
|
},
|
|
196
196
|
{
|
|
197
197
|
"@type": "Term",
|
|
198
|
-
"@id": "
|
|
198
|
+
"@id": "22Dichloro111TrifluoroethaneToAirInputsProduction"
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
201
|
"@type": "Term",
|
|
202
|
-
"@id": "
|
|
202
|
+
"@id": "33Dichloro11122PentafluoropropaneToAirIndustrialProcesses"
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
"@type": "Term",
|
|
206
|
-
"@id": "
|
|
206
|
+
"@id": "po43ToSurfaceWaterSoilFlux"
|
|
207
207
|
},
|
|
208
208
|
{
|
|
209
209
|
"@type": "Term",
|
|
210
|
-
"@id": "
|
|
210
|
+
"@id": "22Dichloro111TrifluoroethaneToAirIndustrialProcesses"
|
|
211
211
|
},
|
|
212
212
|
{
|
|
213
213
|
"@type": "Term",
|
|
214
|
-
"@id": "
|
|
214
|
+
"@id": "noToAirWasteTreatment"
|
|
215
215
|
},
|
|
216
216
|
{
|
|
217
217
|
"@type": "Term",
|
|
218
|
-
"@id": "
|
|
218
|
+
"@id": "nmvocToAirAnimalHousing"
|
|
219
219
|
},
|
|
220
220
|
{
|
|
221
221
|
"@type": "Term",
|
|
222
|
-
"@id": "
|
|
222
|
+
"@id": "pesticideToWaterPesticideApplication"
|
|
223
223
|
},
|
|
224
224
|
{
|
|
225
225
|
"@type": "Term",
|
|
226
|
-
"@id": "
|
|
226
|
+
"@id": "so2ToAirIndustrialProcesses"
|
|
227
227
|
},
|
|
228
228
|
{
|
|
229
229
|
"@type": "Term",
|
|
230
|
-
"@id": "
|
|
230
|
+
"@id": "no3ToAirIndustrialProcesses"
|
|
231
231
|
},
|
|
232
232
|
{
|
|
233
233
|
"@type": "Term",
|
|
234
|
-
"@id": "
|
|
234
|
+
"@id": "pesticideToWaterInputsProduction"
|
|
235
235
|
},
|
|
236
236
|
{
|
|
237
237
|
"@type": "Term",
|
|
238
|
-
"@id": "
|
|
238
|
+
"@id": "nmvocToAirExcreta"
|
|
239
239
|
},
|
|
240
240
|
{
|
|
241
241
|
"@type": "Term",
|
|
242
|
-
"@id": "
|
|
242
|
+
"@id": "nmvocToAirSilageStorage"
|
|
243
243
|
},
|
|
244
244
|
{
|
|
245
245
|
"@type": "Term",
|
|
246
|
-
"@id": "
|
|
246
|
+
"@id": "n2OToAirCropResidueDecompositionDirect"
|
|
247
247
|
},
|
|
248
248
|
{
|
|
249
249
|
"@type": "Term",
|
|
250
|
-
"@id": "
|
|
250
|
+
"@id": "so3ToAirIndustrialProcesses"
|
|
251
251
|
},
|
|
252
252
|
{
|
|
253
253
|
"@type": "Term",
|
|
254
|
-
"@id": "
|
|
254
|
+
"@id": "pesticideToHarvestedCropInputsProduction"
|
|
255
255
|
},
|
|
256
256
|
{
|
|
257
257
|
"@type": "Term",
|
|
258
|
-
"@id": "
|
|
258
|
+
"@id": "nh4ToGroundwaterOrganicFertiliser"
|
|
259
259
|
},
|
|
260
260
|
{
|
|
261
261
|
"@type": "Term",
|
|
262
|
-
"@id": "
|
|
262
|
+
"@id": "pToGroundwaterSoilFlux"
|
|
263
263
|
},
|
|
264
264
|
{
|
|
265
265
|
"@type": "Term",
|
|
266
|
-
"@id": "
|
|
266
|
+
"@id": "dibromodifluoromethaneToAirInputsProduction"
|
|
267
267
|
},
|
|
268
268
|
{
|
|
269
269
|
"@type": "Term",
|
|
270
|
-
"@id": "
|
|
270
|
+
"@id": "noxToAirInorganicFertiliser"
|
|
271
271
|
},
|
|
272
272
|
{
|
|
273
273
|
"@type": "Term",
|
|
274
|
-
"@id": "
|
|
274
|
+
"@id": "bromomethaneToAirIndustrialProcesses"
|
|
275
275
|
},
|
|
276
276
|
{
|
|
277
277
|
"@type": "Term",
|
|
278
|
-
"@id": "
|
|
278
|
+
"@id": "bromomethaneToAirInputsProduction"
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
281
|
"@type": "Term",
|
|
282
|
-
"@id": "
|
|
282
|
+
"@id": "pToSurfaceWaterSoilFlux"
|
|
283
283
|
},
|
|
284
284
|
{
|
|
285
285
|
"@type": "Term",
|
|
286
|
-
"@id": "
|
|
286
|
+
"@id": "nh3ToAirInputsProduction"
|
|
287
287
|
},
|
|
288
288
|
{
|
|
289
289
|
"@type": "Term",
|
|
290
|
-
"@id": "
|
|
290
|
+
"@id": "noxToAirFuelCombustion"
|
|
291
291
|
},
|
|
292
292
|
{
|
|
293
293
|
"@type": "Term",
|
|
294
|
-
"@id": "
|
|
294
|
+
"@id": "co2ToAirSoilOrganicCarbonStockChangeLandUseChange"
|
|
295
295
|
},
|
|
296
296
|
{
|
|
297
297
|
"@type": "Term",
|
|
298
|
-
"@id": "
|
|
298
|
+
"@id": "ch4ToAirIndustrialProcessesNonFossil"
|
|
299
299
|
},
|
|
300
300
|
{
|
|
301
301
|
"@type": "Term",
|
|
302
|
-
"@id": "
|
|
302
|
+
"@id": "co2ToAirSoilInorganicCarbonStockChangeLandUseChange"
|
|
303
303
|
},
|
|
304
304
|
{
|
|
305
305
|
"@type": "Term",
|
|
306
|
-
"@id": "
|
|
306
|
+
"@id": "co2ToAirSoilFlux"
|
|
307
307
|
},
|
|
308
308
|
{
|
|
309
309
|
"@type": "Term",
|
|
310
|
-
"@id": "
|
|
310
|
+
"@id": "n2ToAirOrganicFertiliser"
|
|
311
311
|
},
|
|
312
312
|
{
|
|
313
313
|
"@type": "Term",
|
|
314
|
-
"@id": "
|
|
314
|
+
"@id": "ch4ToAirOrganicSoilCultivation"
|
|
315
315
|
},
|
|
316
316
|
{
|
|
317
317
|
"@type": "Term",
|
|
318
|
-
"@id": "
|
|
318
|
+
"@id": "ch4ToAirWasteTreatment"
|
|
319
319
|
},
|
|
320
320
|
{
|
|
321
321
|
"@type": "Term",
|
|
322
|
-
"@id": "
|
|
322
|
+
"@id": "ch4ToAirFuelCombustion"
|
|
323
323
|
},
|
|
324
324
|
{
|
|
325
325
|
"@type": "Term",
|
|
326
|
-
"@id": "
|
|
326
|
+
"@id": "n2ToAirExcreta"
|
|
327
327
|
},
|
|
328
328
|
{
|
|
329
329
|
"@type": "Term",
|
|
330
|
-
"@id": "
|
|
330
|
+
"@id": "co2ToAirAboveGroundBiomassStockChangeLandUseChange"
|
|
331
331
|
},
|
|
332
332
|
{
|
|
333
333
|
"@type": "Term",
|
|
334
|
-
"@id": "
|
|
334
|
+
"@id": "n2OToAirCropResidueBurningIndirect"
|
|
335
335
|
},
|
|
336
336
|
{
|
|
337
337
|
"@type": "Term",
|
|
338
|
-
"@id": "
|
|
338
|
+
"@id": "co2ToAirDeadOrganicMatterStockChangeLandUseChange"
|
|
339
339
|
},
|
|
340
340
|
{
|
|
341
341
|
"@type": "Term",
|
|
342
|
-
"@id": "
|
|
342
|
+
"@id": "nh3ToAirFuelCombustion"
|
|
343
343
|
},
|
|
344
344
|
{
|
|
345
345
|
"@type": "Term",
|
|
346
|
-
"@id": "
|
|
346
|
+
"@id": "noToAirSoilFlux"
|
|
347
347
|
},
|
|
348
348
|
{
|
|
349
349
|
"@type": "Term",
|
|
350
|
-
"@id": "
|
|
350
|
+
"@id": "co2ToAirSoilOrganicCarbonStockChangeManagementChange"
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
"@type": "Term",
|
|
354
|
-
"@id": "
|
|
354
|
+
"@id": "noxToAirOrganicSoilCultivation"
|
|
355
355
|
},
|
|
356
356
|
{
|
|
357
357
|
"@type": "Term",
|
|
358
|
-
"@id": "
|
|
358
|
+
"@id": "n2OToAirFuelCombustionDirect"
|
|
359
359
|
},
|
|
360
360
|
{
|
|
361
361
|
"@type": "Term",
|
|
362
|
-
"@id": "
|
|
362
|
+
"@id": "nh4ToGroundwaterInorganicFertiliser"
|
|
363
363
|
},
|
|
364
364
|
{
|
|
365
365
|
"@type": "Term",
|
|
366
|
-
"@id": "
|
|
366
|
+
"@id": "noxToAirCropResidueDecomposition"
|
|
367
367
|
},
|
|
368
368
|
{
|
|
369
369
|
"@type": "Term",
|
|
370
|
-
"@id": "
|
|
370
|
+
"@id": "nToSurfaceWaterAquacultureSystems"
|
|
371
371
|
},
|
|
372
372
|
{
|
|
373
373
|
"@type": "Term",
|
|
374
|
-
"@id": "
|
|
374
|
+
"@id": "noToAirAquacultureSystems"
|
|
375
375
|
},
|
|
376
376
|
{
|
|
377
377
|
"@type": "Term",
|
|
378
|
-
"@id": "
|
|
378
|
+
"@id": "n2OToAirInputsProduction"
|
|
379
379
|
},
|
|
380
380
|
{
|
|
381
381
|
"@type": "Term",
|
|
382
|
-
"@id": "
|
|
382
|
+
"@id": "n2OToAirExcretaDirect"
|
|
383
383
|
},
|
|
384
384
|
{
|
|
385
385
|
"@type": "Term",
|
|
386
|
-
"@id": "
|
|
386
|
+
"@id": "1Chloro11DifluoroethaneToAirInputsProduction"
|
|
387
387
|
},
|
|
388
388
|
{
|
|
389
389
|
"@type": "Term",
|
|
390
|
-
"@id": "
|
|
390
|
+
"@id": "112TrichlorotrifluoroethaneToAirIndustrialProcesses"
|
|
391
391
|
},
|
|
392
392
|
{
|
|
393
393
|
"@type": "Term",
|
|
394
|
-
"@id": "
|
|
394
|
+
"@id": "noxToAirNaturalVegetationBurning"
|
|
395
395
|
},
|
|
396
396
|
{
|
|
397
397
|
"@type": "Term",
|
|
398
|
-
"@id": "
|
|
398
|
+
"@id": "nToSurfaceWaterInputsProduction"
|
|
399
399
|
},
|
|
400
400
|
{
|
|
401
401
|
"@type": "Term",
|
|
402
|
-
"@id": "
|
|
402
|
+
"@id": "carbonTetrachlorideToAirInputsProduction"
|
|
403
403
|
},
|
|
404
404
|
{
|
|
405
405
|
"@type": "Term",
|
|
406
|
-
"@id": "
|
|
406
|
+
"@id": "no3ToAirInputsProduction"
|
|
407
407
|
},
|
|
408
408
|
{
|
|
409
409
|
"@type": "Term",
|
|
410
|
-
"@id": "
|
|
410
|
+
"@id": "chlorodifluoromethaneToAirInputsProduction"
|
|
411
411
|
},
|
|
412
412
|
{
|
|
413
413
|
"@type": "Term",
|
|
414
|
-
"@id": "
|
|
414
|
+
"@id": "no3ToSurfaceWaterExcreta"
|
|
415
415
|
},
|
|
416
416
|
{
|
|
417
417
|
"@type": "Term",
|
|
418
|
-
"@id": "
|
|
418
|
+
"@id": "dichlorotetrafluoroethaneToAirIndustrialProcesses"
|
|
419
419
|
},
|
|
420
420
|
{
|
|
421
421
|
"@type": "Term",
|
|
422
|
-
"@id": "
|
|
422
|
+
"@id": "so2ToAirFuelCombustion"
|
|
423
423
|
},
|
|
424
424
|
{
|
|
425
425
|
"@type": "Term",
|
|
426
|
-
"@id": "
|
|
426
|
+
"@id": "pm10ToAirFuelCombustion"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
429
|
"@type": "Term",
|
|
430
|
-
"@id": "
|
|
430
|
+
"@id": "soxToAirIndustrialProcesses"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
433
|
"@type": "Term",
|
|
434
|
-
"@id": "
|
|
434
|
+
"@id": "tefluraneToAirInputsProduction"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
437
|
"@type": "Term",
|
|
438
|
-
"@id": "
|
|
438
|
+
"@id": "no3ToGroundwaterWasteTreatment"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
441
|
"@type": "Term",
|
|
442
|
-
"@id": "
|
|
442
|
+
"@id": "nh4ToGroundwaterIndustrialProcesses"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
445
|
"@type": "Term",
|
|
446
|
-
"@id": "
|
|
446
|
+
"@id": "sf6ToAirIndustrialProcesses"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
449
|
"@type": "Term",
|
|
450
|
-
"@id": "
|
|
450
|
+
"@id": "noToAirIndustrialProcesses"
|
|
451
451
|
},
|
|
452
452
|
{
|
|
453
453
|
"@type": "Term",
|
|
454
|
-
"@id": "
|
|
454
|
+
"@id": "no3ToGroundwaterExcreta"
|
|
455
455
|
},
|
|
456
456
|
{
|
|
457
457
|
"@type": "Term",
|
|
458
|
-
"@id": "
|
|
458
|
+
"@id": "noToAirOrganicFertiliser"
|
|
459
459
|
},
|
|
460
460
|
{
|
|
461
461
|
"@type": "Term",
|
|
462
|
-
"@id": "
|
|
462
|
+
"@id": "nmvocToAirFuelCombustion"
|
|
463
463
|
},
|
|
464
464
|
{
|
|
465
465
|
"@type": "Term",
|
|
466
|
-
"@id": "
|
|
466
|
+
"@id": "pToSurfaceWaterExcreta"
|
|
467
467
|
},
|
|
468
468
|
{
|
|
469
469
|
"@type": "Term",
|
|
470
|
-
"@id": "
|
|
470
|
+
"@id": "nh3ToAirNaturalVegetationBurning"
|
|
471
471
|
},
|
|
472
472
|
{
|
|
473
473
|
"@type": "Term",
|
|
474
|
-
"@id": "
|
|
474
|
+
"@id": "no3ToGroundwaterCropResidueDecomposition"
|
|
475
475
|
},
|
|
476
476
|
{
|
|
477
477
|
"@type": "Term",
|
|
478
|
-
"@id": "
|
|
478
|
+
"@id": "1Chloro11DifluoroethaneToAirIndustrialProcesses"
|
|
479
479
|
},
|
|
480
480
|
{
|
|
481
481
|
"@type": "Term",
|
|
482
|
-
"@id": "
|
|
482
|
+
"@id": "noxToAirAquacultureSystems"
|
|
483
483
|
},
|
|
484
484
|
{
|
|
485
485
|
"@type": "Term",
|
|
486
|
-
"@id": "
|
|
486
|
+
"@id": "no2ToAirInputsProduction"
|
|
487
487
|
},
|
|
488
488
|
{
|
|
489
489
|
"@type": "Term",
|
|
490
|
-
"@id": "
|
|
490
|
+
"@id": "13Dichloro11223PentafluoropropaneToAirIndustrialProcesses"
|
|
491
491
|
},
|
|
492
492
|
{
|
|
493
493
|
"@type": "Term",
|
|
494
|
-
"@id": "
|
|
494
|
+
"@id": "hcfc124ToAirInputsProduction"
|
|
495
495
|
},
|
|
496
496
|
{
|
|
497
497
|
"@type": "Term",
|
|
498
|
-
"@id": "
|
|
498
|
+
"@id": "pToSurfaceWaterIndustrialProcesses"
|
|
499
499
|
},
|
|
500
500
|
{
|
|
501
501
|
"@type": "Term",
|
|
502
|
-
"@id": "
|
|
502
|
+
"@id": "noxToAirCropResidueBurning"
|
|
503
503
|
},
|
|
504
504
|
{
|
|
505
505
|
"@type": "Term",
|
|
506
|
-
"@id": "
|
|
506
|
+
"@id": "nh4ToSurfaceWaterAquacultureSystems"
|
|
507
507
|
},
|
|
508
508
|
{
|
|
509
509
|
"@type": "Term",
|
|
510
|
-
"@id": "
|
|
510
|
+
"@id": "n2OToAirOrganicSoilCultivationIndirect"
|
|
511
511
|
},
|
|
512
512
|
{
|
|
513
513
|
"@type": "Term",
|
|
514
|
-
"@id": "
|
|
514
|
+
"@id": "no3ToSurfaceWaterIndustrialProcesses"
|
|
515
515
|
},
|
|
516
516
|
{
|
|
517
517
|
"@type": "Term",
|
|
518
|
-
"@id": "
|
|
518
|
+
"@id": "nErosionSoilFlux"
|
|
519
519
|
},
|
|
520
520
|
{
|
|
521
521
|
"@type": "Term",
|
|
522
|
-
"@id": "
|
|
522
|
+
"@id": "n2OToAirOrganicSoilCultivationDirect"
|
|
523
523
|
},
|
|
524
524
|
{
|
|
525
525
|
"@type": "Term",
|
|
526
|
-
"@id": "
|
|
526
|
+
"@id": "n2OToAirSoilFlux"
|
|
527
527
|
},
|
|
528
528
|
{
|
|
529
529
|
"@type": "Term",
|
|
530
|
-
"@id": "
|
|
530
|
+
"@id": "nh4ToGroundwaterWasteTreatment"
|
|
531
531
|
},
|
|
532
532
|
{
|
|
533
533
|
"@type": "Term",
|
|
534
|
-
"@id": "
|
|
534
|
+
"@id": "no3ToGroundwaterSoilFlux"
|
|
535
535
|
},
|
|
536
536
|
{
|
|
537
537
|
"@type": "Term",
|
|
538
|
-
"@id": "
|
|
538
|
+
"@id": "n2ToAirAquacultureSystems"
|
|
539
539
|
},
|
|
540
540
|
{
|
|
541
541
|
"@type": "Term",
|
|
542
|
-
"@id": "
|
|
542
|
+
"@id": "nh3ToAirOrganicSoilBurning"
|
|
543
543
|
},
|
|
544
544
|
{
|
|
545
545
|
"@type": "Term",
|
|
546
|
-
"@id": "
|
|
546
|
+
"@id": "noxToAirOrganicFertiliser"
|
|
547
547
|
},
|
|
548
548
|
{
|
|
549
549
|
"@type": "Term",
|
|
550
|
-
"@id": "
|
|
550
|
+
"@id": "pesticideToAirPesticideApplication"
|
|
551
551
|
},
|
|
552
552
|
{
|
|
553
553
|
"@type": "Term",
|
|
554
|
-
"@id": "
|
|
554
|
+
"@id": "nh3ToAirIndustrialProcesses"
|
|
555
555
|
},
|
|
556
556
|
{
|
|
557
557
|
"@type": "Term",
|
|
558
|
-
"@id": "
|
|
558
|
+
"@id": "no2ToAirIndustrialProcesses"
|
|
559
559
|
},
|
|
560
560
|
{
|
|
561
561
|
"@type": "Term",
|
|
562
|
-
"@id": "
|
|
562
|
+
"@id": "tspToAirAnimalHousing"
|
|
563
563
|
},
|
|
564
564
|
{
|
|
565
565
|
"@type": "Term",
|
|
566
|
-
"@id": "
|
|
566
|
+
"@id": "nh4ToAirInputsProduction"
|
|
567
567
|
},
|
|
568
568
|
{
|
|
569
569
|
"@type": "Term",
|
|
570
|
-
"@id": "
|
|
570
|
+
"@id": "n2OToAirOrganicSoilBurningIndirect"
|
|
571
571
|
},
|
|
572
572
|
{
|
|
573
573
|
"@type": "Term",
|
|
574
|
-
"@id": "
|
|
574
|
+
"@id": "1112TetrafluoroethaneToAirInputsProduction"
|
|
575
575
|
},
|
|
576
576
|
{
|
|
577
577
|
"@type": "Term",
|
|
578
|
-
"@id": "
|
|
578
|
+
"@id": "ionisingCompoundsToAirInputsProduction"
|
|
579
579
|
},
|
|
580
580
|
{
|
|
581
581
|
"@type": "Term",
|
|
582
|
-
"@id": "
|
|
582
|
+
"@id": "n2OToAirAquacultureSystemsDirect"
|
|
583
583
|
},
|
|
584
584
|
{
|
|
585
585
|
"@type": "Term",
|
|
586
|
-
"@id": "
|
|
586
|
+
"@id": "ch4ToAirExcreta"
|
|
587
587
|
},
|
|
588
588
|
{
|
|
589
589
|
"@type": "Term",
|
|
590
|
-
"@id": "
|
|
590
|
+
"@id": "n2ToAirSoilFlux"
|
|
591
591
|
},
|
|
592
592
|
{
|
|
593
593
|
"@type": "Term",
|
|
594
|
-
"@id": "
|
|
594
|
+
"@id": "coToAirInputsProduction"
|
|
595
595
|
},
|
|
596
596
|
{
|
|
597
597
|
"@type": "Term",
|
|
598
|
-
"@id": "
|
|
598
|
+
"@id": "ch4ToAirSoilFlux"
|
|
599
599
|
},
|
|
600
600
|
{
|
|
601
601
|
"@type": "Term",
|
|
602
|
-
"@id": "
|
|
602
|
+
"@id": "co2ToAirSoilInorganicCarbonStockChangeManagementChange"
|
|
603
603
|
},
|
|
604
604
|
{
|
|
605
605
|
"@type": "Term",
|
|
606
|
-
"@id": "
|
|
606
|
+
"@id": "n2OToAirBackgroundSoilFluxDirect"
|
|
607
607
|
},
|
|
608
608
|
{
|
|
609
609
|
"@type": "Term",
|
|
610
|
-
"@id": "
|
|
610
|
+
"@id": "coToAirFuelCombustion"
|
|
611
611
|
},
|
|
612
612
|
{
|
|
613
613
|
"@type": "Term",
|
|
@@ -1302,11 +1302,11 @@
|
|
|
1302
1302
|
},
|
|
1303
1303
|
{
|
|
1304
1304
|
"@type": "Term",
|
|
1305
|
-
"@id": "
|
|
1305
|
+
"@id": "residueRemoved"
|
|
1306
1306
|
},
|
|
1307
1307
|
{
|
|
1308
1308
|
"@type": "Term",
|
|
1309
|
-
"@id": "
|
|
1309
|
+
"@id": "residueIncorporated"
|
|
1310
1310
|
},
|
|
1311
1311
|
{
|
|
1312
1312
|
"@type": "Term",
|
|
@@ -1350,27 +1350,27 @@
|
|
|
1350
1350
|
},
|
|
1351
1351
|
{
|
|
1352
1352
|
"@type": "Term",
|
|
1353
|
-
"@id": "
|
|
1353
|
+
"@id": "discardedCropRemoved"
|
|
1354
1354
|
},
|
|
1355
1355
|
{
|
|
1356
1356
|
"@type": "Term",
|
|
1357
|
-
"@id": "
|
|
1357
|
+
"@id": "aboveGroundCropResidueTotal"
|
|
1358
1358
|
},
|
|
1359
1359
|
{
|
|
1360
1360
|
"@type": "Term",
|
|
1361
|
-
"@id": "
|
|
1361
|
+
"@id": "aboveGroundCropResidueIncorporated"
|
|
1362
1362
|
},
|
|
1363
1363
|
{
|
|
1364
1364
|
"@type": "Term",
|
|
1365
|
-
"@id": "
|
|
1365
|
+
"@id": "aboveGroundCropResidueBurnt"
|
|
1366
1366
|
},
|
|
1367
1367
|
{
|
|
1368
1368
|
"@type": "Term",
|
|
1369
|
-
"@id": "
|
|
1369
|
+
"@id": "belowGroundCropResidue"
|
|
1370
1370
|
},
|
|
1371
1371
|
{
|
|
1372
1372
|
"@type": "Term",
|
|
1373
|
-
"@id": "
|
|
1373
|
+
"@id": "aboveGroundCropResidueLeftOnField"
|
|
1374
1374
|
}
|
|
1375
1375
|
]
|
|
1376
1376
|
},
|
|
@@ -1768,7 +1768,7 @@
|
|
|
1768
1768
|
"@type": "Term",
|
|
1769
1769
|
"name": "Generic crop, seed",
|
|
1770
1770
|
"@id": "genericCropSeed",
|
|
1771
|
-
"_score":
|
|
1771
|
+
"_score": 24.87239
|
|
1772
1772
|
}
|
|
1773
1773
|
]
|
|
1774
1774
|
},
|
|
@@ -1830,15 +1830,15 @@
|
|
|
1830
1830
|
},
|
|
1831
1831
|
{
|
|
1832
1832
|
"@type": "Term",
|
|
1833
|
-
"@id": "
|
|
1833
|
+
"@id": "irrigatedTypeUnspecified"
|
|
1834
1834
|
},
|
|
1835
1835
|
{
|
|
1836
1836
|
"@type": "Term",
|
|
1837
|
-
"@id": "
|
|
1837
|
+
"@id": "irrigatedDripIrrigation"
|
|
1838
1838
|
},
|
|
1839
1839
|
{
|
|
1840
1840
|
"@type": "Term",
|
|
1841
|
-
"@id": "
|
|
1841
|
+
"@id": "irrigatedSprinklerIrrigation"
|
|
1842
1842
|
},
|
|
1843
1843
|
{
|
|
1844
1844
|
"@type": "Term",
|
|
@@ -2004,157 +2004,157 @@
|
|
|
2004
2004
|
"@type": "Term",
|
|
2005
2005
|
"name": "Glass or high accessible cover",
|
|
2006
2006
|
"@id": "glassOrHighAccessibleCover",
|
|
2007
|
-
"_score": 59.
|
|
2007
|
+
"_score": 59.580826
|
|
2008
2008
|
},
|
|
2009
2009
|
{
|
|
2010
2010
|
"@type": "Term",
|
|
2011
2011
|
"name": "Sea or ocean",
|
|
2012
2012
|
"@id": "seaOrOcean",
|
|
2013
|
-
"_score": 49.
|
|
2013
|
+
"_score": 49.219673
|
|
2014
2014
|
},
|
|
2015
2015
|
{
|
|
2016
2016
|
"@type": "Term",
|
|
2017
2017
|
"name": "River or stream",
|
|
2018
2018
|
"@id": "riverOrStream",
|
|
2019
|
-
"_score":
|
|
2019
|
+
"_score": 48.07742
|
|
2020
2020
|
},
|
|
2021
2021
|
{
|
|
2022
2022
|
"@type": "Term",
|
|
2023
2023
|
"name": "Other natural vegetation",
|
|
2024
2024
|
"@id": "otherNaturalVegetation",
|
|
2025
|
-
"_score":
|
|
2025
|
+
"_score": 42.030323
|
|
2026
2026
|
},
|
|
2027
2027
|
{
|
|
2028
2028
|
"@type": "Term",
|
|
2029
|
-
"name": "
|
|
2030
|
-
"@id": "
|
|
2031
|
-
"_score":
|
|
2029
|
+
"name": "Food retailer",
|
|
2030
|
+
"@id": "foodRetailer",
|
|
2031
|
+
"_score": 40.473133
|
|
2032
2032
|
},
|
|
2033
2033
|
{
|
|
2034
2034
|
"@type": "Term",
|
|
2035
|
-
"name": "
|
|
2036
|
-
"@id": "
|
|
2037
|
-
"_score":
|
|
2035
|
+
"name": "Agri-food processor",
|
|
2036
|
+
"@id": "agriFoodProcessor",
|
|
2037
|
+
"_score": 40.11944
|
|
2038
2038
|
},
|
|
2039
2039
|
{
|
|
2040
2040
|
"@type": "Term",
|
|
2041
2041
|
"name": "Natural forest",
|
|
2042
2042
|
"@id": "naturalForest",
|
|
2043
|
-
"_score":
|
|
2043
|
+
"_score": 31.730024
|
|
2044
2044
|
},
|
|
2045
2045
|
{
|
|
2046
2046
|
"@type": "Term",
|
|
2047
2047
|
"name": "Permanent pasture",
|
|
2048
2048
|
"@id": "permanentPasture",
|
|
2049
|
-
"_score":
|
|
2049
|
+
"_score": 28.174412
|
|
2050
2050
|
},
|
|
2051
2051
|
{
|
|
2052
2052
|
"@type": "Term",
|
|
2053
2053
|
"name": "Animal housing",
|
|
2054
2054
|
"@id": "animalHousing",
|
|
2055
|
-
"_score":
|
|
2056
|
-
},
|
|
2057
|
-
{
|
|
2058
|
-
"@type": "Term",
|
|
2059
|
-
"name": "Root or tuber crop plant",
|
|
2060
|
-
"@id": "rootOrTuberCropPlant",
|
|
2061
|
-
"_score": 24.73021
|
|
2055
|
+
"_score": 27.288857
|
|
2062
2056
|
},
|
|
2063
2057
|
{
|
|
2064
2058
|
"@type": "Term",
|
|
2065
2059
|
"name": "High intensity grazing pasture",
|
|
2066
2060
|
"@id": "highIntensityGrazingPasture",
|
|
2067
|
-
"_score":
|
|
2061
|
+
"_score": 24.550583
|
|
2068
2062
|
},
|
|
2069
2063
|
{
|
|
2070
2064
|
"@type": "Term",
|
|
2071
|
-
"name": "
|
|
2072
|
-
"@id": "
|
|
2073
|
-
"_score":
|
|
2065
|
+
"name": "Root or tuber crop plant",
|
|
2066
|
+
"@id": "rootOrTuberCropPlant",
|
|
2067
|
+
"_score": 23.820816
|
|
2074
2068
|
},
|
|
2075
2069
|
{
|
|
2076
2070
|
"@type": "Term",
|
|
2077
|
-
"name": "
|
|
2078
|
-
"@id": "
|
|
2079
|
-
"_score":
|
|
2071
|
+
"name": "Forest",
|
|
2072
|
+
"@id": "forest",
|
|
2073
|
+
"_score": 20.620052
|
|
2080
2074
|
},
|
|
2081
2075
|
{
|
|
2082
2076
|
"@type": "Term",
|
|
2083
2077
|
"name": "Plantation forest",
|
|
2084
2078
|
"@id": "plantationForest",
|
|
2085
|
-
"_score": 19.
|
|
2079
|
+
"_score": 19.783655
|
|
2086
2080
|
},
|
|
2087
2081
|
{
|
|
2088
2082
|
"@type": "Term",
|
|
2089
2083
|
"name": "Other land",
|
|
2090
2084
|
"@id": "otherLand",
|
|
2091
|
-
"_score":
|
|
2085
|
+
"_score": 19.563587
|
|
2092
2086
|
},
|
|
2093
2087
|
{
|
|
2094
2088
|
"@type": "Term",
|
|
2095
|
-
"name": "
|
|
2096
|
-
"@id": "
|
|
2097
|
-
"_score":
|
|
2089
|
+
"name": "Permanent cropland",
|
|
2090
|
+
"@id": "permanentCropland",
|
|
2091
|
+
"_score": 19.553766
|
|
2098
2092
|
},
|
|
2099
2093
|
{
|
|
2100
2094
|
"@type": "Term",
|
|
2101
2095
|
"name": "Lake",
|
|
2102
2096
|
"@id": "lake",
|
|
2103
|
-
"_score":
|
|
2097
|
+
"_score": 18.19668
|
|
2104
2098
|
},
|
|
2105
2099
|
{
|
|
2106
2100
|
"@type": "Term",
|
|
2107
2101
|
"name": "Red sea plume alga",
|
|
2108
2102
|
"@id": "redSeaPlumeAlga",
|
|
2109
|
-
"_score":
|
|
2110
|
-
},
|
|
2111
|
-
{
|
|
2112
|
-
"@type": "Term",
|
|
2113
|
-
"name": "Native pasture",
|
|
2114
|
-
"@id": "nativePasture",
|
|
2115
|
-
"_score": 16.83862
|
|
2103
|
+
"_score": 17.590275
|
|
2116
2104
|
},
|
|
2117
2105
|
{
|
|
2118
2106
|
"@type": "Term",
|
|
2119
2107
|
"name": "Sea kale plant",
|
|
2120
2108
|
"@id": "seaKalePlant",
|
|
2121
|
-
"_score":
|
|
2109
|
+
"_score": 17.506668
|
|
2122
2110
|
},
|
|
2123
2111
|
{
|
|
2124
2112
|
"@type": "Term",
|
|
2125
2113
|
"name": "Improved pasture",
|
|
2126
2114
|
"@id": "improvedPasture",
|
|
2127
|
-
"_score":
|
|
2115
|
+
"_score": 17.359146
|
|
2128
2116
|
},
|
|
2129
2117
|
{
|
|
2130
2118
|
"@type": "Term",
|
|
2131
|
-
"name": "
|
|
2132
|
-
"@id": "
|
|
2133
|
-
"_score":
|
|
2119
|
+
"name": "Native pasture",
|
|
2120
|
+
"@id": "nativePasture",
|
|
2121
|
+
"_score": 17.330988
|
|
2134
2122
|
},
|
|
2135
2123
|
{
|
|
2136
2124
|
"@type": "Term",
|
|
2137
2125
|
"name": "Nominally managed pasture",
|
|
2138
2126
|
"@id": "nominallyManagedPasture",
|
|
2139
|
-
"_score":
|
|
2127
|
+
"_score": 16.30069
|
|
2140
2128
|
},
|
|
2141
2129
|
{
|
|
2142
2130
|
"@type": "Term",
|
|
2143
2131
|
"name": "Severely degraded pasture",
|
|
2144
2132
|
"@id": "severelyDegradedPasture",
|
|
2145
|
-
"_score": 15.
|
|
2133
|
+
"_score": 15.709078
|
|
2134
|
+
},
|
|
2135
|
+
{
|
|
2136
|
+
"@type": "Term",
|
|
2137
|
+
"name": "Pond",
|
|
2138
|
+
"@id": "pond",
|
|
2139
|
+
"_score": 15.644154
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
"@type": "Term",
|
|
2143
|
+
"name": "River tamarind tree",
|
|
2144
|
+
"@id": "riverTamarindTree",
|
|
2145
|
+
"_score": 15.328306
|
|
2146
2146
|
},
|
|
2147
2147
|
{
|
|
2148
2148
|
"@type": "Term",
|
|
2149
2149
|
"name": "Cropland",
|
|
2150
2150
|
"@id": "cropland",
|
|
2151
|
-
"_score": 10.
|
|
2151
|
+
"_score": 10.521658
|
|
2152
2152
|
},
|
|
2153
2153
|
{
|
|
2154
2154
|
"@type": "Term",
|
|
2155
2155
|
"name": "Annual cropland",
|
|
2156
2156
|
"@id": "annualCropland",
|
|
2157
|
-
"_score": 10.
|
|
2157
|
+
"_score": 10.00343
|
|
2158
2158
|
}
|
|
2159
2159
|
]
|
|
2160
2160
|
},
|
|
@@ -3587,1071 +3587,1071 @@
|
|
|
3587
3587
|
},
|
|
3588
3588
|
{
|
|
3589
3589
|
"@type": "Term",
|
|
3590
|
-
"@id": "
|
|
3590
|
+
"@id": "okraPlant"
|
|
3591
3591
|
},
|
|
3592
3592
|
{
|
|
3593
3593
|
"@type": "Term",
|
|
3594
|
-
"@id": "
|
|
3594
|
+
"@id": "rockSamphirePlant"
|
|
3595
3595
|
},
|
|
3596
3596
|
{
|
|
3597
3597
|
"@type": "Term",
|
|
3598
|
-
"@id": "
|
|
3598
|
+
"@id": "pepinoDulcePlant"
|
|
3599
3599
|
},
|
|
3600
3600
|
{
|
|
3601
3601
|
"@type": "Term",
|
|
3602
|
-
"@id": "
|
|
3602
|
+
"@id": "horseradishPlant"
|
|
3603
3603
|
},
|
|
3604
3604
|
{
|
|
3605
3605
|
"@type": "Term",
|
|
3606
|
-
"@id": "
|
|
3606
|
+
"@id": "oatPlant"
|
|
3607
3607
|
},
|
|
3608
3608
|
{
|
|
3609
3609
|
"@type": "Term",
|
|
3610
|
-
"@id": "
|
|
3610
|
+
"@id": "hornedMelonVine"
|
|
3611
3611
|
},
|
|
3612
3612
|
{
|
|
3613
3613
|
"@type": "Term",
|
|
3614
|
-
"@id": "
|
|
3614
|
+
"@id": "genericGrassPlant"
|
|
3615
3615
|
},
|
|
3616
3616
|
{
|
|
3617
3617
|
"@type": "Term",
|
|
3618
|
-
"@id": "
|
|
3618
|
+
"@id": "chlorisPrieuriiPlant"
|
|
3619
3619
|
},
|
|
3620
3620
|
{
|
|
3621
3621
|
"@type": "Term",
|
|
3622
|
-
"@id": "
|
|
3622
|
+
"@id": "satsumaTree"
|
|
3623
3623
|
},
|
|
3624
3624
|
{
|
|
3625
3625
|
"@type": "Term",
|
|
3626
|
-
"@id": "
|
|
3626
|
+
"@id": "abyssinianKalePlant"
|
|
3627
3627
|
},
|
|
3628
3628
|
{
|
|
3629
3629
|
"@type": "Term",
|
|
3630
|
-
"@id": "
|
|
3630
|
+
"@id": "carambolaTree"
|
|
3631
3631
|
},
|
|
3632
3632
|
{
|
|
3633
3633
|
"@type": "Term",
|
|
3634
|
-
"@id": "
|
|
3634
|
+
"@id": "sweetSorghumPlant"
|
|
3635
3635
|
},
|
|
3636
3636
|
{
|
|
3637
3637
|
"@type": "Term",
|
|
3638
|
-
"@id": "
|
|
3638
|
+
"@id": "ricePlantFlooded"
|
|
3639
3639
|
},
|
|
3640
3640
|
{
|
|
3641
3641
|
"@type": "Term",
|
|
3642
|
-
"@id": "
|
|
3642
|
+
"@id": "winterSquashVine"
|
|
3643
3643
|
},
|
|
3644
3644
|
{
|
|
3645
3645
|
"@type": "Term",
|
|
3646
|
-
"@id": "
|
|
3646
|
+
"@id": "roseVine"
|
|
3647
3647
|
},
|
|
3648
3648
|
{
|
|
3649
3649
|
"@type": "Term",
|
|
3650
|
-
"@id": "
|
|
3650
|
+
"@id": "turmericPlant"
|
|
3651
3651
|
},
|
|
3652
3652
|
{
|
|
3653
3653
|
"@type": "Term",
|
|
3654
|
-
"@id": "
|
|
3654
|
+
"@id": "blueberryPlant"
|
|
3655
3655
|
},
|
|
3656
3656
|
{
|
|
3657
3657
|
"@type": "Term",
|
|
3658
|
-
"@id": "
|
|
3658
|
+
"@id": "abacaPlant"
|
|
3659
3659
|
},
|
|
3660
3660
|
{
|
|
3661
3661
|
"@type": "Term",
|
|
3662
|
-
"@id": "
|
|
3662
|
+
"@id": "camomilePlant"
|
|
3663
3663
|
},
|
|
3664
3664
|
{
|
|
3665
3665
|
"@type": "Term",
|
|
3666
|
-
"@id": "
|
|
3666
|
+
"@id": "blackberryPlant"
|
|
3667
3667
|
},
|
|
3668
3668
|
{
|
|
3669
3669
|
"@type": "Term",
|
|
3670
|
-
"@id": "
|
|
3670
|
+
"@id": "brazilNutTree"
|
|
3671
3671
|
},
|
|
3672
3672
|
{
|
|
3673
3673
|
"@type": "Term",
|
|
3674
|
-
"@id": "
|
|
3674
|
+
"@id": "artichokePlant"
|
|
3675
3675
|
},
|
|
3676
3676
|
{
|
|
3677
3677
|
"@type": "Term",
|
|
3678
|
-
"@id": "
|
|
3678
|
+
"@id": "breadfruitTree"
|
|
3679
3679
|
},
|
|
3680
3680
|
{
|
|
3681
3681
|
"@type": "Term",
|
|
3682
|
-
"@id": "
|
|
3682
|
+
"@id": "boragePlant"
|
|
3683
3683
|
},
|
|
3684
3684
|
{
|
|
3685
3685
|
"@type": "Term",
|
|
3686
|
-
"@id": "
|
|
3686
|
+
"@id": "celeriacPlant"
|
|
3687
3687
|
},
|
|
3688
3688
|
{
|
|
3689
3689
|
"@type": "Term",
|
|
3690
|
-
"@id": "
|
|
3690
|
+
"@id": "beetPlant"
|
|
3691
3691
|
},
|
|
3692
3692
|
{
|
|
3693
3693
|
"@type": "Term",
|
|
3694
|
-
"@id": "
|
|
3694
|
+
"@id": "aquaticCropPlant"
|
|
3695
3695
|
},
|
|
3696
3696
|
{
|
|
3697
3697
|
"@type": "Term",
|
|
3698
|
-
"@id": "
|
|
3698
|
+
"@id": "aromaticCropPlant"
|
|
3699
3699
|
},
|
|
3700
3700
|
{
|
|
3701
3701
|
"@type": "Term",
|
|
3702
|
-
"@id": "
|
|
3702
|
+
"@id": "blueLupinPlant"
|
|
3703
3703
|
},
|
|
3704
3704
|
{
|
|
3705
3705
|
"@type": "Term",
|
|
3706
|
-
"@id": "
|
|
3706
|
+
"@id": "chineseWaterChestnutPlant"
|
|
3707
3707
|
},
|
|
3708
3708
|
{
|
|
3709
3709
|
"@type": "Term",
|
|
3710
|
-
"@id": "
|
|
3710
|
+
"@id": "agriFoodProcessor"
|
|
3711
3711
|
},
|
|
3712
3712
|
{
|
|
3713
3713
|
"@type": "Term",
|
|
3714
|
-
"@id": "
|
|
3714
|
+
"@id": "indianSanburPlant"
|
|
3715
3715
|
},
|
|
3716
3716
|
{
|
|
3717
3717
|
"@type": "Term",
|
|
3718
|
-
"@id": "
|
|
3718
|
+
"@id": "medlarTree"
|
|
3719
3719
|
},
|
|
3720
3720
|
{
|
|
3721
3721
|
"@type": "Term",
|
|
3722
|
-
"@id": "
|
|
3722
|
+
"@id": "egyptianCrowfootGrassPlant"
|
|
3723
3723
|
},
|
|
3724
3724
|
{
|
|
3725
3725
|
"@type": "Term",
|
|
3726
|
-
"@id": "
|
|
3726
|
+
"@id": "kohlrabiPlant"
|
|
3727
3727
|
},
|
|
3728
3728
|
{
|
|
3729
3729
|
"@type": "Term",
|
|
3730
|
-
"@id": "
|
|
3730
|
+
"@id": "cardamomPlant"
|
|
3731
3731
|
},
|
|
3732
3732
|
{
|
|
3733
3733
|
"@type": "Term",
|
|
3734
|
-
"@id": "
|
|
3734
|
+
"@id": "forest"
|
|
3735
3735
|
},
|
|
3736
3736
|
{
|
|
3737
3737
|
"@type": "Term",
|
|
3738
|
-
"@id": "
|
|
3738
|
+
"@id": "permanentPasture"
|
|
3739
3739
|
},
|
|
3740
3740
|
{
|
|
3741
3741
|
"@type": "Term",
|
|
3742
|
-
"@id": "
|
|
3742
|
+
"@id": "walnutTree"
|
|
3743
3743
|
},
|
|
3744
3744
|
{
|
|
3745
3745
|
"@type": "Term",
|
|
3746
|
-
"@id": "
|
|
3746
|
+
"@id": "africanLocustBeanTree"
|
|
3747
3747
|
},
|
|
3748
3748
|
{
|
|
3749
3749
|
"@type": "Term",
|
|
3750
|
-
"@id": "
|
|
3750
|
+
"@id": "sisalPlant"
|
|
3751
3751
|
},
|
|
3752
3752
|
{
|
|
3753
3753
|
"@type": "Term",
|
|
3754
|
-
"@id": "
|
|
3754
|
+
"@id": "liquoricePlant"
|
|
3755
3755
|
},
|
|
3756
3756
|
{
|
|
3757
3757
|
"@type": "Term",
|
|
3758
|
-
"@id": "
|
|
3758
|
+
"@id": "sewanGrassPlant"
|
|
3759
3759
|
},
|
|
3760
3760
|
{
|
|
3761
3761
|
"@type": "Term",
|
|
3762
|
-
"@id": "
|
|
3762
|
+
"@id": "oilPalmTree"
|
|
3763
3763
|
},
|
|
3764
3764
|
{
|
|
3765
3765
|
"@type": "Term",
|
|
3766
|
-
"@id": "
|
|
3766
|
+
"@id": "setariaLachneaPlant"
|
|
3767
3767
|
},
|
|
3768
3768
|
{
|
|
3769
3769
|
"@type": "Term",
|
|
3770
|
-
"@id": "
|
|
3770
|
+
"@id": "jutePlant"
|
|
3771
3771
|
},
|
|
3772
3772
|
{
|
|
3773
3773
|
"@type": "Term",
|
|
3774
|
-
"@id": "
|
|
3774
|
+
"@id": "bermudaGrassPlant"
|
|
3775
3775
|
},
|
|
3776
3776
|
{
|
|
3777
3777
|
"@type": "Term",
|
|
3778
|
-
"@id": "
|
|
3778
|
+
"@id": "missionGrassPlant"
|
|
3779
3779
|
},
|
|
3780
3780
|
{
|
|
3781
3781
|
"@type": "Term",
|
|
3782
|
-
"@id": "
|
|
3782
|
+
"@id": "arabianStarflowerPlant"
|
|
3783
3783
|
},
|
|
3784
3784
|
{
|
|
3785
3785
|
"@type": "Term",
|
|
3786
|
-
"@id": "
|
|
3786
|
+
"@id": "marvelGrassPlant"
|
|
3787
3787
|
},
|
|
3788
3788
|
{
|
|
3789
3789
|
"@type": "Term",
|
|
3790
|
-
"@id": "
|
|
3790
|
+
"@id": "durumWheatPlant"
|
|
3791
3791
|
},
|
|
3792
3792
|
{
|
|
3793
3793
|
"@type": "Term",
|
|
3794
|
-
"@id": "
|
|
3794
|
+
"@id": "eucalyptusTree"
|
|
3795
3795
|
},
|
|
3796
3796
|
{
|
|
3797
3797
|
"@type": "Term",
|
|
3798
|
-
"@id": "
|
|
3798
|
+
"@id": "sunnHempPlant"
|
|
3799
3799
|
},
|
|
3800
3800
|
{
|
|
3801
3801
|
"@type": "Term",
|
|
3802
|
-
"@id": "
|
|
3802
|
+
"@id": "uradBeanPlant"
|
|
3803
3803
|
},
|
|
3804
3804
|
{
|
|
3805
3805
|
"@type": "Term",
|
|
3806
|
-
"@id": "
|
|
3806
|
+
"@id": "oreganoPlant"
|
|
3807
3807
|
},
|
|
3808
3808
|
{
|
|
3809
3809
|
"@type": "Term",
|
|
3810
|
-
"@id": "
|
|
3810
|
+
"@id": "longanTree"
|
|
3811
3811
|
},
|
|
3812
3812
|
{
|
|
3813
3813
|
"@type": "Term",
|
|
3814
|
-
"@id": "
|
|
3814
|
+
"@id": "oliveTree"
|
|
3815
3815
|
},
|
|
3816
3816
|
{
|
|
3817
3817
|
"@type": "Term",
|
|
3818
|
-
"@id": "
|
|
3818
|
+
"@id": "quinceTree"
|
|
3819
3819
|
},
|
|
3820
3820
|
{
|
|
3821
3821
|
"@type": "Term",
|
|
3822
|
-
"@id": "
|
|
3822
|
+
"@id": "pitseedGoosefootPlant"
|
|
3823
3823
|
},
|
|
3824
3824
|
{
|
|
3825
3825
|
"@type": "Term",
|
|
3826
|
-
"@id": "
|
|
3826
|
+
"@id": "otherLand"
|
|
3827
3827
|
},
|
|
3828
3828
|
{
|
|
3829
3829
|
"@type": "Term",
|
|
3830
|
-
"@id": "
|
|
3830
|
+
"@id": "redRhodesGrassPlant"
|
|
3831
3831
|
},
|
|
3832
3832
|
{
|
|
3833
3833
|
"@type": "Term",
|
|
3834
|
-
"@id": "
|
|
3834
|
+
"@id": "goldenMilletPlant"
|
|
3835
3835
|
},
|
|
3836
3836
|
{
|
|
3837
3837
|
"@type": "Term",
|
|
3838
|
-
"@id": "
|
|
3838
|
+
"@id": "tangerineTree"
|
|
3839
3839
|
},
|
|
3840
3840
|
{
|
|
3841
3841
|
"@type": "Term",
|
|
3842
|
-
"@id": "
|
|
3842
|
+
"@id": "plumTree"
|
|
3843
3843
|
},
|
|
3844
3844
|
{
|
|
3845
3845
|
"@type": "Term",
|
|
3846
|
-
"@id": "
|
|
3846
|
+
"@id": "sourCherryTree"
|
|
3847
3847
|
},
|
|
3848
3848
|
{
|
|
3849
3849
|
"@type": "Term",
|
|
3850
|
-
"@id": "
|
|
3850
|
+
"@id": "landCressPlant"
|
|
3851
3851
|
},
|
|
3852
3852
|
{
|
|
3853
3853
|
"@type": "Term",
|
|
3854
|
-
"@id": "
|
|
3854
|
+
"@id": "guatemalaGrassPlant"
|
|
3855
3855
|
},
|
|
3856
3856
|
{
|
|
3857
3857
|
"@type": "Term",
|
|
3858
|
-
"@id": "
|
|
3858
|
+
"@id": "lettucePlant"
|
|
3859
3859
|
},
|
|
3860
3860
|
{
|
|
3861
3861
|
"@type": "Term",
|
|
3862
|
-
"@id": "
|
|
3862
|
+
"@id": "poroTree"
|
|
3863
3863
|
},
|
|
3864
3864
|
{
|
|
3865
3865
|
"@type": "Term",
|
|
3866
|
-
"@id": "
|
|
3866
|
+
"@id": "waterSpinachPlant"
|
|
3867
3867
|
},
|
|
3868
3868
|
{
|
|
3869
3869
|
"@type": "Term",
|
|
3870
|
-
"@id": "
|
|
3870
|
+
"@id": "guineaGrassPlant"
|
|
3871
3871
|
},
|
|
3872
3872
|
{
|
|
3873
3873
|
"@type": "Term",
|
|
3874
|
-
"@id": "
|
|
3874
|
+
"@id": "lesserYamVine"
|
|
3875
3875
|
},
|
|
3876
3876
|
{
|
|
3877
3877
|
"@type": "Term",
|
|
3878
|
-
"@id": "
|
|
3878
|
+
"@id": "arrowrootPlant"
|
|
3879
3879
|
},
|
|
3880
3880
|
{
|
|
3881
3881
|
"@type": "Term",
|
|
3882
|
-
"@id": "
|
|
3882
|
+
"@id": "cloveTree"
|
|
3883
3883
|
},
|
|
3884
3884
|
{
|
|
3885
3885
|
"@type": "Term",
|
|
3886
|
-
"@id": "
|
|
3886
|
+
"@id": "stimulantCropPlant"
|
|
3887
3887
|
},
|
|
3888
3888
|
{
|
|
3889
3889
|
"@type": "Term",
|
|
3890
|
-
"@id": "
|
|
3890
|
+
"@id": "sesbanTree"
|
|
3891
3891
|
},
|
|
3892
3892
|
{
|
|
3893
3893
|
"@type": "Term",
|
|
3894
|
-
"@id": "
|
|
3894
|
+
"@id": "tangeloTree"
|
|
3895
3895
|
},
|
|
3896
3896
|
{
|
|
3897
3897
|
"@type": "Term",
|
|
3898
|
-
"@id": "
|
|
3898
|
+
"@id": "danthoniaPlant"
|
|
3899
3899
|
},
|
|
3900
3900
|
{
|
|
3901
3901
|
"@type": "Term",
|
|
3902
|
-
"@id": "
|
|
3902
|
+
"@id": "silkOakTree"
|
|
3903
3903
|
},
|
|
3904
3904
|
{
|
|
3905
3905
|
"@type": "Term",
|
|
3906
|
-
"@id": "
|
|
3906
|
+
"@id": "auberginePlant"
|
|
3907
3907
|
},
|
|
3908
3908
|
{
|
|
3909
3909
|
"@type": "Term",
|
|
3910
|
-
"@id": "
|
|
3910
|
+
"@id": "swedePlant"
|
|
3911
3911
|
},
|
|
3912
3912
|
{
|
|
3913
3913
|
"@type": "Term",
|
|
3914
|
-
"@id": "
|
|
3914
|
+
"@id": "africanCouchGrassPlant"
|
|
3915
3915
|
},
|
|
3916
3916
|
{
|
|
3917
3917
|
"@type": "Term",
|
|
3918
|
-
"@id": "
|
|
3918
|
+
"@id": "pomegranateTree"
|
|
3919
3919
|
},
|
|
3920
3920
|
{
|
|
3921
3921
|
"@type": "Term",
|
|
3922
|
-
"@id": "
|
|
3922
|
+
"@id": "chrysopogonLatifoliusPlant"
|
|
3923
3923
|
},
|
|
3924
3924
|
{
|
|
3925
3925
|
"@type": "Term",
|
|
3926
|
-
"@id": "
|
|
3926
|
+
"@id": "papayaTree"
|
|
3927
3927
|
},
|
|
3928
3928
|
{
|
|
3929
3929
|
"@type": "Term",
|
|
3930
|
-
"@id": "
|
|
3930
|
+
"@id": "passionfruitVine"
|
|
3931
3931
|
},
|
|
3932
3932
|
{
|
|
3933
3933
|
"@type": "Term",
|
|
3934
|
-
"@id": "
|
|
3934
|
+
"@id": "seaKalePlant"
|
|
3935
3935
|
},
|
|
3936
3936
|
{
|
|
3937
3937
|
"@type": "Term",
|
|
3938
|
-
"@id": "
|
|
3938
|
+
"@id": "kachiGrassPlant"
|
|
3939
3939
|
},
|
|
3940
3940
|
{
|
|
3941
3941
|
"@type": "Term",
|
|
3942
|
-
"@id": "
|
|
3942
|
+
"@id": "watermelonVine"
|
|
3943
3943
|
},
|
|
3944
3944
|
{
|
|
3945
3945
|
"@type": "Term",
|
|
3946
|
-
"@id": "
|
|
3946
|
+
"@id": "hookGrassPlant"
|
|
3947
3947
|
},
|
|
3948
3948
|
{
|
|
3949
3949
|
"@type": "Term",
|
|
3950
|
-
"@id": "
|
|
3950
|
+
"@id": "lovagePlant"
|
|
3951
3951
|
},
|
|
3952
3952
|
{
|
|
3953
3953
|
"@type": "Term",
|
|
3954
|
-
"@id": "
|
|
3954
|
+
"@id": "citronellaPlant"
|
|
3955
3955
|
},
|
|
3956
3956
|
{
|
|
3957
3957
|
"@type": "Term",
|
|
3958
|
-
"@id": "
|
|
3958
|
+
"@id": "desertGrassPlant"
|
|
3959
3959
|
},
|
|
3960
3960
|
{
|
|
3961
3961
|
"@type": "Term",
|
|
3962
|
-
"@id": "
|
|
3962
|
+
"@id": "wildCanePlant"
|
|
3963
3963
|
},
|
|
3964
3964
|
{
|
|
3965
3965
|
"@type": "Term",
|
|
3966
|
-
"@id": "
|
|
3966
|
+
"@id": "rhodesGrassPlant"
|
|
3967
3967
|
},
|
|
3968
3968
|
{
|
|
3969
3969
|
"@type": "Term",
|
|
3970
|
-
"@id": "
|
|
3970
|
+
"@id": "mountainRedtopPlant"
|
|
3971
3971
|
},
|
|
3972
3972
|
{
|
|
3973
3973
|
"@type": "Term",
|
|
3974
|
-
"@id": "
|
|
3974
|
+
"@id": "radishPlant"
|
|
3975
3975
|
},
|
|
3976
3976
|
{
|
|
3977
3977
|
"@type": "Term",
|
|
3978
|
-
"@id": "
|
|
3978
|
+
"@id": "pennisetumOrientalePlant"
|
|
3979
3979
|
},
|
|
3980
3980
|
{
|
|
3981
3981
|
"@type": "Term",
|
|
3982
|
-
"@id": "
|
|
3982
|
+
"@id": "slenderChlorisPlant"
|
|
3983
3983
|
},
|
|
3984
3984
|
{
|
|
3985
3985
|
"@type": "Term",
|
|
3986
|
-
"@id": "
|
|
3986
|
+
"@id": "caperPlant"
|
|
3987
3987
|
},
|
|
3988
3988
|
{
|
|
3989
3989
|
"@type": "Term",
|
|
3990
|
-
"@id": "
|
|
3990
|
+
"@id": "foxtailMilletPlant"
|
|
3991
3991
|
},
|
|
3992
3992
|
{
|
|
3993
3993
|
"@type": "Term",
|
|
3994
|
-
"@id": "
|
|
3994
|
+
"@id": "canihuaPlant"
|
|
3995
3995
|
},
|
|
3996
3996
|
{
|
|
3997
3997
|
"@type": "Term",
|
|
3998
|
-
"@id": "
|
|
3998
|
+
"@id": "mnesitheaSelloanaPlant"
|
|
3999
3999
|
},
|
|
4000
4000
|
{
|
|
4001
4001
|
"@type": "Term",
|
|
4002
|
-
"@id": "
|
|
4002
|
+
"@id": "jojobaTree"
|
|
4003
4003
|
},
|
|
4004
4004
|
{
|
|
4005
4005
|
"@type": "Term",
|
|
4006
|
-
"@id": "
|
|
4006
|
+
"@id": "purpleYamVine"
|
|
4007
4007
|
},
|
|
4008
4008
|
{
|
|
4009
4009
|
"@type": "Term",
|
|
4010
|
-
"@id": "
|
|
4010
|
+
"@id": "slenderBluestemPlant"
|
|
4011
4011
|
},
|
|
4012
4012
|
{
|
|
4013
4013
|
"@type": "Term",
|
|
4014
|
-
"@id": "
|
|
4014
|
+
"@id": "stylosanthesCampoGrandePlant"
|
|
4015
4015
|
},
|
|
4016
4016
|
{
|
|
4017
4017
|
"@type": "Term",
|
|
4018
|
-
"@id": "
|
|
4018
|
+
"@id": "beeBalmPlant"
|
|
4019
4019
|
},
|
|
4020
4020
|
{
|
|
4021
4021
|
"@type": "Term",
|
|
4022
|
-
"@id": "
|
|
4022
|
+
"@id": "springOnionPlant"
|
|
4023
4023
|
},
|
|
4024
4024
|
{
|
|
4025
4025
|
"@type": "Term",
|
|
4026
|
-
"@id": "
|
|
4026
|
+
"@id": "cranberryPlant"
|
|
4027
4027
|
},
|
|
4028
4028
|
{
|
|
4029
4029
|
"@type": "Term",
|
|
4030
|
-
"@id": "
|
|
4030
|
+
"@id": "peachTree"
|
|
4031
4031
|
},
|
|
4032
4032
|
{
|
|
4033
4033
|
"@type": "Term",
|
|
4034
|
-
"@id": "
|
|
4034
|
+
"@id": "milanjeFingerGrassPlant"
|
|
4035
4035
|
},
|
|
4036
4036
|
{
|
|
4037
4037
|
"@type": "Term",
|
|
4038
|
-
"@id": "
|
|
4038
|
+
"@id": "chestnutTree"
|
|
4039
4039
|
},
|
|
4040
4040
|
{
|
|
4041
4041
|
"@type": "Term",
|
|
4042
|
-
"@id": "
|
|
4042
|
+
"@id": "ravennaGrassPlant"
|
|
4043
4043
|
},
|
|
4044
4044
|
{
|
|
4045
4045
|
"@type": "Term",
|
|
4046
|
-
"@id": "
|
|
4046
|
+
"@id": "otherNaturalVegetation"
|
|
4047
4047
|
},
|
|
4048
4048
|
{
|
|
4049
4049
|
"@type": "Term",
|
|
4050
|
-
"@id": "
|
|
4050
|
+
"@id": "dubiGrassPlant"
|
|
4051
4051
|
},
|
|
4052
4052
|
{
|
|
4053
4053
|
"@type": "Term",
|
|
4054
|
-
"@id": "
|
|
4054
|
+
"@id": "desert"
|
|
4055
4055
|
},
|
|
4056
4056
|
{
|
|
4057
4057
|
"@type": "Term",
|
|
4058
|
-
"@id": "
|
|
4058
|
+
"@id": "blanketGrassPlant"
|
|
4059
4059
|
},
|
|
4060
4060
|
{
|
|
4061
4061
|
"@type": "Term",
|
|
4062
|
-
"@id": "
|
|
4062
|
+
"@id": "sainGrassPlant"
|
|
4063
4063
|
},
|
|
4064
4064
|
{
|
|
4065
4065
|
"@type": "Term",
|
|
4066
|
-
"@id": "
|
|
4066
|
+
"@id": "phyretrumPlant"
|
|
4067
4067
|
},
|
|
4068
4068
|
{
|
|
4069
4069
|
"@type": "Term",
|
|
4070
|
-
"@id": "
|
|
4070
|
+
"@id": "hedgeLucernePlant"
|
|
4071
4071
|
},
|
|
4072
4072
|
{
|
|
4073
4073
|
"@type": "Term",
|
|
4074
|
-
"@id": "
|
|
4074
|
+
"@id": "itchgrassPlant"
|
|
4075
4075
|
},
|
|
4076
4076
|
{
|
|
4077
4077
|
"@type": "Term",
|
|
4078
|
-
"@id": "
|
|
4078
|
+
"@id": "slenderGramaPlant"
|
|
4079
4079
|
},
|
|
4080
4080
|
{
|
|
4081
4081
|
"@type": "Term",
|
|
4082
|
-
"@id": "
|
|
4082
|
+
"@id": "magentaSpreenPlant"
|
|
4083
4083
|
},
|
|
4084
4084
|
{
|
|
4085
4085
|
"@type": "Term",
|
|
4086
|
-
"@id": "
|
|
4086
|
+
"@id": "speltWheatPlant"
|
|
4087
4087
|
},
|
|
4088
4088
|
{
|
|
4089
4089
|
"@type": "Term",
|
|
4090
|
-
"@id": "
|
|
4090
|
+
"@id": "chrysopogonFallaxPlant"
|
|
4091
4091
|
},
|
|
4092
4092
|
{
|
|
4093
4093
|
"@type": "Term",
|
|
4094
|
-
"@id": "
|
|
4094
|
+
"@id": "peachPalmTree"
|
|
4095
4095
|
},
|
|
4096
4096
|
{
|
|
4097
4097
|
"@type": "Term",
|
|
4098
|
-
"@id": "
|
|
4098
|
+
"@id": "spearGrassPlant"
|
|
4099
4099
|
},
|
|
4100
4100
|
{
|
|
4101
4101
|
"@type": "Term",
|
|
4102
|
-
"@id": "
|
|
4102
|
+
"@id": "wildRocketPlant"
|
|
4103
4103
|
},
|
|
4104
4104
|
{
|
|
4105
4105
|
"@type": "Term",
|
|
4106
|
-
"@id": "
|
|
4106
|
+
"@id": "yamVine"
|
|
4107
4107
|
},
|
|
4108
4108
|
{
|
|
4109
4109
|
"@type": "Term",
|
|
4110
|
-
"@id": "
|
|
4110
|
+
"@id": "queenslandBlueGrassPlant"
|
|
4111
4111
|
},
|
|
4112
4112
|
{
|
|
4113
4113
|
"@type": "Term",
|
|
4114
|
-
"@id": "
|
|
4114
|
+
"@id": "atlanticWakameAlga"
|
|
4115
4115
|
},
|
|
4116
4116
|
{
|
|
4117
4117
|
"@type": "Term",
|
|
4118
|
-
"@id": "
|
|
4118
|
+
"@id": "tobaccoPlant"
|
|
4119
4119
|
},
|
|
4120
4120
|
{
|
|
4121
4121
|
"@type": "Term",
|
|
4122
|
-
"@id": "
|
|
4122
|
+
"@id": "horoPlant"
|
|
4123
4123
|
},
|
|
4124
4124
|
{
|
|
4125
4125
|
"@type": "Term",
|
|
4126
|
-
"@id": "
|
|
4126
|
+
"@id": "pennisetumStramineumPlant"
|
|
4127
4127
|
},
|
|
4128
4128
|
{
|
|
4129
4129
|
"@type": "Term",
|
|
4130
|
-
"@id": "
|
|
4130
|
+
"@id": "naturalForest"
|
|
4131
4131
|
},
|
|
4132
4132
|
{
|
|
4133
4133
|
"@type": "Term",
|
|
4134
|
-
"@id": "
|
|
4134
|
+
"@id": "starGrassPlant"
|
|
4135
4135
|
},
|
|
4136
4136
|
{
|
|
4137
4137
|
"@type": "Term",
|
|
4138
|
-
"@id": "
|
|
4138
|
+
"@id": "genericTreeCrop"
|
|
4139
4139
|
},
|
|
4140
4140
|
{
|
|
4141
4141
|
"@type": "Term",
|
|
4142
|
-
"@id": "
|
|
4142
|
+
"@id": "canaryGrassPlant"
|
|
4143
4143
|
},
|
|
4144
4144
|
{
|
|
4145
4145
|
"@type": "Term",
|
|
4146
|
-
"@id": "
|
|
4146
|
+
"@id": "avocadoTree"
|
|
4147
4147
|
},
|
|
4148
4148
|
{
|
|
4149
4149
|
"@type": "Term",
|
|
4150
|
-
"@id": "
|
|
4150
|
+
"@id": "tarragonPlant"
|
|
4151
4151
|
},
|
|
4152
4152
|
{
|
|
4153
4153
|
"@type": "Term",
|
|
4154
|
-
"@id": "
|
|
4154
|
+
"@id": "quinineTree"
|
|
4155
4155
|
},
|
|
4156
4156
|
{
|
|
4157
4157
|
"@type": "Term",
|
|
4158
|
-
"@id": "
|
|
4158
|
+
"@id": "wildSudanGrassPlant"
|
|
4159
4159
|
},
|
|
4160
4160
|
{
|
|
4161
4161
|
"@type": "Term",
|
|
4162
|
-
"@id": "
|
|
4162
|
+
"@id": "triticalePlant"
|
|
4163
4163
|
},
|
|
4164
4164
|
{
|
|
4165
4165
|
"@type": "Term",
|
|
4166
|
-
"@id": "
|
|
4166
|
+
"@id": "guarBeanPlant"
|
|
4167
4167
|
},
|
|
4168
4168
|
{
|
|
4169
4169
|
"@type": "Term",
|
|
4170
|
-
"@id": "
|
|
4170
|
+
"@id": "eriochloaNubicaPlant"
|
|
4171
4171
|
},
|
|
4172
4172
|
{
|
|
4173
4173
|
"@type": "Term",
|
|
4174
|
-
"@id": "
|
|
4174
|
+
"@id": "salsifyPlant"
|
|
4175
4175
|
},
|
|
4176
4176
|
{
|
|
4177
4177
|
"@type": "Term",
|
|
4178
|
-
"@id": "
|
|
4178
|
+
"@id": "setAside"
|
|
4179
4179
|
},
|
|
4180
4180
|
{
|
|
4181
4181
|
"@type": "Term",
|
|
4182
|
-
"@id": "
|
|
4182
|
+
"@id": "colouredHoodGrassPlant"
|
|
4183
4183
|
},
|
|
4184
4184
|
{
|
|
4185
4185
|
"@type": "Term",
|
|
4186
|
-
"@id": "
|
|
4186
|
+
"@id": "bluePanicPlant"
|
|
4187
4187
|
},
|
|
4188
4188
|
{
|
|
4189
4189
|
"@type": "Term",
|
|
4190
|
-
"@id": "
|
|
4190
|
+
"@id": "bokChoyPlant"
|
|
4191
4191
|
},
|
|
4192
4192
|
{
|
|
4193
4193
|
"@type": "Term",
|
|
4194
|
-
"@id": "
|
|
4194
|
+
"@id": "fineThatchingGrassPlant"
|
|
4195
4195
|
},
|
|
4196
4196
|
{
|
|
4197
4197
|
"@type": "Term",
|
|
4198
|
-
"@id": "
|
|
4198
|
+
"@id": "algaPlant"
|
|
4199
4199
|
},
|
|
4200
4200
|
{
|
|
4201
4201
|
"@type": "Term",
|
|
4202
|
-
"@id": "
|
|
4202
|
+
"@id": "trachypogonVestitusPlant"
|
|
4203
4203
|
},
|
|
4204
4204
|
{
|
|
4205
4205
|
"@type": "Term",
|
|
4206
|
-
"@id": "
|
|
4206
|
+
"@id": "lagosSpinachPlant"
|
|
4207
4207
|
},
|
|
4208
4208
|
{
|
|
4209
4209
|
"@type": "Term",
|
|
4210
|
-
"@id": "
|
|
4210
|
+
"@id": "cuminPlant"
|
|
4211
4211
|
},
|
|
4212
4212
|
{
|
|
4213
4213
|
"@type": "Term",
|
|
4214
|
-
"@id": "
|
|
4214
|
+
"@id": "permanentCropland"
|
|
4215
4215
|
},
|
|
4216
4216
|
{
|
|
4217
4217
|
"@type": "Term",
|
|
4218
|
-
"@id": "
|
|
4218
|
+
"@id": "kikuyuPlant"
|
|
4219
4219
|
},
|
|
4220
4220
|
{
|
|
4221
4221
|
"@type": "Term",
|
|
4222
|
-
"@id": "
|
|
4222
|
+
"@id": "jujubeTree"
|
|
4223
4223
|
},
|
|
4224
4224
|
{
|
|
4225
4225
|
"@type": "Term",
|
|
4226
|
-
"@id": "
|
|
4226
|
+
"@id": "lavenderPlant"
|
|
4227
4227
|
},
|
|
4228
4228
|
{
|
|
4229
4229
|
"@type": "Term",
|
|
4230
|
-
"@id": "
|
|
4230
|
+
"@id": "musalGrassPlant"
|
|
4231
4231
|
},
|
|
4232
4232
|
{
|
|
4233
4233
|
"@type": "Term",
|
|
4234
|
-
"@id": "
|
|
4234
|
+
"@id": "intermediateWheatgrassPlant"
|
|
4235
4235
|
},
|
|
4236
4236
|
{
|
|
4237
4237
|
"@type": "Term",
|
|
4238
|
-
"@id": "
|
|
4238
|
+
"@id": "lemonVerbenaPlant"
|
|
4239
4239
|
},
|
|
4240
4240
|
{
|
|
4241
4241
|
"@type": "Term",
|
|
4242
|
-
"@id": "
|
|
4242
|
+
"@id": "swaziGrassPlant"
|
|
4243
4243
|
},
|
|
4244
4244
|
{
|
|
4245
4245
|
"@type": "Term",
|
|
4246
|
-
"@id": "
|
|
4246
|
+
"@id": "soursopTree"
|
|
4247
4247
|
},
|
|
4248
4248
|
{
|
|
4249
4249
|
"@type": "Term",
|
|
4250
|
-
"@id": "
|
|
4250
|
+
"@id": "swampRiceGrassPlant"
|
|
4251
4251
|
},
|
|
4252
4252
|
{
|
|
4253
4253
|
"@type": "Term",
|
|
4254
|
-
"@id": "
|
|
4254
|
+
"@id": "rocketPlant"
|
|
4255
4255
|
},
|
|
4256
4256
|
{
|
|
4257
4257
|
"@type": "Term",
|
|
4258
|
-
"@id": "
|
|
4258
|
+
"@id": "onionPlant"
|
|
4259
4259
|
},
|
|
4260
4260
|
{
|
|
4261
4261
|
"@type": "Term",
|
|
4262
|
-
"@id": "
|
|
4262
|
+
"@id": "blackseedGrassPlant"
|
|
4263
4263
|
},
|
|
4264
4264
|
{
|
|
4265
4265
|
"@type": "Term",
|
|
4266
|
-
"@id": "
|
|
4266
|
+
"@id": "smallCanaryGrassPlant"
|
|
4267
4267
|
},
|
|
4268
4268
|
{
|
|
4269
4269
|
"@type": "Term",
|
|
4270
|
-
"@id": "
|
|
4270
|
+
"@id": "grassCloverSward"
|
|
4271
4271
|
},
|
|
4272
4272
|
{
|
|
4273
4273
|
"@type": "Term",
|
|
4274
|
-
"@id": "
|
|
4274
|
+
"@id": "cushionLoveGrassPlant"
|
|
4275
4275
|
},
|
|
4276
4276
|
{
|
|
4277
4277
|
"@type": "Term",
|
|
4278
|
-
"@id": "
|
|
4278
|
+
"@id": "jungleRicePlant"
|
|
4279
4279
|
},
|
|
4280
4280
|
{
|
|
4281
4281
|
"@type": "Term",
|
|
4282
|
-
"@id": "
|
|
4282
|
+
"@id": "cottonPlant"
|
|
4283
4283
|
},
|
|
4284
4284
|
{
|
|
4285
4285
|
"@type": "Term",
|
|
4286
|
-
"@id": "
|
|
4286
|
+
"@id": "rainTree"
|
|
4287
4287
|
},
|
|
4288
4288
|
{
|
|
4289
4289
|
"@type": "Term",
|
|
4290
|
-
"@id": "
|
|
4290
|
+
"@id": "largeLeafFlemingiaPlant"
|
|
4291
4291
|
},
|
|
4292
4292
|
{
|
|
4293
4293
|
"@type": "Term",
|
|
4294
|
-
"@id": "
|
|
4294
|
+
"@id": "trefoilPlant"
|
|
4295
4295
|
},
|
|
4296
4296
|
{
|
|
4297
4297
|
"@type": "Term",
|
|
4298
|
-
"@id": "
|
|
4298
|
+
"@id": "spottedBrachiariaPlant"
|
|
4299
4299
|
},
|
|
4300
4300
|
{
|
|
4301
4301
|
"@type": "Term",
|
|
4302
|
-
"@id": "
|
|
4302
|
+
"@id": "paspalidiumDesertorumPlant"
|
|
4303
4303
|
},
|
|
4304
4304
|
{
|
|
4305
4305
|
"@type": "Term",
|
|
4306
|
-
"@id": "
|
|
4306
|
+
"@id": "elderTree"
|
|
4307
4307
|
},
|
|
4308
4308
|
{
|
|
4309
4309
|
"@type": "Term",
|
|
4310
|
-
"@id": "
|
|
4310
|
+
"@id": "burguPlant"
|
|
4311
4311
|
},
|
|
4312
4312
|
{
|
|
4313
4313
|
"@type": "Term",
|
|
4314
|
-
"@id": "
|
|
4314
|
+
"@id": "corianderPlant"
|
|
4315
4315
|
},
|
|
4316
4316
|
{
|
|
4317
4317
|
"@type": "Term",
|
|
4318
|
-
"@id": "
|
|
4318
|
+
"@id": "sweetPepperPlant"
|
|
4319
4319
|
},
|
|
4320
4320
|
{
|
|
4321
4321
|
"@type": "Term",
|
|
4322
|
-
"@id": "
|
|
4322
|
+
"@id": "cynodonPlectostachyusPlant"
|
|
4323
4323
|
},
|
|
4324
4324
|
{
|
|
4325
4325
|
"@type": "Term",
|
|
4326
|
-
"@id": "
|
|
4326
|
+
"@id": "germanGrassPlant"
|
|
4327
4327
|
},
|
|
4328
4328
|
{
|
|
4329
4329
|
"@type": "Term",
|
|
4330
|
-
"@id": "
|
|
4330
|
+
"@id": "lindenTree"
|
|
4331
4331
|
},
|
|
4332
4332
|
{
|
|
4333
4333
|
"@type": "Term",
|
|
4334
|
-
"@id": "
|
|
4334
|
+
"@id": "mizunaPlant"
|
|
4335
4335
|
},
|
|
4336
4336
|
{
|
|
4337
4337
|
"@type": "Term",
|
|
4338
|
-
"@id": "
|
|
4338
|
+
"@id": "rapeseedPlant"
|
|
4339
4339
|
},
|
|
4340
4340
|
{
|
|
4341
4341
|
"@type": "Term",
|
|
4342
|
-
"@id": "
|
|
4342
|
+
"@id": "wasabiPlant"
|
|
4343
4343
|
},
|
|
4344
4344
|
{
|
|
4345
4345
|
"@type": "Term",
|
|
4346
|
-
"@id": "
|
|
4346
|
+
"@id": "teaTree"
|
|
4347
4347
|
},
|
|
4348
4348
|
{
|
|
4349
4349
|
"@type": "Term",
|
|
4350
|
-
"@id": "
|
|
4350
|
+
"@id": "duckweedPlant"
|
|
4351
4351
|
},
|
|
4352
4352
|
{
|
|
4353
4353
|
"@type": "Term",
|
|
4354
|
-
"@id": "
|
|
4354
|
+
"@id": "redOrachePlant"
|
|
4355
4355
|
},
|
|
4356
4356
|
{
|
|
4357
4357
|
"@type": "Term",
|
|
4358
|
-
"@id": "
|
|
4358
|
+
"@id": "wildGarlicPlant"
|
|
4359
4359
|
},
|
|
4360
4360
|
{
|
|
4361
4361
|
"@type": "Term",
|
|
4362
|
-
"@id": "
|
|
4362
|
+
"@id": "tamarilloTree"
|
|
4363
4363
|
},
|
|
4364
4364
|
{
|
|
4365
4365
|
"@type": "Term",
|
|
4366
|
-
"@id": "
|
|
4366
|
+
"@id": "strawberryPlant"
|
|
4367
4367
|
},
|
|
4368
4368
|
{
|
|
4369
4369
|
"@type": "Term",
|
|
4370
|
-
"@id": "
|
|
4370
|
+
"@id": "rosemaryPlant"
|
|
4371
4371
|
},
|
|
4372
4372
|
{
|
|
4373
4373
|
"@type": "Term",
|
|
4374
|
-
"@id": "
|
|
4374
|
+
"@id": "bambaraBeanPlant"
|
|
4375
4375
|
},
|
|
4376
4376
|
{
|
|
4377
4377
|
"@type": "Term",
|
|
4378
|
-
"@id": "
|
|
4378
|
+
"@id": "whiteYamVine"
|
|
4379
4379
|
},
|
|
4380
4380
|
{
|
|
4381
4381
|
"@type": "Term",
|
|
4382
|
-
"@id": "
|
|
4382
|
+
"@id": "nutmegTree"
|
|
4383
4383
|
},
|
|
4384
4384
|
{
|
|
4385
4385
|
"@type": "Term",
|
|
4386
|
-
"@id": "
|
|
4386
|
+
"@id": "greenleafDesmodiumPlant"
|
|
4387
4387
|
},
|
|
4388
4388
|
{
|
|
4389
4389
|
"@type": "Term",
|
|
4390
|
-
"@id": "
|
|
4390
|
+
"@id": "yellowYamVine"
|
|
4391
4391
|
},
|
|
4392
4392
|
{
|
|
4393
4393
|
"@type": "Term",
|
|
4394
|
-
"@id": "
|
|
4394
|
+
"@id": "signalGrassPlant"
|
|
4395
4395
|
},
|
|
4396
4396
|
{
|
|
4397
4397
|
"@type": "Term",
|
|
4398
|
-
"@id": "
|
|
4398
|
+
"@id": "raspberryPlant"
|
|
4399
4399
|
},
|
|
4400
4400
|
{
|
|
4401
4401
|
"@type": "Term",
|
|
4402
|
-
"@id": "
|
|
4402
|
+
"@id": "panicPlant"
|
|
4403
4403
|
},
|
|
4404
4404
|
{
|
|
4405
4405
|
"@type": "Term",
|
|
4406
|
-
"@id": "
|
|
4406
|
+
"@id": "bahiaGrassPlant"
|
|
4407
4407
|
},
|
|
4408
4408
|
{
|
|
4409
4409
|
"@type": "Term",
|
|
4410
|
-
"@id": "
|
|
4410
|
+
"@id": "lemonTree"
|
|
4411
4411
|
},
|
|
4412
4412
|
{
|
|
4413
4413
|
"@type": "Term",
|
|
4414
|
-
"@id": "
|
|
4414
|
+
"@id": "timothyGrassPlant"
|
|
4415
4415
|
},
|
|
4416
4416
|
{
|
|
4417
4417
|
"@type": "Term",
|
|
4418
|
-
"@id": "
|
|
4418
|
+
"@id": "marshSamphirePlant"
|
|
4419
4419
|
},
|
|
4420
4420
|
{
|
|
4421
4421
|
"@type": "Term",
|
|
4422
|
-
"@id": "
|
|
4422
|
+
"@id": "severelyDegradedPasture"
|
|
4423
4423
|
},
|
|
4424
4424
|
{
|
|
4425
4425
|
"@type": "Term",
|
|
4426
|
-
"@id": "
|
|
4426
|
+
"@id": "kumquatTree"
|
|
4427
4427
|
},
|
|
4428
4428
|
{
|
|
4429
4429
|
"@type": "Term",
|
|
4430
|
-
"@id": "
|
|
4430
|
+
"@id": "nigerPlant"
|
|
4431
4431
|
},
|
|
4432
4432
|
{
|
|
4433
4433
|
"@type": "Term",
|
|
4434
|
-
"@id": "
|
|
4434
|
+
"@id": "nigellaPlant"
|
|
4435
4435
|
},
|
|
4436
4436
|
{
|
|
4437
4437
|
"@type": "Term",
|
|
4438
|
-
"@id": "
|
|
4438
|
+
"@id": "hazelnutTree"
|
|
4439
4439
|
},
|
|
4440
4440
|
{
|
|
4441
4441
|
"@type": "Term",
|
|
4442
|
-
"@id": "
|
|
4442
|
+
"@id": "masaiLoveGrassPlant"
|
|
4443
4443
|
},
|
|
4444
4444
|
{
|
|
4445
4445
|
"@type": "Term",
|
|
4446
|
-
"@id": "
|
|
4446
|
+
"@id": "centipedeGrassPlant"
|
|
4447
4447
|
},
|
|
4448
4448
|
{
|
|
4449
4449
|
"@type": "Term",
|
|
4450
|
-
"@id": "
|
|
4450
|
+
"@id": "teosintePlant"
|
|
4451
4451
|
},
|
|
4452
4452
|
{
|
|
4453
4453
|
"@type": "Term",
|
|
4454
|
-
"@id": "
|
|
4454
|
+
"@id": "woollyFingerGrassPlant"
|
|
4455
4455
|
},
|
|
4456
4456
|
{
|
|
4457
4457
|
"@type": "Term",
|
|
4458
|
-
"@id": "
|
|
4458
|
+
"@id": "hairyHerringboneGrassPlant"
|
|
4459
4459
|
},
|
|
4460
4460
|
{
|
|
4461
4461
|
"@type": "Term",
|
|
4462
|
-
"@id": "
|
|
4462
|
+
"@id": "sporobolusHelvolusPlant"
|
|
4463
4463
|
},
|
|
4464
4464
|
{
|
|
4465
4465
|
"@type": "Term",
|
|
4466
|
-
"@id": "
|
|
4466
|
+
"@id": "soybeanPlant"
|
|
4467
4467
|
},
|
|
4468
4468
|
{
|
|
4469
4469
|
"@type": "Term",
|
|
4470
|
-
"@id": "
|
|
4470
|
+
"@id": "flaxPlant"
|
|
4471
4471
|
},
|
|
4472
4472
|
{
|
|
4473
4473
|
"@type": "Term",
|
|
4474
|
-
"@id": "
|
|
4474
|
+
"@id": "mulberryTree"
|
|
4475
4475
|
},
|
|
4476
4476
|
{
|
|
4477
4477
|
"@type": "Term",
|
|
4478
|
-
"@id": "
|
|
4478
|
+
"@id": "azaroleTree"
|
|
4479
4479
|
},
|
|
4480
4480
|
{
|
|
4481
4481
|
"@type": "Term",
|
|
4482
|
-
"@id": "
|
|
4482
|
+
"@id": "teaOilCamelliaTree"
|
|
4483
4483
|
},
|
|
4484
4484
|
{
|
|
4485
4485
|
"@type": "Term",
|
|
4486
|
-
"@id": "
|
|
4486
|
+
"@id": "babulTree"
|
|
4487
4487
|
},
|
|
4488
4488
|
{
|
|
4489
4489
|
"@type": "Term",
|
|
4490
|
-
"@id": "
|
|
4490
|
+
"@id": "mangosteenTree"
|
|
4491
4491
|
},
|
|
4492
4492
|
{
|
|
4493
4493
|
"@type": "Term",
|
|
4494
|
-
"@id": "
|
|
4494
|
+
"@id": "scallionPlant"
|
|
4495
4495
|
},
|
|
4496
4496
|
{
|
|
4497
4497
|
"@type": "Term",
|
|
4498
|
-
"@id": "
|
|
4498
|
+
"@id": "mintPlant"
|
|
4499
4499
|
},
|
|
4500
4500
|
{
|
|
4501
4501
|
"@type": "Term",
|
|
4502
|
-
"@id": "
|
|
4502
|
+
"@id": "teffPlant"
|
|
4503
4503
|
},
|
|
4504
4504
|
{
|
|
4505
4505
|
"@type": "Term",
|
|
4506
|
-
"@id": "
|
|
4506
|
+
"@id": "sichuanPepperPlant"
|
|
4507
4507
|
},
|
|
4508
4508
|
{
|
|
4509
4509
|
"@type": "Term",
|
|
4510
|
-
"@id": "
|
|
4510
|
+
"@id": "apricotTree"
|
|
4511
4511
|
},
|
|
4512
4512
|
{
|
|
4513
4513
|
"@type": "Term",
|
|
4514
|
-
"@id": "
|
|
4514
|
+
"@id": "vegetableCropPlant"
|
|
4515
4515
|
},
|
|
4516
4516
|
{
|
|
4517
4517
|
"@type": "Term",
|
|
4518
|
-
"@id": "
|
|
4518
|
+
"@id": "rubberTree"
|
|
4519
4519
|
},
|
|
4520
4520
|
{
|
|
4521
4521
|
"@type": "Term",
|
|
4522
|
-
"@id": "
|
|
4522
|
+
"@id": "figTree"
|
|
4523
4523
|
},
|
|
4524
4524
|
{
|
|
4525
4525
|
"@type": "Term",
|
|
4526
|
-
"@id": "
|
|
4526
|
+
"@id": "gooseGrassPlant"
|
|
4527
4527
|
},
|
|
4528
4528
|
{
|
|
4529
4529
|
"@type": "Term",
|
|
4530
|
-
"@id": "
|
|
4530
|
+
"@id": "blackOatPlant"
|
|
4531
4531
|
},
|
|
4532
4532
|
{
|
|
4533
4533
|
"@type": "Term",
|
|
4534
|
-
"@id": "
|
|
4534
|
+
"@id": "wheatPlant"
|
|
4535
4535
|
},
|
|
4536
4536
|
{
|
|
4537
4537
|
"@type": "Term",
|
|
4538
|
-
"@id": "
|
|
4538
|
+
"@id": "kiwifruitVine"
|
|
4539
4539
|
},
|
|
4540
4540
|
{
|
|
4541
4541
|
"@type": "Term",
|
|
4542
|
-
"@id": "
|
|
4542
|
+
"@id": "rosellePlant"
|
|
4543
4543
|
},
|
|
4544
4544
|
{
|
|
4545
4545
|
"@type": "Term",
|
|
4546
|
-
"@id": "
|
|
4546
|
+
"@id": "litchiTree"
|
|
4547
4547
|
},
|
|
4548
4548
|
{
|
|
4549
4549
|
"@type": "Term",
|
|
4550
|
-
"@id": "
|
|
4550
|
+
"@id": "adzukiBeanPlant"
|
|
4551
4551
|
},
|
|
4552
4552
|
{
|
|
4553
4553
|
"@type": "Term",
|
|
4554
|
-
"@id": "
|
|
4554
|
+
"@id": "limequatTree"
|
|
4555
4555
|
},
|
|
4556
4556
|
{
|
|
4557
4557
|
"@type": "Term",
|
|
4558
|
-
"@id": "
|
|
4558
|
+
"@id": "bananaPlant"
|
|
4559
4559
|
},
|
|
4560
4560
|
{
|
|
4561
4561
|
"@type": "Term",
|
|
4562
|
-
"@id": "
|
|
4562
|
+
"@id": "guriaGrassPlant"
|
|
4563
4563
|
},
|
|
4564
4564
|
{
|
|
4565
4565
|
"@type": "Term",
|
|
4566
|
-
"@id": "
|
|
4566
|
+
"@id": "redOatGrassPlant"
|
|
4567
4567
|
},
|
|
4568
4568
|
{
|
|
4569
4569
|
"@type": "Term",
|
|
4570
|
-
"@id": "
|
|
4570
|
+
"@id": "whiteSpearGrassPlant"
|
|
4571
4571
|
},
|
|
4572
4572
|
{
|
|
4573
4573
|
"@type": "Term",
|
|
4574
|
-
"@id": "
|
|
4574
|
+
"@id": "weepingLoveGrassPlant"
|
|
4575
4575
|
},
|
|
4576
4576
|
{
|
|
4577
4577
|
"@type": "Term",
|
|
4578
|
-
"@id": "
|
|
4578
|
+
"@id": "hyacinthBeanVine"
|
|
4579
4579
|
},
|
|
4580
4580
|
{
|
|
4581
4581
|
"@type": "Term",
|
|
4582
|
-
"@id": "
|
|
4582
|
+
"@id": "bayTree"
|
|
4583
4583
|
},
|
|
4584
4584
|
{
|
|
4585
4585
|
"@type": "Term",
|
|
4586
|
-
"@id": "
|
|
4586
|
+
"@id": "lambSLettucePlant"
|
|
4587
4587
|
},
|
|
4588
4588
|
{
|
|
4589
4589
|
"@type": "Term",
|
|
4590
|
-
"@id": "
|
|
4590
|
+
"@id": "bilberryPlant"
|
|
4591
4591
|
},
|
|
4592
4592
|
{
|
|
4593
4593
|
"@type": "Term",
|
|
4594
|
-
"@id": "
|
|
4594
|
+
"@id": "starAniseTree"
|
|
4595
4595
|
},
|
|
4596
4596
|
{
|
|
4597
4597
|
"@type": "Term",
|
|
4598
|
-
"@id": "
|
|
4598
|
+
"@id": "sugarBeetPlant"
|
|
4599
4599
|
},
|
|
4600
4600
|
{
|
|
4601
4601
|
"@type": "Term",
|
|
4602
|
-
"@id": "
|
|
4602
|
+
"@id": "gardenCressPlant"
|
|
4603
4603
|
},
|
|
4604
4604
|
{
|
|
4605
4605
|
"@type": "Term",
|
|
4606
|
-
"@id": "
|
|
4606
|
+
"@id": "greenBeanPlant"
|
|
4607
4607
|
},
|
|
4608
4608
|
{
|
|
4609
4609
|
"@type": "Term",
|
|
4610
|
-
"@id": "
|
|
4610
|
+
"@id": "cashewTree"
|
|
4611
4611
|
},
|
|
4612
4612
|
{
|
|
4613
4613
|
"@type": "Term",
|
|
4614
|
-
"@id": "
|
|
4614
|
+
"@id": "longBareFallow"
|
|
4615
4615
|
},
|
|
4616
4616
|
{
|
|
4617
4617
|
"@type": "Term",
|
|
4618
|
-
"@id": "
|
|
4618
|
+
"@id": "annualCropland"
|
|
4619
4619
|
},
|
|
4620
4620
|
{
|
|
4621
4621
|
"@type": "Term",
|
|
4622
|
-
"@id": "
|
|
4622
|
+
"@id": "africanAuberginePlant"
|
|
4623
4623
|
},
|
|
4624
4624
|
{
|
|
4625
4625
|
"@type": "Term",
|
|
4626
|
-
"@id": "
|
|
4626
|
+
"@id": "fonioPlant"
|
|
4627
4627
|
},
|
|
4628
4628
|
{
|
|
4629
4629
|
"@type": "Term",
|
|
4630
|
-
"@id": "
|
|
4630
|
+
"@id": "macadamiaTree"
|
|
4631
4631
|
},
|
|
4632
4632
|
{
|
|
4633
4633
|
"@type": "Term",
|
|
4634
|
-
"@id": "
|
|
4634
|
+
"@id": "appleTree"
|
|
4635
4635
|
},
|
|
4636
4636
|
{
|
|
4637
4637
|
"@type": "Term",
|
|
4638
|
-
"@id": "
|
|
4638
|
+
"@id": "carrotPlant"
|
|
4639
4639
|
},
|
|
4640
4640
|
{
|
|
4641
4641
|
"@type": "Term",
|
|
4642
|
-
"@id": "
|
|
4642
|
+
"@id": "custardAppleTree"
|
|
4643
4643
|
},
|
|
4644
4644
|
{
|
|
4645
4645
|
"@type": "Term",
|
|
4646
|
-
"@id": "
|
|
4646
|
+
"@id": "mexicanTeaPlant"
|
|
4647
4647
|
},
|
|
4648
4648
|
{
|
|
4649
4649
|
"@type": "Term",
|
|
4650
|
-
"@id": "
|
|
4650
|
+
"@id": "pleurotusOstreatusFungus"
|
|
4651
4651
|
},
|
|
4652
4652
|
{
|
|
4653
4653
|
"@type": "Term",
|
|
4654
|
-
"@id": "
|
|
4654
|
+
"@id": "barleyPlant"
|
|
4655
4655
|
}
|
|
4656
4656
|
]
|
|
4657
4657
|
},
|
|
@@ -4911,23 +4911,23 @@
|
|
|
4911
4911
|
},
|
|
4912
4912
|
{
|
|
4913
4913
|
"@type": "Term",
|
|
4914
|
-
"@id": "
|
|
4914
|
+
"@id": "fullTillage"
|
|
4915
4915
|
},
|
|
4916
4916
|
{
|
|
4917
4917
|
"@type": "Term",
|
|
4918
|
-
"@id": "
|
|
4918
|
+
"@id": "minimumTillage"
|
|
4919
4919
|
},
|
|
4920
4920
|
{
|
|
4921
4921
|
"@type": "Term",
|
|
4922
|
-
"@id": "
|
|
4922
|
+
"@id": "deepTillage"
|
|
4923
4923
|
},
|
|
4924
4924
|
{
|
|
4925
4925
|
"@type": "Term",
|
|
4926
|
-
"@id": "
|
|
4926
|
+
"@id": "mulchTillage"
|
|
4927
4927
|
},
|
|
4928
4928
|
{
|
|
4929
4929
|
"@type": "Term",
|
|
4930
|
-
"@id": "
|
|
4930
|
+
"@id": "stripTillage"
|
|
4931
4931
|
},
|
|
4932
4932
|
{
|
|
4933
4933
|
"@type": "Term",
|
|
@@ -5026,11 +5026,11 @@
|
|
|
5026
5026
|
},
|
|
5027
5027
|
{
|
|
5028
5028
|
"@type": "Term",
|
|
5029
|
-
"@id": "
|
|
5029
|
+
"@id": "ureaFormaldehydeKgN"
|
|
5030
5030
|
},
|
|
5031
5031
|
{
|
|
5032
5032
|
"@type": "Term",
|
|
5033
|
-
"@id": "
|
|
5033
|
+
"@id": "ureaCalciumNitrateKgN"
|
|
5034
5034
|
},
|
|
5035
5035
|
{
|
|
5036
5036
|
"@type": "Term",
|