This dataset contains maps of the location and temporal distribution of surface water from 1984 to 2015 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,066,102 scenes from Landsat 5, 7, and 8 acquired between 16 March 1984 and 10 October 2015. 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-2015) for change detection.
This Yearly Seasonality Classification collection contains a year-by-year classification of the seasonality of water based on the occurrence values detected throughout the year.
该数据集包含1984年至2015年地表水的位置和时间分布图,并提供这些水面的范围和变化的统计数据。更多信息见相关期刊文章。全球地表水及其长期变化的高分辨率地图(自然,2016)和在线数据用户指南。
这些数据是使用1984年3月16日至2015年10月10日期间获取的Landsat 5、7和8的3,066,102个场景生成的。使用专家系统将每个像素单独分类为水/非水,并将结果整理为整个时间段的月度历史和两个纪元(1984-1999年,2000-2015年),用于变化检测。
这个年度季节性分类集包含了根据全年检测到的发生值对水的季节性进行的逐年分类。
Dataset Availability
1984-03-16T00:00:00 - 2015-10-18T00:00:00
Dataset Provider
EC JRC / Google
Collection Snippet
ee.ImageCollection("JRC/GSW1_0/YearlyHistory")
Resolution
30 meters
Bands Table
Name | Description |
waterClass | Classification of the seasonality of water throughout the year. |
Class Table: waterClass
Value | Color | Color Value | Description |
#cccccc | No data | ||
1 | #ffffff | Not water | |
2 | #99d9ea | Seasonal water | |
3 | #0000ff | Permanent water |
影像属性:
Name | Type | Description |
year | Double | Year |
数据使用:
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'
引用:
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)
var dataset = ee.ImageCollection('JRC/GSW1_0/YearlyHistory')
.filter(ee.Filter.date('2015-01-01', '2015-12-31'));
var waterClass = dataset.select('waterClass');
var waterClassVis = {
min: 0.0,
max: 3.0,
palette: ['cccccc', 'ffffff', '99d9ea', '0000ff'],
};
Map.setCenter(59.414, 45.182, 7);
Map.addLayer(waterClass, waterClassVis, 'Water Class');