Landsat Image Mosaic of Antarctica (LIMA) 16-Bit Pan-Sharpened Mosaic
The Landsat Image Mosaic of Antarctica (LIMA) is a seamless and virtually cloudless mosaic created from processed Landsat 7 ETM scenes.
This LIMA dataset is the 16-bit Intermediate LIMA. The mosaic consists of pan-sharpened normalized surface reflectance scenes (Landsat ETM bands 1, 2, 3, and 4). The mosaic was constructed by ordering cloud free images on top and trimming image boundaries when tile discontinuities occurred.
Users can find the mosaic tile footprints available at: USGS/LIMA/MOSAIC_TILE_FOOTPRINTS
南极洲大地卫星图像镶嵌(LIMA)是一个无缝的、几乎无云的数据,由经过处理的大地卫星7 ETM 场景创建。
这个LIMA数据集是16位的中级LIMA。马赛克由泛锐化的归一化表面反射率场景(Landsat ETM 波段1、2、3和4)组成。镶嵌是通过将无云图像排序在上面,并在出现瓦片不连续时修剪图像边界来构建的。
用户可以在以下网站上找到马赛克瓷砖的脚印。usgs/lima/mosaic_tile_footprints
Dataset Availability
1999-06-30T00:00:00 - 2002-09-04T00:00:00
Dataset Provider
USGS
Collection Snippet
Copied
ee.Image("USGS/LIMA/MOSAIC")
Bands Table
Name | Description | Resolution | Wavelength |
---|---|---|---|
B1 | Blue | 15 meters | 0.45 - 0.52 µm |
B2 | Green | 15 meters | 0.52 - 0.60 µm |
B3 | Red | 15 meters | 0.63 - 0.69 µm |
B4 | Near infrared | 15 meters | 0.77 - 0.90 µm |
数据引用:
Bindschadler, R., Vornberger, P., Fleming, A., Fox, A., Mullins, J., Binnie, D., Paulson, S., Granneman, B., and Gorodetzky, D., 2008, The Landsat Image Mosaic of Antarctica, Remote Sensing of Environment, 112, pp. 4214-4226. PDF
代码:
代码语言:javascript复制var dataset = ee.Image('USGS/LIMA/MOSAIC');
var antarctica = dataset.select(['B3', 'B2', 'B1']);
var antarcticaVis = {
min: 0.0,
max: 10000.0,
};
Map.setCenter(164.619, -77.99, 7);
Map.addLayer(antarctica, antarcticaVis, 'Antartica Imagery (RGB)');