GMS:Linear: Difference between revisions

From XMS Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 17: Line 17:


<math>z = f(x,y) = -\frac{A}{C}x-\frac{B}{C}y-\frac{D}{C}</math>
<math>z = f(x,y) = -\frac{A}{C}x-\frac{B}{C}y-\frac{D}{C}</math>
<!--[[Image:linear_eq6.gif]]-->
 


which is the form of the plane equation used to compute the elevation at any point on the triangle.
which is the form of the plane equation used to compute the elevation at any point on the triangle.

Revision as of 14:14, 5 May 2017

If the linear interpolation scheme is selected, the data points are first triangulated to form a network of triangles. The equation of the plane defined by the three vertices of a triangle is as follows:

Linear eq1.jpg

where A, B, C, and D are computed from the coordinates of the three vertices (x1,y1,z1), (x2,y2,z2), and (x3,y3,z3):

The plane equation can also be written as:


which is the form of the plane equation used to compute the elevation at any point on the triangle.

Since the network of triangles only covers the convex hull of the point data, extrapolation beyond the convex hull is not possible with the linear interpolation scheme. Any points outside the convex hull of the point data are assigned the default extrapolation value entered at the bottom of the Interpolation Options dialog. The figure below shows a network of triangles created from point data.

Network of triangles


See also