OpenLandMap Soil Texture Class (USDA System)

OpenLandMap/SOL/SOL_TEXTURE-CLASS_USDA-TT_M/v02
Dataset Availability
1950-01-01T00:00:00Z–2018-01-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.Image("OpenLandMap/SOL/SOL_TEXTURE-CLASS_USDA-TT_M/v02")
Tags
envirometrix opengeohub openlandmap soil usda
texture

Description

Soil texture classes (USDA system) for 6 soil depths (0, 10, 30, 60, 100 and 200 cm) at 250 m

Derived from predicted soil texture fractions using the soiltexture package in R. 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 Pixel Size Description
b0 meters

Soil texture class (USDA system) at 0 cm depth

b10 meters

Soil texture class (USDA system) at 10 cm depth

b30 meters

Soil texture class (USDA system) at 30 cm depth

b60 meters

Soil texture class (USDA system) at 60 cm depth

b100 meters

Soil texture class (USDA system) at 100 cm depth

b200 meters

Soil texture class (USDA system) at 200 cm depth

b0 Class Table

Value Color Description
1 #d5c36b

Cl

2 #b96947

SiCl

3 #9d3706

SaCl

4 #ae868f

ClLo

5 #f86714

SiClLo

6 #46d143

SaClLo

7 #368f20

Lo

8 #3e5a14

SiLo

9 #ffd557

SaLo

10 #fff72e

Si

11 #ff5a9d

LoSa

12 #ff005b

Sa

b10 Class Table

Value Color Description
1 #d5c36b

Cl

2 #b96947

SiCl

3 #9d3706

SaCl

4 #ae868f

ClLo

5 #f86714

SiClLo

6 #46d143

SaClLo

7 #368f20

Lo

8 #3e5a14

SiLo

9 #ffd557

SaLo

10 #fff72e

Si

11 #ff5a9d

LoSa

12 #ff005b

Sa

b30 Class Table

Value Color Description
1 #d5c36b

Cl

2 #b96947

SiCl

3 #9d3706

SaCl

4 #ae868f

ClLo

5 #f86714

SiClLo

6 #46d143

SaClLo

7 #368f20

Lo

8 #3e5a14

SiLo

9 #ffd557

SaLo

10 #fff72e

Si

11 #ff5a9d

LoSa

12 #ff005b

Sa

b60 Class Table

Value Color Description
1 #d5c36b

Cl

2 #b96947

SiCl

3 #9d3706

SaCl

4 #ae868f

ClLo

5 #f86714

SiClLo

6 #46d143

SaClLo

7 #368f20

Lo

8 #3e5a14

SiLo

9 #ffd557

SaLo

10 #fff72e

Si

11 #ff5a9d

LoSa

12 #ff005b

Sa

b100 Class Table

Value Color Description
1 #d5c36b

Cl

2 #b96947

SiCl

3 #9d3706

SaCl

4 #ae868f

ClLo

5 #f86714

SiClLo

6 #46d143

SaClLo

7 #368f20

Lo

8 #3e5a14

SiLo

9 #ffd557

SaLo

10 #fff72e

Si

11 #ff5a9d

LoSa

12 #ff005b

Sa

b200 Class Table

Value Color Description
1 #d5c36b

Cl

2 #b96947

SiCl

3 #9d3706

SaCl

4 #ae868f

ClLo

5 #f86714

SiClLo

6 #46d143

SaClLo

7 #368f20

Lo

8 #3e5a14

SiLo

9 #ffd557

SaLo

10 #fff72e

Si

11 #ff5a9d

LoSa

12 #ff005b

Sa

Terms of Use

Terms of Use

CC-BY-SA-4.0

Citations

Citations:
  • Tomislav Hengl. (2018). Soil texture classes (USDA system) for 6 soil depths (0, 10, 30, 60, 100 and 200 cm) at 250 m (Version v02) [Data set]. Zenodo. 10.5281/zenodo.1475451

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.Image('OpenLandMap/SOL/SOL_TEXTURE-CLASS_USDA-TT_M/v02');

var visualization = {
  bands: ['b0'],
  min: 1.0,
  max: 12.0,
  palette: [
    'd5c36b','b96947','9d3706','ae868f','f86714','46d143',
    '368f20','3e5a14','ffd557','fff72e','ff5a9d','ff005b',
  ]
};

Map.centerObject(dataset);

Map.addLayer(dataset, visualization, 'Soil texture class (USDA system)');
Open in Code Editor