在 google-earth-engine 中将 Sentinel 1 Image Collection 过滤到我感兴趣的区域未产生任何特征(或图像)

Filtering Sentinel 1 Image Collection to my area of interest produced no feature (or image) in google-earth-engine

我的 objective 它为我的项目区域 (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)

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