This JSON-LD Soil template consists set of features describing soil properties across the global stored in the Harmonized World Soil database. Data was collected to provide soil information to assist in assessing land potential productivity. Examples of features present include texture of the soil, water capacity, and depth of roots.
library(FAIRmaterials)
# An example data frame for soil header information
soil <- data.frame(
'ID' = c("176","250"),
'texture' = c('Coarse', 'None'),
'AwC' = c('0', '50'),
'roots' = c('60-80', '20-40'),
'addProp' = c('Petric', 'Vertic')
)
# This will generate json-ld files for the example data
soil_output <- fairify_data(soil, domain = 'soil')
soil schema diagram
from fairmaterials.fairify_data import *
import pandas as pd
# An example data frame for soil data
data = pd.DataFrame (
'ID' = ["176","250"],
'texture' = ['Coarse', 'None'],
'AWC' = ['0', '50'],
'roots' = ['60-80', '20-40'],
'addProp' = ['Petric', 'Vertic']])
# This will generate JSON-LD file for the example data in Python
fairify_data(data,'soil')
https://jsonwelllogformat.org/ https://www.energistics.org/energistics-unit-of-measure-standard/ https://schema.org/ https://ppdm.org/ppdm/PPDM/Standards/What_is_a_Well/PPDM/What_is_a_Well.aspx. https://www.iso.org/standard/73830.html https://www.fao.org/soils-portal/data-hub/soil-maps-and-databases/harmonized-world-soil-database-v12/en/
This material is based upon work supported by SDLE Research Center