前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine——NOAA/DMSP-OLS/NIGHTTIME_LIGHTS,DMSP数据由美国空军气象局收集

Google Earth Engine——NOAA/DMSP-OLS/NIGHTTIME_LIGHTS,DMSP数据由美国空军气象局收集

作者头像
此星光明
发布2024-02-02 12:18:02
1910
发布2024-02-02 12:18:02
举报

The Defense Meteorological Program (DMSP) Operational Line-Scan System (OLS) has a unique capability to detect visible and near-infrared (VNIR) emission sources at night.

Version 4 of the DMSP-OLS Nighttime Lights Time Series consists of cloud-free composites made using all the available archived DMSP-OLS smooth resolution data for calendar years. In cases where two satellites were collecting data, two composites were produced.

Image and data processing by NOAA's National Geophysical Data Center. DMSP data collected by US Air Force Weather Agency.

国防气象计划(DMSP)的作业线扫描系统(OLS)具有独特的能力,可以探测夜间的可见和近红外(VNIR)发射源。

DMSP-OLS夜间灯光时间序列的第4版包括使用历年所有可用的DMSP-OLS平滑分辨率存档数据进行的无云合成。在有两颗卫星收集数据的情况下,就会产生两个合成物。

图像和数据处理由NOAA的国家地球物理资料中心进行。DMSP数据由美国空军气象局收集。

Dataset Availability

1992-01-01T00:00:00 - 2014-01-01T00:00:00

Dataset Provider

Earth Observation Group, Payne Institute for Public Policy, Colorado School of Mines

Collection Snippet

ee.ImageCollection("NOAA/DMSP-OLS/NIGHTTIME_LIGHTS")

Resolution

927.67 meters

Bands Table

Name

Description

Min*

Max*

avg_vis

The average of the visible band digital number values with no further filtering.

0

63

stable_lights

The cleaned up avg_vis contains the lights from cities, towns, and other sites with persistent lighting, including gas flares. Ephemeral events, such as fires, have been discarded. The background noise was identified and replaced with values of zero.

0

63

cf_cvg

Cloud-free coverages tally the total number of observations that went into each 30-arc second grid cell. This band can be used to identify areas with low numbers of observations where the quality is reduced.

0

126

avg_lights_x_pct

The average visible band digital number (DN) of cloud-free light detections multiplied by the percent frequency of light detection. The inclusion of the percent frequency of detection term normalizes the resulting digital values for variations in the persistence of lighting. For instance, the value for a light only detected half the time is discounted by 50%. Note that this product contains detections from fires and a variable amount of background noise.

0

63

* = Values are estimated

数据说明:

NOAA data, information, and products, regardless of the method of delivery, are not subject to copyright and carry no restrictions on their subsequent use by the public. Once obtained, they may be put to any lawful use. The forgoing data is in the public domain and is being provided without restriction on use and distribution.

代码:

代码语言:javascript
复制
var dataset = ee.ImageCollection('NOAA/DMSP-OLS/NIGHTTIME_LIGHTS')
                  .filter(ee.Filter.date('2010-01-01', '2010-12-31'));
var nighttimeLights = dataset.select('avg_vis');
var nighttimeLightsVis = {
  min: 3.0,
  max: 60.0,
};
Map.setCenter(7.82, 49.1, 4);
Map.addLayer(nighttimeLights, nighttimeLightsVis, 'Nighttime Lights');
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

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