在Google地球引擎中,存在每个国家/地区的所有行政区域的数据集1。我只需要显示波兰的多边形。该表有一个名为cc的列,内容为波兰的国家/地区代码。 有没有可能我用
进行过滤.filter(ee.Filter.eq('cc', 'pl')); -> but doesent work!
//Load the Feature
var dataset = ee.FeatureCollection('USDOS/LSIB/2013').filter(ee.Filter.eq('cc', 'pl'));
//Visualisation Parameters
var visParams = {
palette: ['f5ff64', 'b5ffb4', 'beeaff', 'ffc0e8', '8e8dff', 'adadad'],
min: 0.0,
max: 894.0,
opacity: 0.8,};
//Display Feature
var image = dataset.reduceToImage(['iso_num'], ee.Reducer.first());
Map.addLayer(image, visParams, 'USDOS/LSIB/2013');