日光诱导叶绿素荧光数据集(TROPOSIF_V2.1)

日光诱导叶绿素荧光数据集(TROPOSIF_V2.1) 简介与Notebook示例

此数据集为基于欧空局ESA资助的TROPOSIF项目,利用Sentinel-5P TROPOMI传感器观测生产了一套全球日光诱导叶绿素荧光SIF数据产品。SIF数据可用于反应生态系统的结构和生理信息,是植被光合作用的探针。TROPOMI传感器能够提供更高时空分辨率的每日全球观测。目前该产品提供了2018年5月-2021年12月的数据。前言 – 人工智能教程

日光诱导叶绿素荧光数据集(TROPOSIF_V2.1)是一个用于研究叶绿素荧光的数据集。该数据集包含了来自不同植物的日光诱导叶绿素荧光数据,以及与之相关的环境和生理参数数据。这些数据可以用于研究叶绿素荧光与植物生长、环境因素等之间的关系。

TROPOSIF_V2.1数据集包含了以下数据:

1. 叶绿素荧光数据:包括荧光基准值(F0)、最大荧光值(Fm)、最大光化学效率(Fv / Fm)等。

2. 环境参数数据:包括光照强度、温度、湿度等。

3. 生理参数数据:包括叶片面积、叶片厚度、叶绿素含量等。

TROPOSIF_V2.1数据集可以用于训练和验证叶绿素荧光预测模型,以及探索叶绿素荧光与环境和生理参数之间的关系。该数据集可以通过公共数据集库进行下载和使用。

时相:

2018年5月 - 2021年12月

范围:

全球

数据级别:

L2B

数据来源:

NOVELTIS

访问量:

268

引用代码:dataset = aie.ImageCollection('S5P_TROPOSIF_V21_L2B')

立即检索

分辨率

0.02° x 0.02°

波段

名称 描述 单位 最小值(估计值) 最大值(估计值)
SIF_Corr_735 Instantaneous SIF estimates scaled to daily SIF data by means of the day-length scaling factor (DayLength_fac)(735-758nm). mW/m2/sr/nm -5 5
SIF_Corr_743 Instantaneous SIF estimates scaled to daily SIF data by means of the day-length scaling factor (DayLength_fac)(743-758nm) mW/m2/sr/nm -5 5
SIF_735 Instantaneous SIF estimates derived from the 735-758 nm windows. mW/m2/sr/nm -5 5
SIF_743 Instantaneous SIF estimates derived from the 743-758 nm windows. mW/m2/sr/nm -5 5
SIF_ERROR_735 Correspond to the 1-σ retrieval errors which are parameterized for the instantaneous SIF estimates.(735-758nm) mW/m2/sr/nm 0 1
SIF_ERROR_743 Correspond to the 1-σ retrieval errors which are parameterized for the instantaneous SIF estimates.(743-758nm) 0 1
Mean_TOA_RAD_735 Mean TOA Radiance in fitting window.(735-758nm) mW/m2/sr/nm 0 100
Mean_TOA_RAD_743 Mean TOA Radiance in fitting window.(743-758nm) mW/m2/sr/nm 0 100

代码:

import aie
aie.Authenticate()
aie.Initialize()

#指定检索数据集,可设置检索的时间范围
dataset = aie.ImageCollection('S5P_TROPOSIF_V21_L2B') \
             .filterDate("2021-01-01", "2021-01-02") 

imgs = dataset.select(['SIF_735']);

map = aie.Map(
    center=imgs.getCenter(),
    height=800,
    zoom=2
)

vis_params = {
    'min': -0.2,
    'max': 1,
    'palette': ['#ffffb2','#fecc5c','#fd8d3c','#f03b20','#bd0026'
       
    ]
}

map.addLayer(
    imgs,
    vis_params,
    'TropomiSIF_SIF_735',
    bounds=imgs.getBounds()
)
map

 

import aie
aie.Authenticate()
aie.Initialize()

img = aie.Image('TROPOSIF_L2B_2021-08-01').select(['SIF_735'])

map = aie.Map(
    center=img.getCenter(),
    height=800,
    zoom=2
)

vis_params = {
    'min': -0.2,
    'max': 1,
    'palette': ['#ffffb2','#fecc5c','#fd8d3c','#f03b20','#bd0026'
       
    ]
}
map.addLayer(
    img,
    vis_params,
    'TropomiSIF_SIF_735',
    bounds=img.getBounds()
)
map

此数据集属于公开数据,非商业目的可使用。有关此项数据产品的使用说明和正确引用的详细信息,请参阅 SIF – Solar Induced Chlorophyll Fluorescence。 引用参考: NOVELTIS, UPV, SRON, LSCE, ESA (2021). The TROPOSIF global sun-induced fluorescence dataset from the TROPOMI mission: https://doi.org/10.5270/esa-s5p_innovation-sif-20180501_20210320- v2.1-202104 Guanter, L., Bacour, C., Schneider, A., Aben, I., van Kempen, T. A., Maignan, F., Retscher, C., Köhler, P., Frankenberg, C., Joiner, J., Zhang, Y. (2021). The TROPOSIF global sun-induced fluorescence dataset from the Sentinel-5P TROPOMI mission, Earth Syst. Sci. Data ,https://doi.org/10.5194/essd2021-199 

猜你喜欢

转载自blog.csdn.net/qq_31988139/article/details/132215407