将地图居中
Map.setCenter(long, lat, zoomLevel);
我的博客中有一篇关注与这个的具体介绍,请自己去博客中寻找! ...向地图添加图层
Map.addLayer(variableName);
通用地球引擎数据类型
字符串
var str = ee.String('This is a string. Or is it?...var lis = ee.List([5, 'five', 6, 'six']);
字典
var dict = ee.Dictionary({five: 5, six: 6});
下面是一些关于GEE中的基本集合操作的变量声明...var rect = ee.Geometry.Rectangle(0, 0, 60, 30);
多边形
var poly = ee.Geometry.Polygon([[[0, 0], [6, 3],...30, 2], [0, 0]]),
ee.Geometry.Polygon([[0, 0], [-6, -3], [-5, -5], [30, -2], [0, 0]])]);
特征和特征集合
特征是与特定属性相关联的几何图形