A new open-source software framework is turning the soil beneath our feet into a living digital object—one that can change as rainfall, drought, irrigation, temperature and biological activity reshape the hidden world underground. Called Digital Pedon, the system is designed to create dynamic “digital twins” of soil profiles by combining sensor readings, satellite observations, standardized databases and mathematical models. The framework, described by Ali Youssef and Nasem Badreldin in SoftwareX, aims to address a persistent weakness in soil science: most soil information systems describe the ground as if it were a fixed structure, even though soil is constantly moving, drying, heating, cooling and exchanging nutrients with plants and microbes. The result is a software platform that could eventually help farmers, researchers and environmental agencies monitor soil conditions in near real time and ask artificial-intelligence systems questions about what is happening belowground.
Soil is not merely a passive growing medium. It is a complex physical, chemical and biological system in which water moves through pores, heat travels between layers, gases are exchanged and microbes break down organic matter. A field can shift from water-stressed to saturated within hours after irrigation or heavy rain, while temperature and oxygen availability can alter root activity and microbial respiration. Traditional soil surveys and laboratory measurements remain essential for classification and accurate characterization, but they usually provide snapshots collected at particular locations and times. Digital Pedon is intended to complement—not replace—those measurements by maintaining an evolving computational representation of a soil profile, known technically as a pedon. The software can store relatively stable attributes such as horizon boundaries and soil classification while continuously updating dynamic variables such as moisture, temperature, electrical conductivity and other sensor-derived observations.
At the heart of the framework is a three-layer architecture. The Structural Layer stores the soil’s comparatively stable characteristics, including the geometry of horizons, hydraulic parameters and threshold settings. A soil horizon is a recognizable layer within a profile, such as an organic-rich topsoil or a denser clay-rich subsoil. The Dynamic Layer records incoming measurements in three ways: a key-value store provides rapid access to the current state, an append-only time-series log preserves the profile’s history, and a threshold-event system can trigger alerts when conditions become agronomically important. The Functional Layer contains a registry of mathematical solvers, described by the authors as a “Model Zoo.” Each solver processes the state produced by earlier solvers in a sequence, creating a directed acyclic graph of calculations. Because a solver can only use information already written during the current update cycle, the system prevents circular dependencies without requiring a separate cycle-detection algorithm.
These calculations are designed to translate raw observations into quantities that are much more useful for decision-making. A moisture sensor might report volumetric water content, but growers are often more interested in whether roots can access that water, whether drainage is occurring or whether the soil is approaching a plant’s wilting point. Digital Pedon includes a Van Genuchten–Mualem model to estimate how water is retained and how hydraulic conductivity changes as soil dries. The Van Genuchten equation describes the relationship between soil-water content and matric potential, the pressure state that determines how tightly water is held in soil pores. The associated conductivity formulation estimates how easily water can move through the partly saturated pore network. A Darcy–Buckingham solver then calculates vertical water flux, while a simplified De Vries model estimates thermal properties and a Q10-based solver estimates how temperature and moisture influence respiration. Together, these “software sensors” can infer high-order variables that are difficult or expensive to measure directly.
The framework also tackles a less visible but fundamental problem: soil databases often speak different technical languages. SoilGrids, the U.S. Soil Survey Geographic Database, the European Soil Data Centre and other systems may use different names, units, depth intervals and classification conventions for the same property. Digital Pedon’s Ontology and Normalisation Layer maps incoming terms to machine-readable identifiers associated with the Global Soil Information System and OGC SoilML standards. The package contains a canonical vocabulary covering 41 properties, including 26 core soil properties and 15 sensor-specific variables. Its normalization tools can convert aliases such as “CLAY,” “bdod,” “phh2o,” “SOC_mean” and “VWC” into standardized keys for clay content, bulk density, soil pH, organic carbon and volumetric water content. The system also includes 14 unit conversions, ranging from Fahrenheit to Celsius and microsiemens per centimeter to decisiemens per meter, as well as conversions for some satellite data products.
That common language allows the framework to combine measurements that normally remain isolated. Users can initialize a digital pedon from field observations, laboratory results or existing soil-profile databases. When local information is unavailable, the software can use GPS coordinates to retrieve preliminary profiles from the SoilGrids version 2.0 REST API or the U.S. SSURGO database. It then estimates hydraulic parameters using Rawls–Brakensiek pedotransfer functions—statistical relationships that infer difficult-to-measure properties from more accessible information such as texture and organic matter. In demonstrations at four contrasting locations, the system generated profiles for loam in Ghent, Belgium; sand in Niger’s Sahel; clay in Egypt’s Nile Delta; and silty loam in Italy’s Po Valley. The estimated saturated water content increased from sand to clay, while saturated hydraulic conductivity fell sharply, matching expected physical behavior. The clay profile had an estimated conductivity of 0.8 centimeters per day, compared with 48.2 centimeters per day for the sandy site.
The authors emphasize that these coordinate-based profiles are starting points, not substitutes for site-specific sampling. SoilGrids estimates include uncertainty intervals, and pedotransfer functions can perform differently depending on texture and organic-matter content. In the current software, the median database estimates are treated deterministically, meaning that the model uses a single value rather than propagating the full uncertainty range through every calculation. This is one reason the reported experiments are demonstrations of functionality rather than proof that the framework can make accurate predictions under field conditions. The authors say that quantitative benchmarking against independent observations, device-specific deployments, operational datasets and uncertainty propagation will be priorities for future studies. That distinction is crucial: a digital twin can be technically elegant while still requiring extensive calibration and validation before it should control irrigation or guide high-stakes land-management decisions.
The proof-of-concept experiments nevertheless show how the system could operate. In one synthetic drying-and-wetting cycle, a loamy topsoil was supplied with water contents ranging from 0.08 to 0.43 cubic centimeters per cubic centimeter. The solver chain automatically calculated matric potential, unsaturated hydraulic conductivity and respiration-related outputs at each update. Matric potential changed systematically with moisture, conductivity followed the characteristic nonlinear response expected in partially saturated soil, and modeled carbon dioxide flux reached a maximum near a water content of about 0.26 before declining under wetter conditions. That decline reflects a basic ecological constraint: too much water can fill air-filled pores, restrict oxygen diffusion and suppress aerobic respiration even when microbes are not short of water. In another test, the ontology system correctly resolved all 28 alias-mapping checks across SSURGO, SoilGrids, the European Soil Data Centre and other conventions, with generated identifiers linked to the GLOSIS namespace.
Digital Pedon is also designed to be extended rather than locked to a fixed collection of models. In one example, the researchers added a seasonal heat-conduction solver without changing the framework’s core code. The custom model used a Crank–Nicolson numerical scheme, an implicit finite-difference method commonly used to solve diffusion equations, to calculate temperature through a four-horizon profile extending to 200 centimeters. Thermal diffusivity was supplied dynamically by the built-in De Vries solver at each horizon and timestep, allowing the custom calculation to inherit differences between layers. The simulated profile reproduced expected depth- and season-dependent temperature patterns, including changes in heat transmission at horizon boundaries. The software can run on Python versions 3.9 through 3.12 without compilation or runtime dependencies, making it suitable in principle for small edge devices such as Raspberry Pi, Arduino and ESP32 systems as well as cloud-based geospatial platforms.
The framework includes a threshold-event system that could connect modeled conditions to practical responses. Instead of reacting only to a raw moisture reading, an application might trigger an irrigation or drainage action when the inferred root-zone state indicates saturation, a wilting threshold or excessive salinity. Satellite products such as vegetation indices, land-surface temperature and radar-derived moisture indicators can enter through the same ingestion interface as in-situ measurements, although the researchers caution that syntactic compatibility does not make the observations physically identical. Satellite signals represent areas and often shallow or surface conditions, whereas a probe measures a point at a particular depth. Digital Pedon also exposes its state and solvers through OpenAI-compatible tool schemas, allowing language models to query structured outputs—for example, asking whether an upper soil horizon is under water stress. Such conversational access could make complex models easier to use, but the authors present it as a future decision-support foundation, not as an already validated autonomous agronomic adviser.
By releasing the framework under a Creative Commons Attribution 4.0 license, the researchers hope it will become a shared foundation for precision agriculture, digital soil mapping and environmental monitoring. Potential applications include tracking crop water stress, linking satellite signals to subsurface processes, monitoring soil carbon and assessing land degradation. The longer-term goal is to move beyond isolated digital pedons toward landscape-scale twins that incorporate elevation, slope, curvature, hydrological indices, parent material, soil spectroscopy, hyperspectral imagery and networks of connected sensors. If that vision succeeds, soil data could become both more dynamic and more interoperable: a rainfall event recorded by a field sensor could update a model, alter an estimate of water movement and generate a standardized data product usable across platforms. For now, Digital Pedon is best understood as an open computational substrate—a promising bridge between observations and process-based models whose real-world value will depend on the field tests still to come.
Subject of Research: A digital twin framework for real-time soil profile monitoring, process-based inference and global soil data interoperability
Subject of Research: Technology and Engineering
Article Title: DigitalPedon: a novel digital twin framework for soil profile monitoring and global soil data interoperability
Article References: Youssef, A., & Badreldin, N. (2026). DigitalPedon: a novel digital twin framework for soil profile monitoring and global soil data interoperability. SoftwareX, 35, Article 102904. https://doi.org/10.1016/j.softx.2026.102904
Image Credits: AI Generated
DOI: 10.1016/j.softx.2026.102904
Keywords: digital soil twins, soil monitoring, precision agriculture, soil sensors, SoilGrids, GLOSIS, process-based modeling, remote sensing
Cite this news
APA MLA Chicago
SCIENMAG. (August 28, 2026). DigitalPedon introduces digital twins for soil profile monitoring and global data interoperability. https://scienmag.com/digitalpedon-introduces-digital-twins-for-soil-profile-monitoring-and-global-data-interoperability/
SCIENMAG. “DigitalPedon introduces digital twins for soil profile monitoring and global data interoperability.” Scienmag, 28 August 2026, https://scienmag.com/digitalpedon-introduces-digital-twins-for-soil-profile-monitoring-and-global-data-interoperability/. Accessed 28 August 2026.
SCIENMAG. “DigitalPedon introduces digital twins for soil profile monitoring and global data interoperability.” Scienmag. August 28, 2026. https://scienmag.com/digitalpedon-introduces-digital-twins-for-soil-profile-monitoring-and-global-data-interoperability/
Copy citation Download RIS
Tags: artificial intelligence for soil analysisartificial intelligence in soil analysisdynamic soil data integrationdynamic soil modeling toolsenvironmental and agricultural soil managementglobal soil data interoperabilityopen-source soil data frameworkreal-time soil condition analysisreal-time soil condition monitoringsatellite soil observation systemssensor-based soil data collectionsensor-based soil data integrationsoil digital twinsoil ecosystem modeling toolssoil health and nutrient exchange modelssoil health and nutrient exchange trackingsoil moisture and temperature monitoringsoil profile monitoring softwareunderground soil activity tracking



