我是 Google 地球引擎的新手,正在尝试获取整个刚果民主共和国的 Landsat 图像。该项目涉及一些计算机视觉和图像分割,因此我需要尽可能获得最高分辨率。
我有一些从地球引擎开发的代码,用于从下面发布的 1 年陆地卫星图像合成。
var geometry = ee.Geometry.Polygon(
[[[29.70703125, -3.3160183381615123],
[24.609375, -3.4476246666468526],
[24.8291015625, -7.732765062729807],
[29.970703125, -7.645664723491028]]]);
// Composite 6 months of Landsat 8.
Map.setCenter( 26.362312, -4.643601, 5);
var boundingBox = geometry.bounds(1)
var L8 = ee.ImageCollection('LANDSAT/LC08/C01/T1');
var composite = ee.Algorithms.Landsat.simpleComposite({
collection: L8.filterDate('2015-1-1', '2015-7-1').filterBounds(geometry),
asFloat: true});
var region = ee.Geometry(geometry.getInfo())
.toGeoJSONString()
var params ={
crs: 'EPSG:4326',
region:region
}
Export.image(composite,'congo_test',params);
问题是每次我运行脚本时都会询问我的scale
值。所以我要求最高分辨率,但查询一直出错,因为它说我已经超过了图像导出的最大像素限制。
所以基本上我需要弄清楚如何将刚果分割成一组块,地球引擎允许我为这些块提取最大分辨率的合成图像。有谁知道我如何计算正确大小的多边形以适应账单?