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:
- Ocean Color Forum
- Chlorophyll Forum
- Algorithm Theoretical Basis Document (Chlorophyll)
- Algorithm Theoretical Basis Document (Fluorescence Line Height)
- Algorithm Theoretical Basis Document (Particulate Organic Carbon)
- Algorithm Theoretical Basis Document (Remote-Sensing Reflectance)
- Processing History
- There are number of missing data dates in this dataset. For example, most dates are missing between 2009-04-29 and 2009-12-01.
- The estimated values for POC might be a result of the data being generated without a scale. For more information, visit the Ocean Color Forum. SeaWiFS OceanData
这个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');