前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >GEE数据集——澳大利亚1987—2022年30米分辨率地表水数据集

GEE数据集——澳大利亚1987—2022年30米分辨率地表水数据集

作者头像
此星光明
发布2024-05-24 09:23:35
450
发布2024-05-24 09:23:35
举报

简介

澳大利亚数字地球(DEA)水观测使用一种算法将大地遥感卫星图像中的每个像素分为 "湿"、"干 "或 "无效"。水观测统计提供的信息包括每年大地遥感卫星能够清晰观测到某一区域的次数、这些观测结果中潮湿的次数,以及这意味着在地貌中观测到水的时间百分比。

将分类像素合并成涵盖每年的摘要,就能得到通常有水和很少有水的地方的信息。由于没有对该产品进行置信度过滤,它受到输入的水分类中出现的误分类噪音的影响,很难单独进行解释。

如需了解更多信息:

https://cmi.ga.gov.au/data-products/dea/686/dea-water-observations-statistics-landsat

该产品是澳大利亚数字地球计划的一部分

Digital Earth Australia Home | Digital Earth Australia | Geoscience Australia

数据介绍

Catalog Owner

Geoscience Australia

Dataset Availability

1987-01-01T00:00:00Z–2022-01-01T00:00:00Z

Dataset Provider

Geoscience Australia NGIS

Contact

https://www.ga.gov.au/contact-us

Earth Engine Snippet

ee.ImageCollection("projects/geoscience-aus-cat/assets/ga_ls_wo_fq_cyear_3")

DEA Water Observations Statistics (Landsat)

Geoscience Australia Landsat Water Observation Statistics Collection 3

Version:

3.1.6 (Latest)

Product types:

Derivative, Raster

Time span:

1986 – Present

Update frequency:

Periodically

Product IDs:

ga_ls_wo_fq_apr_oct_3, ga_ls_wo_fq_nov_mar_3, ga_ls_wo_fq_cyear_3, ga_ls_wo_fq_myear_3

Resolution 25 meters

波段

Name

Min

Max

Wavelength

Description

blue

0*

10000*

0.450-0.520 μm

Band blue surface reflectance geometric median.

green

0*

10000*

0.520-0.600 μm

Band green surface reflectance geometric median.

red

0*

10000*

0.630-0.690 μm

Band red surface reflectance geometric median.

near_infrared

0*

10000*

0.760-0.900 μm

Band near infrared surface reflectance geometric median.

shortwave_infrared_1

0*

10000*

1.550-1.750 μm

Band shortwave infrared 1 surface reflectance geometric median.

shortwave_infrared_2

0*

10000*

2.080-2.350 μm

Band shortwave infrared 2 surface reflectance geometric median.

Euclidean_distance_median_absolute_deviation

0*

10000*

The Median Absolute Deviation using Euclidean distance (EMAD). EMAD is more sensitive to changes in target brightness.

spectral_distance_median_absolute_deviation

0*

10000*

The Median Absolute Deviation using Cosine (spectral) distance (SMAD). SMAD is more sensitive to change in target spectral response.

Bray_Curtis_dissimilarity_median_absolute_deviation

0*

10000*

The Median Absolute Deviation using Bray Curtis dissimilarity (BCMAD). BCMAD is more sensitive to the distribution of the observation values through time.

count

0*

400*

The number of the available pixels used for calculation per calendar year.

* estimated min or max value

代码

代码语言:javascript
复制
var water_obs = ee.ImageCollection('projects/geoscience-aus-cat/assets/ga_ls_wo_fq_cyear_3');

var gray = 150;
var background = ee.Image.rgb(gray, gray, gray).visualize({ min: 0, max: 255 });

var visualization_frequency = {
  bands: ['frequency'],
  min: 0.0,
  max: 1.0,
  palette: ['ffffff', 'ffbbbb', '0000ff']
};

var point = ee.Geometry.Point([113.651455, -26.024137]);

var image = water_obs.filterBounds(point)
                     .filterDate('2010-01-01', '2011-01-01')
                     .first()
                     .visualize(visualization_frequency);
                     
Map.centerObject(image, 12);
var imageWithBackground = ee.ImageCollection([background, image]).mosaic();
Map.addLayer(imageWithBackground, {}, 'Water Frequency ratio');

引用

结果

网址推荐

0代码在线构建地图应用

Mapmost login

机器学习

https://www.cbedai.net/xg

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-04-06,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 简介
  • 数据介绍
  • 波段
  • 代码
  • 引用
  • 结果
    • 网址推荐
      • 0代码在线构建地图应用
        • 机器学习
        领券
        问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档