AI-generated Key Takeaways
-
GFSAD1000_V1 provides a global cropland extent map at a 1km resolution, classifying land as non-cropland, irrigated, or rainfed.
-
The dataset utilizes multi-sensor remote sensing data, secondary data, and field-plot data to document cropland dynamics.
-
This NASA-funded project aims to support global food security analysis by providing insights into cropland distribution and water use.
-
The GFSAD1000 product was created using data primarily from 2007 to 2012 and represents the nominal year 2010.
-
USGS provides this dataset with minimal restrictions, encouraging its use for research, education, and nonprofit purposes.

- Dataset Availability
- 2010-01-01T00:00:00Z–2010-01-01T00:00:00Z
- Dataset Provider
- Global Food Security-support Analysis Data at 30m Project (GFSAD30)
- Tags
Description
The GFSAD is a NASA-funded project to provide high-resolution global cropland data and their water use that contributes towards global food security in the twenty-first century. The GFSAD products are derived through multi-sensor remote sensing data (e.g., Landsat, MODIS, AVHRR), secondary data, and field-plot data and aims at documenting cropland dynamics.
At a nominal 1km scale, V0.1 provides the spatial distribution of a disaggregated five-class global cropland extent map derived from four major studies: Thenkabail et al. (2009a, 2011), Pittman et al. (2010), Yu et al. (2013), and Friedl et al. (2010). V1.0 is a 5-class product that provides information on global cropland extent and irrigated versus rainfed cropping. There is no crop type or crop type dominance information. Cropping intensity (single, double, triple, and continuous crops) can be obtained for every pixel using time-series remote sensing data. The GFSAD1000 nominal 2010 product was created with data from 2007 to 2012.
Bands
Pixel Size
1000 meters
Bands
Name | Min | Max | Pixel Size | Description |
---|---|---|---|---|
landcover |
0 | 9 | meters | Crop mask class descriptions |
landcover Class Table
Value | Color | Description |
---|---|---|
0 | black | Non-croplands |
1 | orange | Croplands: irrigation major |
2 | brown | Croplands: irrigation minor |
3 | darkseagreen | Croplands: rainfed |
4 | green | Croplands: rainfed, minor fragments |
5 | yellow | Croplands: rainfed, very minor fragments |
Terms of Use
Terms of Use
Most U.S. Geological Survey (USGS) information resides in the public domain and may be used without restriction. Additional information on Acknowledging or Crediting USGS as Information Source is available.
Citations
Explore with Earth Engine
Code Editor (JavaScript)
var dataset = ee.Image('USGS/GFSAD1000_V1'); var cropMask = dataset.select('landcover'); var cropMaskVis = { min: 0.0, max: 5.0, palette: ['black', 'orange', 'brown', '02a50f', 'green', 'yellow'], }; Map.setCenter(-17.22, 13.72, 2); Map.addLayer(cropMask, cropMaskVis, 'Crop Mask');