如何将几何图形传递给 GEE 中的 Map 函数?

How can I pass a geometry to the Map function in GEE?

我正在尝试使用 Google Earth Engine 中的 Map 函数将 ImageCollection 剪辑到几何体中。我有多个感兴趣区域 (AOI),因此想多次应用通用剪辑功能(针对每个 AOI)。但是,当我创建一个具有两个参数(图像和几何图形)的函数进行映射时,出现错误 image.clip is not a function。当仅使用一个参数(图像)的函数时,它工作得很好,但是我需要编写两个(或可能更多)函数来完成完全相同的任务(即将图像裁剪到特定几何形状)。

我已经尝试了post中的解决方案,但它们不起作用。

关于如何解决这个问题有什么想法吗?

代码:

// Get NTL data
var ntl = ee.ImageCollection("NOAA/VIIRS/DNB/MONTHLY_V1/VCMSLCFG");

// Define start and end year
var startYear = 2015;
var endYear = 2018;

// Filter montly and select 'avg_rad' band
var ntlMonthly = ntl.filter(ee.Filter.calendarRange(startYear, endYear, 'year'))
  .filter(ee.Filter.calendarRange(1,12,'month'))
  .select(['avg_rad']);  

// Create geometries of AOIs
// -- Create a geometry of Venezuela 
var geomVenezuela = ee.Geometry.Rectangle([-73.341258, 13.363291, -59.637555, -0.372893]);
// -- Create a geometry of Caracas (Venezuela's capital)
var geomCaracas = ee.Geometry.Rectangle([-67.062383, 10.558489, -66.667078, 10.364908]);

// Functions to crop to Venezuela (nationwide) and Caracas (local) resp.
var clipImageToGeometry  = function(image, geom) {
  return image.clip(geom);
}

// Apply crop function to the ImageCollection 
var ntlMonthly_Venezuela = ntlMonthly.map(clipImageToGeometry.bind(null, geomVenezuela));
var ntlMonthly_Caracas = ntlMonthly.map(clipImageToCaracas.bind(null, geomCaracas));

// Convert ImageCollection to single Image (for exporting to Drive)
var ntlMonthly_Venezuela_image = ntlMonthly_Venezuela.toBands();
var ntlMonthly_Caracas_image = ntlMonthly_Caracas.toBands();

// Check geometry in map
Map.addLayer(geomCaracas, {color: 'red'}, 'planar polygon');
Map.addLayer(ntlMonthly_Caracas_image);

// Store scale (m. per pixel) in variable
var VenezuelaScale = 1000;
var CaracasScale = 100;

// Export the image, specifying scale and region.
Export.image.toDrive({
  image: ntlMonthly_Caracas_image,
  description: 'ntlMonthly_Caracas_'.concat(startYear, "_to_", endYear),
  folder: 'GeoScripting',
  scale: CaracasScale,
  fileFormat: 'GeoTIFF',
  maxPixels: 1e9
});

如果我正确理解你的问题:

如果您想将 ImageCollection 中的每个图像裁剪成几何形状,您可以这样做

var ntlMonthly_Venezuela = ntlMonthly.map(function(image){return ee.Image(image).clip(geomVenezuela)})

并重复其他 AOI。

如果您想将其转换为函数:

var clipImageCollection = function(ic, geom){

  return ic.map(function(image){return ee.Image(image).clip(geom)})

}

// Apply crop function to the ImageCollection 
var ntlMonthly_Venezuela = clipImageCollection(ntlMonthly, geomVenezuela);
var ntlMonthly_Caracas = clipImageCollection(ntlMonthly, geomCaracas);