HydroSHEDS is a mapping product that provides hydrographic information for regional and global-scale applications in a consistent format. It offers a suite of geo-referenced datasets (vector and raster) at various scales, including river networks, watershed boundaries, drainage directions, and flow accumulations. HydroSHEDS is based on elevation data obtained in 2000 by NASA's Shuttle Radar Topography Mission (SRTM).
This void-filled elevation dataset is the first step towards producing the conditioned DEM datasets. Spikes and wells in the SRTM data were detected and voided out. Small voids were filled by interpolation of surrounding elevations. The ocean was set to an elevation of 0 meters, and lakes, islands, and rivers were filled using other techniques. Full details of the underlying digital elevation model are available in the HydroSHEDS website and documentation.
This dataset is at 3 arc-second resolution. The datasets available at 3 arc-seconds are the Void-Filled DEM, Hydrologically Conditioned DEM, and Drainage (Flow) Direction.
Note that the quality of the HydroSHEDS data is significantly lower for regions above 60 degrees northern latitude as there is no underlying SRTM elevation data available and thus a coarser-resolution DEM was (HYDRO1k provided by USGS).
HydroSHEDS was developed by the World Wildlife Fund (WWF) Conservation Science Program in partnership with the U.S. Geological Survey, the International Centre for Tropical Agriculture, The Nature Conservancy, and the Center for Environmental Systems Research of the University of Kassel, Germany.
HydroSHEDS是一个制图产品,以一致的格式为区域和全球范围的应用提供水文信息。它提供了一套不同尺度的地理参考数据集(矢量和栅格),包括河流网络、流域边界、排水方向和流量积累。HydroSHEDS是基于2000年NASA的航天飞机雷达地形任务(SRTM)获得的高程数据。
这个充满空隙的高程数据集是产生条件DEM数据集的第一步。SRTM数据中的尖峰和井被检测出来,并将其空洞化。小的空洞由周围的高程内插来填补。海洋被设置为0米高程,湖泊、岛屿和河流则使用其他技术进行填充。基础数字高程模型的全部细节可在HydroSHEDS网站和文件中找到。
该数据集的分辨率为3弧秒。3角秒的数据集是虚空填充DEM、水文条件DEM和排水(流)方向。
请注意,在北纬60度以上的地区,HydroSHEDS数据的质量要低得多,因为没有底层的SRTM高程数据可用,因此要用更粗的分辨率DEM(美国地质调查局提供的HYDRO1k)。
HydroSHEDS是由世界自然基金会(WWF)保护科学项目与美国地质调查局、国际热带农业中心、大自然保护协会和德国卡塞尔大学环境系统研究中心合作开发的。
Dataset Availability
2000-02-11T00:00:00 - 2000-02-22T00:00:00
Dataset Provider
WWF
Collection Snippet
ee.Image("WWF/HydroSHEDS/03VFDEM")
Resolution
92.77 meters
Bands Table
Name | Description | Min* | Max* | Units |
---|---|---|---|---|
b1 | Elevation | -424 | 8642 | Meters |
* = Values are estimated
引用:
Lehner, B., Verdin, K., Jarvis, A. (2008): New global hydrography derived from spaceborne elevation data. Eos, Transactions, AGU, 89(10): 93-94.
代码:
代码语言:javascript复制var dataset = ee.Image('WWF/HydroSHEDS/03VFDEM');
var elevation = dataset.select('b1');
var elevationVis = {
min: -50.0,
max: 3000.0,
gamma: 2.0,
};
Map.setCenter(-121.652, 38.022, 8);
Map.addLayer(elevation, elevationVis, 'Elevation');