前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine ——MOD17A2H V6总初级生产力(GPP)产品是一个具有500米分辨率的8天累积综合数据产品

Google Earth Engine ——MOD17A2H V6总初级生产力(GPP)产品是一个具有500米分辨率的8天累积综合数据产品

作者头像
此星光明
发布2024-02-02 10:42:02
1620
发布2024-02-02 10:42:02
举报

The MOD17A2H V6 Gross Primary Productivity (GPP) product is a cumulative 8-day composite with a 500m resolution. The product is based on the radiation-use efficiency concept and can be potentially used as inputs to data models to calculate terrestrial energy, carbon, water cycle processes, and biogeochemistry of vegetation.

Documentation:

MOD17A2H V6总初级生产力(GPP)产品是一个具有500米分辨率的8天累积综合数据。该产品基于辐射利用效率的概念,可作为数据模型的输入,计算陆地能源、碳、水循环过程和植被的生物地球化学。

Dataset Availability

2000-03-05T00:00:00 - 2021-09-06T00:00:00

Dataset Provider

NASA LP DAAC at the USGS EROS Center

Collection Snippet

ee.ImageCollection("MODIS/006/MOD17A2H")

Resolution

500 meters

Bands Table

Name

Description

Min

Max

Units

Scale

Gpp

Gross primary production

0

3000

kg*C/m^2

0.0001

PsnNet

Net photosynthesis; GPP minus the maintenance respiration (MR)

-3000

3000

kg*C/m^2

0.0001

Psn_QC

Quality control bits

0

Psn_QC Bitmask

Bit 0: MODLAND QC bits 0: Good quality1: Other qualityBit 1: Sensor 0: Terra1: AquaBit 2: Dead detector 0: Detectors apparently fine for up to 50% of channels 1, 21: Dead detectors caused >50% adjacent detector retrievalBits 3-4: Cloud state 0: Significant clouds NOT present (clear)1: Significant clouds WERE present2: Mixed cloud present on pixel3: Cloud state not defined, assumed clearBits 5-7: 5-level confidence quality score 0: Very best possible1: Good, very usable, but not the best2: Substandard due to geometry problems - use with caution3: Substandard due to other than geometry problems - use with caution4: Couldn't retrieve pixel (NOT PRODUCED AT ALL - non-terrestrial biome)7: Fill Value

  • Bit 0: MODLAND QC bits
    • 0: Good quality
    • 1: Other quality
  • Bit 1: Sensor
    • 0: Terra
    • 1: Aqua
  • Bit 2: Dead detector
    • 0: Detectors apparently fine for up to 50% of channels 1, 2
    • 1: Dead detectors caused >50% adjacent detector retrieval
  • Bits 3-4: Cloud state
    • 0: Significant clouds NOT present (clear)
    • 1: Significant clouds WERE present
    • 2: Mixed cloud present on pixel
    • 3: Cloud state not defined, assumed clear
  • Bits 5-7: 5-level confidence quality score
    • 0: Very best possible
    • 1: Good, very usable, but not the best
    • 2: Substandard due to geometry problems - use with caution
    • 3: Substandard due to other than geometry problems - use with caution
    • 4: Couldn't retrieve pixel (NOT PRODUCED AT ALL - non-terrestrial biome)
    • 7: Fill Value

使用说明:

MODIS data and products acquired through the LP DAAC have no restrictions on subsequent use, sale, or redistribution.

数据引用:

LP DAAC - MOD17A2H

代码:

代码语言:javascript
复制
var dataset = ee.ImageCollection('MODIS/006/MOD17A2H')
                  .filter(ee.Filter.date('2018-01-01', '2018-05-01'));

var gpp = dataset.select('Gpp');
var gppVis = {
  min: 0.0,
  max: 600.0,
  palette: ['bbe029', '0a9501', '074b03'],
};
Map.setCenter(6.746, 46.529, 2);
Map.addLayer(gpp, gppVis, 'GPP');
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

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