前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine——臭氧总量绘图分光仪(TOMS)数据集代表了过去25年中可用于监测全球和区域臭氧总量趋势的主要长期、连续的卫星观测记录

Google Earth Engine——臭氧总量绘图分光仪(TOMS)数据集代表了过去25年中可用于监测全球和区域臭氧总量趋势的主要长期、连续的卫星观测记录

作者头像
此星光明
发布2024-02-02 11:55:52
680
发布2024-02-02 11:55:52
举报

The Total Ozone Mapping Spectrometer (TOMS) data represent the primary long-term, continuous record of satellite-based observations available for use in monitoring global and regional trends in total ozone over the past 25 years. The data are produced by the Laboratory for Atmospheres at NASA's Goddard Space Flight Center. Version 8 TOMS data products include level 3 gridded data (1.0 x 1.25 deg). The Ozone Monitoring Instrument (OMI), aboard the Aura satellite (July 2004 - current), has a higher resolution (1.0 x 1.0 deg).

These data represent a merged ozone product from TOMS/EarthProbe, TOMS/Nimbus-7, TOMS/Meteor-3, OMI/Aura and USGS-interpolated data for dates with no data.

Additional TOMS and OMI information

臭氧总量绘图分光仪(TOMS)数据代表了过去25年中可用于监测全球和区域臭氧总量趋势的主要长期、连续的卫星观测记录。这些数据是由美国宇航局戈达德太空飞行中心的大气实验室制作的。第8版TOMS数据产品包括3级网格数据(1.0 x 1.25度)。Aura卫星上的臭氧监测仪器(OMI)(2004年7月-现在)具有更高的分辨率(1.0 x 1.0 deg)。

这些数据是由TOMS/EarthProbe、TOMS/Nimbus-7、TOMS/Meteor-3、OMI/Aura和USGS对没有数据的日期进行内插的数据合并而成的臭氧产品。

其他TOMS和OMI信息

Dataset Availability

1978-11-01T00:00:00 - 2021-10-03T00:00:00

Dataset Provider

NASA / GES DISC

Collection Snippet

ee.ImageCollection("TOMS/MERGED")

Bands Table

Name

Description

Min*

Max*

Units

ozone

Total column ozone

73

983

Dobson units

* = Values are estimated

使用说明:

Distribution of data from the Goddard Earth Sciences Data and Information Services Center (GES DISC) is funded by NASA's Science Mission Directorate (SMD). Consistent with NASA Earth Science Data and Information Policy, data from the GES DISC archive are available free to the user community. For more information visit the GES DISC Data Policy page.

数据引用:

The data set source should be properly cited when the data are used. A formal reference of the form: <authors>, 2012, last updated 2013: <dataset name>. NASA/GSFC, Greenbelt, MD, USA, NASA Goddard Earth Sciences Data and Information Services Center (GES DISC). Accessed <enter user data access date> at <DOI> is suggested following Parsons et al. (2010), doi:10.1029/2010EO340001

代码:

代码语言:javascript
复制
var dataset = ee.ImageCollection('TOMS/MERGED')
                  .filter(ee.Filter.date('2018-08-01', '2018-08-10'));
var columnOzone = dataset.select('ozone');
var columnOzoneVis = {
  min: 100.0,
  max: 500.0,
  palette: ['1621A2', 'cyan', 'green', 'yellow', 'orange', 'red'],
};
Map.setCenter(6.746, 46.529, 2);
Map.addLayer(columnOzone, columnOzoneVis, 'Column Ozone');
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

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