Car*_*ams 1 google-earth-engine
我正在尝试将图像集合剪辑到艾伯塔省,但 filterBounds 不起作用。感谢您提供的任何帮助!我希望剪切图像集合,而不仅仅是地图上的图层,因此当我对图像集合执行操作时,它们只会针对艾伯塔省执行
var Admins = ee.FeatureCollection("FAO/GAUL/2015/level1");
var Alberta = Admins.filter(ee.Filter.eq('ADM1_NAME', 'Alberta'));
print(Alberta)
Map.addLayer(Alberta, {}, 'Alberta')
Map.centerObject(Alberta, 6)
//Load NTL data for 2018, find the median value for each pixel
var dataset = ee.ImageCollection('NOAA/VIIRS/DNB/MONTHLY_V1/VCMSLCFG')
.filter(ee.Filter.date('2018-12-01', '2018-12-31'))
.filterBounds(Alberta); //here I'm trying to clip the image collection
var nighttime = dataset.select('avg_rad');
var nighttimeVis = {min: 0.0, max: 60.0};
print(nighttime)
Map.addLayer(nighttime.median(), nighttimeVis, 'Nighttime'); //this layer still shows the whole world :-(
Run Code Online (Sandbox Code Playgroud)
小智 14
一种简单的方法是:
var dataset = ee.ImageCollection('NOAA/VIIRS/DNB/MONTHLY_V1/VCMSLCFG')
.filter(ee.Filter.date('2018-12-01', '2018-12-31'))
.map(function(image){return image.clip(Alberta)});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
13558 次 |
| 最近记录: |