前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine——全球海洋颜色、叶绿素、反射率和颗粒有机碳等数据集

Google Earth Engine——全球海洋颜色、叶绿素、反射率和颗粒有机碳等数据集

作者头像
此星光明
发布2024-02-02 11:44:26
1120
发布2024-02-02 11:44:26
举报

This level 3 product includes ocean color and satellite ocean biology data produced or collected under EOSDIS.

This dataset may be used for studying the biology and hydrology of coastal zones, changes in the diversity and geographical distribution of coastal marine habitats, biogeochemical fluxes and their influence in Earth's oceans and climate over time, and finally the impact of climate and environmental variability and change on ocean ecosystems and the biodiversity they support.

Scale factor and offset are already applied.

Documentation:

这个3级产品包括在EOSDIS下产生或收集的海洋颜色和卫星海洋生物学数据。

这个数据集可用于研究沿海地区的生物学和水文学、沿海海洋生境的多样性和地理分布的变化、生物地球化学通量及其在地球海洋和气候中的影响,以及最后研究气候和环境变异性和变化对海洋生态系统及其支持的生物多样性的影响。

已经应用了比例因子和抵消。

文件。

海洋色彩论坛

叶绿素论坛

算法的理论基础文件(叶绿素

算法理论基础文件(荧光线高度)

算法理论基础文件(颗粒有机碳)。

算法理论基础文件(遥感反射率)

处理历史

在这个数据集中,有许多数据丢失的日期。例如,大多数日期在2009-04-29和2009-12-01之间缺失。

POC的估计值可能是由于数据生成时没有标尺。欲了解更多信息,请访问海洋色彩论坛。

SeaWiFS OceanData

Dataset Availability

1997-09-04T00:00:00 - 2010-12-11T00:00:00

Dataset Provider

NASA OB.DAAC at NASA Goddard Space Flight Center

Collection Snippet

ee.ImageCollection("NASA/OCEANDATA/SeaWiFS/L3SMI")

Resolution

9200 meters

Bands Table

Name

Description

Min*

Max*

Units

Wavelength

chlor_a

Chlorophyll a concentration

0

99.99

mg m-3

poc

Particulate organic carbon

mg m-3

Rrs_412

Remote sensing reflectance at band 412nm

0

0.11

sr-1

412nm

Rrs_443

Remote sensing reflectance at band 443nm

0

0.11

sr-1

443nm

Rrs_490

Remote sensing reflectance at band 469nm

0

0.11

sr-1

490nm

Rrs_510

Remote sensing reflectance at band 488nm

0

0.11

sr-1

510nm

Rrs_555

Remote sensing reflectance at band 555nm

0

0.11

sr-1

555nm

Rrs_670

Remote sensing reflectance at band 531nm

0

0.11

sr-1

670nm

* = Values are estimated

影像属性:

Name

Type

Description

Rrs_412_lastModified

String

Last date this product was modified

Rrs_412_software_name

String

'smigen' or 'l3mapgen'; name of the software used to create this product

Rrs_412_software_version

String

Version of the software used to create this product

Rrs_443_lastModified

String

Last date this product was modified

Rrs_443_software_name

String

'smigen' or 'l3mapgen'; name of the software used to create this product

Rrs_443_software_version

String

Version of the software used to create this product

Rrs_555_lastModified

String

Last date this product was modified

Rrs_555_software_name

String

'smigen' or 'l3mapgen'; name of the software used to create this product

Rrs_555_software_version

String

Version of the software used to create this product

chlor_a_lastModified

String

Last date this product was modified

chlor_a_software_name

String

'smigen' or 'l3mapgen'; name of the software used to create this product

chlor_a_software_version

String

Version of the software used to create this product

poc_lastModified

String

Last date this product was modified

poc_software_name

String

'smigen' or 'l3mapgen'; name of the software used to create this product

poc_software_version

String

Version of the software used to create this product

Rrs_490_lastModified

String

Last date this product was modified

Rrs_490_software_name

String

'smigen' or 'l3mapgen'; name of the software used to create this product

Rrs_490_software_version

String

Version of the software used to create this product

Rrs_510_lastModified

String

Last date this product was modified

Rrs_510_software_name

String

'smigen' or 'l3mapgen'; name of the software used to create this product

Rrs_510_software_version

String

Version of the software used to create this product

Rrs_670_lastModified

String

Last date this product was modified

Rrs_670_software_name

String

'smigen' or 'l3mapgen'; name of the software used to create this product

Rrs_670_software_version

String

Version of the software used to create this product

数据引用:

NASA Goddard Space Flight Center, Ocean Ecology Laboratory, Ocean Biology Processing Group. Sea-viewing Wide Field-of-view Sensor (SeaWiFS) Data, NASA OB.DAAC, Greenbelt, MD, USA. doi:10.5067/ORBVIEW-2/SEAWIFS/L1/DATA/1

NASA Ocean Color

NASA Ocean Color

NASA Ocean Color

代码:

代码语言:javascript
复制
var dataset = ee.ImageCollection('NASA/OCEANDATA/SeaWiFS/L3SMI')
                  .filter(ee.Filter.date('2009-07-01', '2009-08-30'));
var remoteSensingReflectance =
    dataset.select(['Rrs_670', 'Rrs_555', 'Rrs_443']);
var remoteSensingReflectanceVis = {
  min: 0.0,
  max: 0.03,
};
Map.setCenter(-52.12, -46.13, 1);
Map.addLayer(
    remoteSensingReflectance, remoteSensingReflectanceVis,
    'Remote Sensing Reflectance');
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档