Google Earth Engine ——LANDSAT/GLS1975(1972年-1983年)1975年全球土地调查(GLS)数据集

简介: Google Earth Engine ——LANDSAT/GLS1975(1972年-1983年)1975年全球土地调查(GLS)数据集

The Global Land Survey (GLS) 1975 is a global collection of imagery from the Landsat Multispectral Scanner (MSS). Most scenes were acquired by Landsat 1-3 in 1972-1983. A few gaps in the Landsat 1-3 data have been filled with scenes acquired by Landsat 4-5 during the years 1982-1987. These data contain 4 spectral bands: Green, Red, an NIR band, and a SWIR band. In the typical False-color presentation, the images appear red because the NIR band, displayed as red, highlights vegetation.


1975年全球土地调查(GLS)是一个来自于Landsat多光谱扫描仪(MSS)的全球图像集。大多数场景是由Landsat 1-3在1972-1983年获得的。大地卫星1-3号数据中的一些空白被大地卫星4-5号在1982-1987年获得的场景所填补。这些数据包含4个光谱带。绿色、红色、一个近红外波段和一个西南红外波段。在典型的假彩色演示中,图像显示为红色,因为显示为红色的近红外波段突出了植被。

Dataset Availability

1972-01-01T00:00:00Z - 1983-02-10T00:00:00

Dataset Provider

USGS

Collection Snippet

Copied

ee.ImageCollection("LANDSAT/GLS1975")

Resolution

60 meters

Bands Table

Name Description Wavelength
10 Green 500-600 nm
20 Red 600-700 nm
30 Near infrared 700-800 nm
40 Short-wavelength infrared 800-1100 nm


说明:There are no restrictions on Landsat data, and it can be used or redistributed as desired. However, a statement of the data source when citing, copying, or reprinting USGS Landsat data or images is recommended.

引用:

"GLS 1975 image courtesy of the U.S. Geological Survey"

代码:

var dataset = ee.ImageCollection('LANDSAT/GLS1975');
var falseColor = dataset.select(['30', '20', '10']);
var falseColorVis = {
  gamma: 1.6,
};
Map.setCenter(44.517, 25.998, 5);
Map.addLayer(falseColor, falseColorVis, 'False Color');

L5:

var dataset = ee.ImageCollection('LANDSAT/GLS1975_MOSAIC');
var falseColor = dataset.select(['30', '20', '10']);
var falseColorVis = {
  gamma: 1.6,
};
Map.setCenter(44.517, 25.998, 5);
Map.addLayer(falseColor, falseColorVis, 'False Color');

L7:

var dataset = ee.ImageCollection('LANDSAT/GLS2005_L7');
var trueColor321 = dataset.select(['30', '20', '10']);
Map.setCenter(6.746, 46.529, 6);
Map.addLayer(trueColor321, {}, 'True Color (321)');


相关文章
|
19天前
|
数据可视化 定位技术 Sentinel
如何用Google Earth Engine快速、大量下载遥感影像数据?
【2月更文挑战第9天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,批量下载指定时间范围、空间范围的遥感影像数据(包括Landsat、Sentinel等)的方法~
844 1
如何用Google Earth Engine快速、大量下载遥感影像数据?
|
19天前
|
编解码 人工智能 算法
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
Google Earth Engine——促进森林温室气体报告的全球时间序列数据集
38 0
|
19天前
|
机器学习/深度学习 算法 数据可视化
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
基于Google Earth Engine云平台构建的多源遥感数据森林地上生物量AGB估算模型含生物量模型应用APP
125 0
|
19天前
|
存储 编解码 数据可视化
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
【2月更文挑战第14天】本文介绍在谷歌地球引擎(Google Earth Engine,GEE)中,按照给定的地表分类数据,对每一种不同的地物类型,分别加以全球范围内随机抽样点自动批量选取的方法~
289 1
Google Earth Engine获取随机抽样点并均匀分布在栅格的不同数值区中
|
19天前
|
数据处理
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
Google Earth Engine(GEE)——sentinel-1数据处理过程中出现错误Dictionary does not contain key: bucketMeans
37 0
|
19天前
|
数据采集 编解码 人工智能
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
Google Earth Engine(GEE)——全球每日近地表空气温度(2003-2020年)
85 0
|
19天前
|
编解码 人工智能 数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
Google Earth Engine(GEE)——全球道路盘查项目全球道路数据库
54 0
|
19天前
|
编解码
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
Open Google Earth Engine(OEEL)——matrixUnit(...)中产生常量影像
28 0
|
19天前
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
Google Earth Engine(GEE)——导出指定区域的河流和流域范围
62 0
|
19天前
|
传感器 编解码 数据处理
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
Open Google Earth Engine(OEEL)——哨兵1号数据的黑边去除功能附链接和代码
30 0