AI-generated Key Takeaways
-
This dataset provides global soil organic carbon content estimations at six standard depths (0, 10, 30, 60, 100, and 200 cm).
-
Data is presented at a 250-meter resolution and covers the period from 1950 to 2018, excluding Antarctica.
-
Soil organic carbon content is expressed in x 5 g / kg and was predicted using a global compilation of soil points.
-
The dataset is available under the CC-BY-SA-4.0 license and is accessible through Google Earth Engine and OpenGeohub.
-
Users can explore the data, visualize it, and access the code for processing and analysis using the provided links.

- Dataset Availability
- 1950-01-01T00:00:00Z–2018-01-01T00:00:00Z
- Dataset Provider
- EnvirometriX Ltd
- Tags
Description
Soil organic carbon content in x 5 g / kg at 6 standard depths (0, 10, 30, 60, 100 and 200 cm) at 250 m resolution
Predicted from a global compilation of soil points. Processing steps are described in detail here. Antarctica is not included.
To access and visualize maps outside of Earth Engine, use this page.
If you discover a bug, artifact or inconsistency in the LandGIS maps or if you have a question please use the following channels:
Bands
Pixel Size
250 meters
Bands
Name | Units | Min | Max | Scale | Pixel Size | Description |
---|---|---|---|---|---|---|
b0 |
g/kg | 0* | 120* | 5 | meters | Soil organic carbon content at 0 cm depth |
b10 |
g/kg | 0* | 120* | 5 | meters | Soil organic carbon content at 10 cm depth |
b30 |
g/kg | 0* | 120* | 5 | meters | Soil organic carbon content at 30 cm depth |
b60 |
g/kg | 0* | 120* | 5 | meters | Soil organic carbon content at 60 cm depth |
b100 |
g/kg | 0* | 120* | 5 | meters | Soil organic carbon content at 100 cm depth |
b200 |
g/kg | 0* | 120* | 5 | meters | Soil organic carbon content at 200 cm depth |
Terms of Use
Terms of Use
Citations
Tomislav Hengl, & Ichsani Wheeler. (2018). Soil organic carbon content in x 5 g / kg at 6 standard depths (0, 10, 30, 60, 100 and 200 cm) at 250 m resolution (Version v02) [Data set]. Zenodo. 10.5281/zenodo.1475457
DOIs
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.Image('OpenLandMap/SOL/SOL_ORGANIC-CARBON_USDA-6A1C_M/v02'); var visualization = { bands: ['b0'], min: 0.0, max: 120.0, palette: [ 'ffffa0','f7fcb9','d9f0a3','addd8e','78c679','41ab5d', '238443','005b29','004b29','012b13','00120b', ] }; Map.centerObject(dataset); Map.addLayer(dataset, visualization, 'Soil organic carbon content in x 5 g / kg');