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
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
代码:
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');