Google Earth Engine APP——利用S2影像进行最大值影像合成分析

这次我们首先大家不要犯低级错误,我们先去看看gee官方的文档https://developers.google.com/earth-engine/tutorials/tutorial_js_03

这里我们在用这个程序的时候,有时候加减法就是用add或者subtract等,而不是直接用符合的加减乘除的符号”+“,”-“,”*“,”/“这些符号,因为GEE当中使用的客户端运行,

本文我们用到的是一个关于影像每15天进行一次筛选的过程,也就是每半个月检索一次

代码:

var geometry = 
    /* color: #d63000 */
    /* displayProperties: [
      {
        "type": "rectangle"
      }
    ] */
    ee.Geometry.Polygon(
        [[[-115.06328125, 40.534424706292405],
          [-115.06328125, 38.98050493805514],
          [-112.95390625, 38.98050493805514],
          [-112.95390625, 40.534424706292405]]], null, false);

var startDate = '2019-01-01';  
var endDate = '2022-01-01';

var aoi &

猜你喜欢

转载自blog.csdn.net/qq_31988139/article/details/125915811
今日推荐