JRC Monthly Water Recurrence, v1.1 [deprecated]

  • This dataset, now superseded by a newer version, provides monthly maps of global surface water occurrence from 1984 to 2018, derived from Landsat imagery.

  • It offers insights into the location, distribution, and changes in surface water over time, including seasonality trends.

  • The dataset includes monthly recurrence values (percentage) and a flag indicating data availability for each month.

  • Users should acknowledge the data source as "EC JRC/Google" when using it in publications or maps.

  • Although deprecated, it remains accessible through Google Earth Engine for research and analysis purposes.

JRC/GSW1_1/MonthlyRecurrence
Dataset Availability
1984-03-16T00:00:00Z–2019-01-01T00:00:00Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("JRC/GSW1_1/MonthlyRecurrence")
Climatological Interval
1 Month
Tags
geophysical
google
history
jrc
landsat-derived
monthly
recurrence
surface
surface-ground-water
water

Description

This dataset contains maps of the location and temporal distribution of surface water from 1984 to 2018 and provides statistics on the extent and change of those water surfaces. For more information see the associated journal article: High-resolution mapping of global surface water and its long-term changes (Nature, 2016) and the online Data Users Guide.

These data were generated using 3,865,618 scenes from Landsat 5, 7, and 8 acquired between 16 March 1984 and 31 December 2018. Each pixel was individually classified into water / non-water using an expert system and the results were collated into a monthly history for the entire time period and two epochs (1984-1999, 2000-2018) for change detection.

The Monthly Recurrence collection contains 12 images: monthly measures of the seasonality of water based on the occurrence values detected in that month over all years.

Bands

Pixel Size
30 meters

Bands

Name Units Min Max Pixel Size Description
monthly_recurrence % 0 100 meters

The recurrence value expressed as a percentage for this month.

has_observations meters

A flag to indicate if the month has observations.

Image Properties

Image Properties

Name Type Description
month DOUBLE

Month

Terms of Use

Terms of Use

All data here is produced under the Copernicus Programme and is provided free of charge, without restriction of use. For the full license information see the Copernicus Regulation.

Publications, models, and data products that make use of these datasets must include proper acknowledgement, including citing datasets and the journal article as in the following citation.

If you are using the data as a layer in a published map, please include the following attribution text: 'Source: EC JRC/Google'

Citations

Citations:
  • Jean-Francois Pekel, Andrew Cottam, Noel Gorelick, Alan S. Belward, High-resolution mapping of global surface water and its long-term changes. Nature 540, 418-422 (2016). (doi:10.1038/nature20584)

Explore with Earth Engine

Code Editor (JavaScript)

var dataset = ee.ImageCollection('JRC/GSW1_1/MonthlyRecurrence');

var visualization = {
  bands: ['monthly_recurrence'],
  min: 0.0,
  max: 100.0,
  palette: ['ffffff', 'ffbbbb', '0000ff']
};

Map.setCenter(-51.482, -0.835, 6);

Map.addLayer(dataset, visualization, 'Monthly Recurrence');
Open in Code Editor