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

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

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

代码:

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');



相关文章
|
3月前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
627 0
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
3月前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
107 0
|
2月前
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
267 0
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
3月前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
30 0
|
3月前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
48 0
|
3月前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
23 0
|
3月前
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
51 0
|
3月前
|
传感器 编解码 数据处理
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
25 0
|
3月前
Google Earth Engine(GEE)——当加载图表的时候出现错误No features contain non-null values of “system:time_start“.
Google Earth Engine(GEE)——当加载图表的时候出现错误No features contain non-null values of “system:time_start“.
45 0
|
3月前
|
编解码 定位技术
Google Earth Engine(GEE)——导出后的影像像素不同于原始Landsat影像的分辨率(投影差异)
Google Earth Engine(GEE)——导出后的影像像素不同于原始Landsat影像的分辨率(投影差异)
30 0