Google Earth Engine(GEE)——利用DEM数据划分100m等高线绘制青藏高原等高线

我们利用NASA的DEM数据绘制等高线在GEE中MAP上进行展示:

1.加载DEM影像

2.添加一个点作为展示影像的中心点

3.建立一个时间序列作为DEM的高度,和设置切片(这个就相当于切片DEM,每100米展示一层等高线)

4.通过遍历实现一圈圈等高线的函数

5.最后将影像镶嵌在一起即可

此次需要用到的函数:

ee.Kernel.gaussian(radius, sigmaunitsnormalizemagnitude)

Generates a Gaussian kernel from a sampled continuous Gaussian.

从采样的连续高斯生成一个高斯核

Arguments:

radius (Float):

The radius of the kernel to generate.

sigma (Float, default: 1):

Standard deviation of the Gaussian function (same units as radius).

units (String, default: "pixels"):

The system of measurement for the kernel ('pixels' or 'meters'). If the kernel is specified in meters, it will resize when the zoom-level is changed.

normalize (Boolean, default: true):

Normalize the k

你可能感兴趣的:(GEE案例分析,GEE教程训练,Google,Earth,Engine,gee,planetary,微软)