1

我的目标是为我的项目区域 (AOI) 加载和过滤 2015 年到 2016 年的前哨图像;该代码生成了没有图像的图像集合。你能帮助我吗

以下是最初来自https://krstn.eu/analyze-Sentinel-1-time-series-in-Google-Earth-Engine的代码,它不适用于我的项目区域。它导致图像集合中的 o 元素

加载 Sentinel-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)
4

1 回答 1

1

根本没有符合您条件的图像。对于世界上的某些地区,直到 2016 年中后期才以全部运行能力获取 Sentinel-1 图像。更改您的日期范围filterDate()以包含更近期的图像(例如,2017 年或 2018 年全年),您将开始看到一些东西更接近 Sentinel-1 的 12 天重访。

于 2018-08-23T19:24:14.433 回答