zl程序教程

您现在的位置是:首页 >  其他

当前栏目

Google Earth Engine ——全球JRC/GSW1_2/MonthlyHistory数据集的观测数据

Google数据 全球 Engine Earth 观测
2023-09-11 14:15:12 时间

This dataset contains maps of the location and temporal distribution of surface water from 1984 to 2019 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 4,185,439 scenes from Landsat 5, 7, and 8 acquired between 16 March 1984 and 31 December 2019. 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-2019) for change detection.

This Monthly History collection holds the entire history of water detection on a month-by-month basis. The collection contains 430 images, one for each month between March 1984 and December 2019.

该数据集包含1984年至2019年地表水的位置和时间分布图,并提供这些水面的范围和变化的统计数据。更多信息见相关期刊文章。全球地表水及其长期变化的高分辨率地图(自然,2016)和在线数据用户指南。

这些数据是使用1984年3月16日至2019年12月31日期间获取的Landsat 5、7和8的4,185,439个场景生成的。每个像素都使用专家系统单独分类为水/非水,并将结果整理成整个时间段的月度历史和两个纪元(1984-1999年,2000-2019年),用于变化检测。

这个月度历史记录集以月为单位保存了整个水检测的历史。该合集包含430张图片,1984年3月至2019年12月期间每个月一张。

Dataset Availability

1984-03-16T00:00:00 - 2020-01-01T00:00:00

Dataset Provider

EC JRC / Google

Collection Snippet

ee.ImageCollection("JRC/GSW1_2/MonthlyHistory")

Resolution

30 meters

Bands Table

NameDescription
waterWater detection for the month.
water Bitmask
  • Bits 0-1: Water detection
    • 0: No data
    • 1: Not water
    • 2: Water
NameTypeDescription
monthDoubleMonth
yearDoubleYear

 数据使用:

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_2/MonthlyHistory');

var visualization = {
  bands: ['water'],
  min: 0.0,
  max: 2.0,
  palette: ['ffffff', 'fffcb8', '0905ff']
};

Map.setCenter(-121.234, 38.109, 7);

Map.addLayer(dataset, visualization, 'Water');