当前位置:网站首页>Google Earth engine (GEE) -- Comparative Case Analysis of calculating slope with different methods

Google Earth engine (GEE) -- Comparative Case Analysis of calculating slope with different methods

2022-06-23 13:56:00 The star light blog in 2021 cloud computing top3

This paper is mainly through the algorithm calculation slope And calculate with yourself according to the kernel function slope See the difference between the two

There are several properties to understand :

ee.Kernel.fixed(widthheight, weights, xynormalize)

Create the kernel : Set length and width , The weight ,x,y Offset position on , That is, the general default in the lower left corner of the regression , Normalize kernel values , Make it sum up for 1

Creates a Kernel.

Arguments:

width (Integer, default: -1):

The width of the kernel in pixels.

height (Integer, default: -1):

The height of the kernel in pixels.

weights (List):

A 2-D list of [height] x [width] values to use as the weights of the kernel.

x (Integer, default: -1):

The location of the focus, as an offset from the left.

y (Integer, default: -1):

The location of the focus, as an offset from the top.

normalize (Boolean, default: false):

Normalize the kernel values to sum

原网站

版权声明
本文为[The star light blog in 2021 cloud computing top3]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/174/202206231017142453.html