Soils
OpenLandMap Soil Properties
OpenGeoHub Foundation. 250 m soil property maps at standard depths.
Soil organic carbon, pH, texture fractions, bulk density and USDA texture class at standard depths, predicted with machine learning from soil profiles and covariates.
- Source
- OpenGeoHub Foundation
- Resolution
- 250 m
- Data type
- Raster
- Time span
- Static
- Temporal
- Static
- Access type
- Direct download (external)
- Formats
- Cloud Optimized GeoTIFF
- Coverage
- Global land (-180, -60, 180, 84)
- Licence
- See provider terms
- Provider page
- openlandmap.org/
Access
linkOpenLandMap
curl "https://hydrological.org/api/v1/datasets/openlandmap-soil/links?bbox=-75,-20,-50,5" \
-H "Accept: application/json"
import requests
r = requests.get("https://hydrological.org/api/v1/datasets/openlandmap-soil/links",
params={"bbox": "-75,-20,-50,5"})
for group in r.json()["groups"]:
for link in group["links"]:
print(link["url"])
const res = await fetch("https://hydrological.org/api/v1/datasets/openlandmap-soil/links?bbox=-75,-20,-50,5");
const { groups } = await res.json();
for (const g of groups) g.links.forEach(l => console.log(l.url));
Also available as JSON: links · manifest · dataset record