我的目标是为我的项目区域(AOI)加载和过滤2015到2016年的前哨图像;代码生成了没有图像的图像集合。你能帮帮我吗
以下是来自https://krstn.eu/analyze-Sentinel-1-time-series-in-Google-Earth-Engine的代码,它不适用于我的项目区域。它会在图像集合中产生o个元素
加载前哨-1 ImageCollection。
var sentinel1 = ee.ImageCollection('COPERNICUS/S1_GRD');过滤器VH,IW
var vh = sentinel1
// Filter to get images with VV and VH dual polarization.
.filter(ee.Filter.listContains('transmitterReceiverPolarisation', 'VH'))
// Filter to get images collected in interferometric wide swath mode.
.filter(ee.Filter.eq('instrumentMode', 'IW'))
// reduce to VH polarization
.select('VH')
// filter 10m resolution
.filter(ee.Filter.eq('resolution_meters', 10));
// Filter to orbitdirection Descending
var vhDescending = vh.filter(ee.Filter.eq('orbitProperties_pass', 'DESCENDING'));
// Filter time 2015
var vhDesc2015 = vhDescending.filterDate(ee.Date('2015-01-01'), ee.Date('2015-12-31'));过滤到MKD AOI
var AOI = ee.Geometry.Polygon(
[[[40.5548410121811,6.969011579129182],
[39.0332345668686,7.241560288027144],
[37.5226144496811,7.050793118016936],
[37.9675607387436,6.521691240305265],
[39.6539621059311,6.390691419627786],
[40.5548410121811,6.969011579129182]]]);
var s1_mkd = vhDesc2015.filterBounds(AOI);
print(s1_mkd,'s1_mkd');以下是打印的输出
ImageCollection COPERNICUS/S1_GRD (0 elements)
type: ImageCollection
id: COPERNICUS/S1_GRD
version: 1533921047325895
bands: []
features: []
properties: Object (15 properties)发布于 2018-08-24 03:24:14
根本没有与您的标准匹配的图像。对于世界上的一些地区,直到2016年中后期,Sentinel-1图像才以最大的作战能力获得。在filterDate()中更改日期范围,以包含更多最近的图像(例如,2017年或2018年的所有图像),您将开始看到更接近于哨兵-11 12天重访的内容。
https://stackoverflow.com/questions/51871988
复制相似问题