数据目录合集:

COPERNICUS_S5P_OFFL_L3_CH4

COPERNICUS_S5P_OFFL_L3_CLOUD

COPERNICUS_S5P_OFFL_L3_CO

COPERNICUS_S5P_OFFL_L3_HCHO

COPERNICUS_S5P_OFFL_L3_NO2

COPERNICUS_S5P_OFFL_L3_O3

COPERNICUS_S5P_OFFL_L3_O3_TCL

COPERNICUS_S5P_OFFL_L3_SO2

数据介绍:

Sentinel-5 Precursor

Sentinel-5 Precursor is a satellite launched on 13 October 2017 by the European Space Agency to monitor air pollution. The onboard sensor is frequently referred to as Tropomi (TROPOspheric Monitoring Instrument).

All of the S5P datasets, except CH4, have two versions: Near Real-Time (NRTI) and Offline (OFFL). CH4 is available as OFFL only. The NRTI assets cover a smaller area than the OFFL assets, but appear more quickly after acquisition. The OFFL assets contain data from a single orbit (which, due to half the earth being dark, contains data only for a single hemisphere).

Because of noise on the data, negative vertical column values are often observed in particular over clean regions or for low SO2 emissions. It is recommended not to filter these values except for outliers, i.e. for vertical columns lower than -0.001 mol/m^2.

The original Sentinel 5P Level 2 (L2) data is binned by time, not by latitude/longitude. To make it possible to ingest the data into Earth Engine, each Sentinel 5P L2 product is converted to L3, keeping a single grid per orbit (that is, no aggregation across products is performed).

Source products spanning the antimeridian are ingested as two Earth Engine assets, with suffixes _1 and _2.

The conversion to L3 is done by the harpconvert tool using the bin_spatial operation. The source data is filtered to remove pixels with QA values less than:

  • 80% for AER_AI
  • 75% for the tropospheric_NO2_column_number_density band of NO2
  • 50% for all other datasets except for O3 and SO2

The O3_TCL product is ingested directly (without running harpconvert).

Sentinel-5 Precursor
Sentinel-5 Precursor 是欧洲航天局于 2017 年 10 月 13 日发射的一颗卫星,用于监测空气污染。机载传感器通常被称为 Tropomi(对流层监测仪器)。

除 CH4 外,所有 S5P 数据集都有两个版本:近实时 (NRTI) 和离线 (OFFL)。 CH4 仅作为 OFFL 提供。 NRTI 资产覆盖的区域比 OFFL 资产小,但在收购后出现得更快。 OFFL 资产包含来自单个轨道的数据(由于地球有一半是黑暗的,因此仅包含单个半球的数据)。

由于数据上的噪声,通常会观察到负的垂直列值,尤其是在清洁区域或 SO2 排放量较低的情况下。除了离群值外,建议不要过滤这些值,即对于低于 -0.001 mol/m^2 的垂直列。

原始 Sentinel 5P Level 2 (L2) 数据按时间分档,而不是按纬度/经度分档。为了能够将数据摄取到 Earth Engine,每个 Sentinel 5P L2 产品都转换为 L3,每个轨道保持一个网格(即,不执行跨产品的聚合)。

跨越反子午线的源产品作为两个地球引擎资产被摄取,后缀为 _1 和 _2。

到 L3 的转换由 harpconvert 工具使用 bin_spatial 操作完成。过滤源数据以移除 QA 值小于以下值的像素:

AER_AI 80%
NO2 的对流层_NO2_column_number_密度带为 75%
除 O3 和 SO2 外,所有其他数据集为 50%
直接摄取 O3_TCL 产品(不运行 harpconvert)。

数据基本信息:

Dataset Availability

2018-04-30T10:50:26 - 2021-08-22T00:00:00

Dataset Provider

European Union/ESA/Copernicus

Collection Snippet

ee.ImageCollection("COPERNICUS/S5P/OFFL/L3_O3_TCL")

数据属性:

Name Type Description
ALGORITHM_VERSION String The algorithm version used in L2 processing. It's separate from the processor (framework) version, to accommodate different release schedules for different products.
BUILD_DATE String The date, expressed as milliseconds since 1 Jan 1970, when the software used to perform L2 processing was built.
HARP_VERSION Int The version of the HARP tool used to grid the L2 data into an L3 product.
INSTITUTION String The institution where data processing from L1 to L2 was performed.
L3_PROCESSING_TIME Int The date, expressed as milliseconds since 1 Jan 1970, when Google processed the L2 data into L3 using harpconvert.
LAT_MAX Double The maximum latitude of the asset (degrees).
LAT_MIN Double The minimum latitude of the asset (degrees).
LON_MAX Double The maximum longitude of the asset (degrees).
LON_MIN Double The minimum longitude of the asset (degrees).
ORBIT Int The orbit number of the satellite when the data was acquired.
PLATFORM String Name of the platform which acquired the data.
PROCESSING_STATUS String The processing status of the product on a global level, mainly based on the availability of auxiliary input data. Possible values are "Nominal" and "Degraded".
PROCESSOR_VERSION String The version of the software used for L2 processing, as a string of the form "major.minor.patch".
PRODUCT_ID String Id of the L2 product used to generate this asset.
PRODUCT_QUALITY String Indicator that specifies whether the product quality is degraded or not. Allowed values are "Degraded" and "Nominal".
SENSOR String Name of the sensor which acquired the data.
SPATIAL_RESOLUTION String Spatial resolution at nadir. For most products this is `3.5x7km2`, except for `L2__O3__PR`, which uses `28x21km2`, and `L2__CO____` and `L2__CH4___`, which both use `7x7km2`. This attribute originates from the CCI standard.
TIME_REFERENCE_DAYS_SINCE_1950 Int Days from 1 Jan 1950 to when the data was acquired.
TIME_REFERENCE_JULIAN_DAY Double The Julian day number when the data was acquired.
TRACKING_ID String UUID for the L2 product file.

数据集代码:

var collection = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_CH4').select('CH4_column_volume_mixing_ratio_dry_air').filterDate('2019-06-01', '2019-07-16');var band_viz = {min: 1750,max: 1900,palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red']
};Map.addLayer(collection.mean(), band_viz, 'S5P CH4');
Map.setCenter(0.0, 0.0, 2);
var collection = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_CLOUD').select('cloud_fraction').filterDate('2019-06-01', '2019-06-02');var band_viz = {min: 0,max: 0.95,palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red']
};Map.addLayer(collection.mean(), band_viz, 'S5P Cloud');
Map.setCenter(-58.14, -10.47, 2);
var collection = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_CO').select('CO_column_number_density').filterDate('2019-06-01', '2019-06-11');var band_viz = {min: 0,max: 0.05,palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red']
};Map.addLayer(collection.mean(), band_viz, 'S5P CO');
Map.setCenter(-25.01, -4.28, 4);
var collection = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_HCHO').select('tropospheric_HCHO_column_number_density').filterDate('2019-06-01', '2019-06-06');var band_viz = {min: 0.0,max: 0.0003,palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red']
};Map.addLayer(collection.mean(), band_viz, 'S5P HCHO');
Map.setCenter(0.0, 0.0, 2);
var collection = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_NO2').select('tropospheric_NO2_column_number_density').filterDate('2019-06-01', '2019-06-06');var band_viz = {min: 0,max: 0.0002,palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red']
};Map.addLayer(collection.mean(), band_viz, 'S5P N02');
Map.setCenter(65.27, 24.11, 4);
var collection = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_O3').select('O3_column_number_density').filterDate('2019-06-01', '2019-06-05');var band_viz = {min: 0.12,max: 0.15,palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red']
};Map.addLayer(collection.mean(), band_viz, 'S5P O3');
Map.setCenter(0.0, 0.0, 2);
var collection = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_O3_TCL').select('ozone_tropospheric_vertical_column').filterDate('2019-06-01', '2019-07-01');var band_viz = {min: 0,max: 0.02,palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red']
};Map.addLayer(collection.mean(), band_viz, 'S5P O3');
Map.setCenter(0.0, 0.0, 2);
var collection = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_SO2').select('SO2_column_number_density').filterDate('2019-06-01', '2019-06-11');var band_viz = {min: 0.0,max: 0.0005,palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red']
};Map.addLayer(collection.mean(), band_viz, 'S5P SO2');
Map.setCenter(0.0, 0.0, 2);

相应的影像:

Google Earth Engine ——(COPERNICUS/S5P/OFFL/L3系列——CH4/CO/CLOUD/CO/HCHO/NO2/O3/SO2)数据集相关推荐

  1. Google Earth Engine(GEE)——哨兵系列合成孔径雷达 (SAR) 图像Sentinel-1 算法影像加载和波段获取(新手必备)

    Sentinel-1是一项由欧盟资助并由欧洲航天局 (ESA) 在哥白尼计划内执行的太空任务.Sentinel-1 收集各种极化和分辨率的 C 波段合成孔径雷达 (SAR) 图像.由于雷达数据需要几种 ...

  2. Google Earth Engine(GEE)农作物种植结构提取

    目录 写在前面 1.构建物候特征 2.构建光谱特征 3.将所有影像合并为一幅影像 4.构建随机森林算法进行分类 5.算法的存储 6.面积统计 写在前面 前段时间因为考研的原因一直没能更新,已经完成了农 ...

  3. Google Earth Engine学习笔记(一)

    基于GEE平台的Landsat8.Sentinel2.MODIS"去云"处理及FUI水色指数运算 文章目录 基于GEE平台的Landsat8.Sentinel2.MODIS&quo ...

  4. 基于Google Earth Engine Explorer谷歌地球引擎GEE浏览界面实现遥感影像地物监督分类

      本文主要对GEE的网页界面式应用程序接口Google Earth Engine Explorer加以详细介绍与地物监督分类这一具体应用.本文是谷歌地球引擎(Google Earth Engine, ...

  5. Google Earth Engine——概述

    概述 GEE(Google Earth Engine)平台是一个集科学分析及地理信息数据可视化的综合性平台,该平台提供丰富的API,以及工具帮助方便查看.计算.处理和分析大范围的各种影像等GIS数据. ...

  6. Google Earth Engine(GEE)——在处理sentinel-1 合成孔径雷达 SAR 数据

    可视化 Sentinel-1 数据 本实验的目的是加深您对合成孔径雷达 (SAR) 数据的理解,并学习如何在 Google Earth Engine 中可视化不同的复合材料. Sentinel-1 有 ...

  7. Google Earth Engine谷歌地球引擎GEE图层投影信息与参考坐标系及其空间转换参数获取

      本文主要对GEE中的投影信息与参考坐标系及其空间转换参数获取加以介绍.本文是谷歌地球引擎(Google Earth Engine,GEE)系列教学文章的第十二篇,更多GEE文章请参考专栏:GEE学 ...

  8. Google Earth Engine谷歌地球引擎GEE地理坐标系与投影坐标系变换与重投影

      本文主要对GEE中地理坐标系与投影坐标系转换.重投影等操作加以介绍.本文是谷歌地球引擎(Google Earth Engine,GEE)系列教学文章的第十三篇,更多GEE文章请参考专栏:GEE学习 ...

  9. Google Earth Engine批量下载Sentinel、Landsat、MODIS遥感影像代码

    Google Earth Engine批量下载Sentinel.Landsat.MODIS遥感影像代码 一.创建下载任务 二.运行下载任务 一.创建下载任务 Google Earth Engine(G ...

最新文章

  1. ttc转换ttf字体在线_R 语言画图中英文字体解决方案
  2. 剑指offer:旋转数组的最小数字
  3. word 2010中如何创建多级目录和多级列表
  4. 用BluePrint进行Web页面设计
  5. 【矩阵乘法】递推(ssl 1532)
  6. REVERSE-PRACTICE-BUUCTF-10
  7. Linux学习(四)- 文件查找和压缩
  8. 数据导入导出、备份恢复
  9. 哪吒U Pro试驾:透明A柱超实用、满电500公里保底续航
  10. Spring 层次性依赖查找Bean
  11. 程序结构程序设计(四)
  12. Windows引导及安装
  13. 视觉定位VBL 视觉里程计VO 视觉SLAM 区别与联系
  14. 【新书推荐】杰夫·惠勒:帝泉传奇系列(共3册)
  15. mset redis_redis mset key命令简介
  16. html5做出toast效果,toast提示效果
  17. python编程代码-几个Python小案例,爱上Python编程!
  18. 开发右脑,数字桩记忆扑克牌训练教程
  19. 百度盈利模式的弱点在哪里
  20. css 背景颜色 background属性

热门文章

  1. oracle游标的使用例子,oracle游标的例子
  2. 使用ffmpeg将DVD转MP4
  3. 经济学入门概念及原理-1
  4. 关于 runat=server
  5. 如何使用按键精灵不断重启路由器
  6. 洛谷(P1304 哥德巴赫猜想)
  7. EXCEL表格中怎样将文字完全显示
  8. 如何保存CSV格式文件
  9. 【译】如何在 Android 中使用 Retrofit, Moshi, Coroutines Recycler View
  10. 提高英语文献阅读能力