EUCROPMAP

JRC/D5/EUCROPMAP/V1
Dataset Availability
2018-01-01T00:00:00Z–2022-01-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("JRC/D5/EUCROPMAP/V1")
Cadence
1 Year
Tags
agriculture crop eu jrc lucas sentinel1-derived

Description

European crop type map based on Sentinel-1 and LUCAS Copernicus 2018 in-situ observations for 2018; and one based on Sentinel-2 and LUCAS Copernicus 2022 for 2022.

Capitalizing on the unique LUCAS 2018 Copernicus in-situ survey, the 2018 dataset is the first continental crop type map with 10m pixel size for the EU based on S1A and S1B Synthetic Aperture Radar observations for the year 2018; the 2022 dataset is a continuation of the work and is based on optical S2 observations for the year 2022.

Bands

Pixel Size
10 meters

Bands

Name Pixel Size Description
classification meters

Main crop-specific land cover classification.

classification Class Table

Value Color Description
100 #ff130f

Artificial

211 #a57000

Common wheat

212 #896054

Durum wheat

213 #e2007c

Barley

214 #aa007c

Rye

215 #a05989

Oats

216 #ffd300

Maize

217 #00a8e2

Rice

218 #d69ebc

Triticale

219 #d69ebc

Other cereals

221 #dda50a

Potatoes

222 #a800e2

Sugar beet

223 #00af49

Other root crops

230 #00af49

Other non-permanent industrial crops

231 #ffff00

Sunflower

232 #d1ff00

Rapeseed and turnip rapeseed

233 #267000

Soya

240 #f2a377

Dry pulses

250 #e8bfff

Fodder crops (cereals and leguminous)

290 #696969

Bare arable land

300 #93cc93

Woodland and Shrubland (incl. permanent crops)

500 #e8ffbf

Grasslands

600 #a89e7f

Bare land/lichens moss

700 #0793de

Water

800 #7cafaf

Wetlands

Image Properties

Image Properties

Name Type Description
classification_class_names STRING_LIST

Array of cropland classification names.

classification_class_palette STRING_LIST

Array of hex code color strings used for the classification palette.

classification_class_values INT_LIST

Value of the cropland classification.

Terms of Use

Terms of Use

CC-BY-4.0

Citations

Citations:
  • d'Andrimont, R., Verhegghen, A., Lemoine, G., Kempeneers, P., Meroni, M., & Van der Velde, M. (2021). From parcel to continental scale-A first European crop type map based on Sentinel-1 and LUCAS Copernicus in-situ observations. Remote sensing of environment, 266, 112708.

  • d'Andrimont, R., Verhegghen, A., Lemoine, G., Kempeneers, P., Meroni, M., & Van der Velde, M. (2021). From parcel to continental scale-A first European crop type map based on Sentinel-1 and LUCAS Copernicus in-situ observations. Remote sensing of environment, 266, 112708. doi:10.1016/j.rse.2021.112708.

  • Ghassemi, B., Izquierdo-Verdiguier, E., Verhegghen, A., Yordanov, M., Lemoine, G., Moreno Martínez, Á., De Marchi, D., van der Velde, M., Vuolo, F. and d’Andrimont, R., 2024. European Union crop map 2022: Earth observation’s 10-meter dive into Europe’s crop tapestry. Scientific Data, 11(1), p.1048. 10.1038/s41597-024-03884-y

DOIs

Explore with Earth Engine

Code Editor (JavaScript)

var image = ee.ImageCollection('JRC/D5/EUCROPMAP/V1').filterDate(
    '2018-01-01', '2019-01-01').first();
Map.addLayer(image, {}, 'EUCROPMAP 2018');
Map.setCenter(10, 48, 4);
Open in Code Editor