首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >将Sentinel 1图像集合过滤到我感兴趣的区域在google-earth-engine中没有生成任何特征(或图像)

将Sentinel 1图像集合过滤到我感兴趣的区域在google-earth-engine中没有生成任何特征(或图像)
EN

Stack Overflow用户
提问于 2018-08-16 15:41:22
回答 1查看 475关注 0票数 1

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

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

加载前哨-1 ImageCollection。

代码语言:javascript
复制
var sentinel1 = ee.ImageCollection('COPERNICUS/S1_GRD');

过滤器VH,IW

代码语言:javascript
复制
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

代码语言:javascript
复制
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');

以下是打印的输出

代码语言:javascript
复制
ImageCollection COPERNICUS/S1_GRD (0 elements)
type: ImageCollection
id: COPERNICUS/S1_GRD
version: 1533921047325895
bands: []
features: []
properties: Object (15 properties)
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-08-24 03:24:14

根本没有与您的标准匹配的图像。对于世界上的一些地区,直到2016年中后期,Sentinel-1图像才以最大的作战能力获得。在filterDate()中更改日期范围,以包含更多最近的图像(例如,2017年或2018年的所有图像),您将开始看到更接近于哨兵-11 12天重访的内容。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/51871988

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档