class SurfacePoint extends AnyRef
A representation of the approximated partial derivatives of a raster cell, and the slope and aspect that can be calculated from those values. Trigonometric values of aspect and slope, computed using the partial derivatives instead of library trigonometric functions, are also exposed for performance.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SurfacePoint
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new SurfacePoint()
Value Members
- def aspect(): Double
- def aspectAzimuth(): Double
-
def
cosAspect: Double
Cosine of the aspect, computed using partial derivatives
-
def
cosSlope: Double
Cosine of the slope, computed using partial derivatives
-
var
dz/dx: Double
Partial derivative of z with respect to x
-
var
dz/dy: Double
Partial derivative of z with respect to y
-
var
isNaN: Boolean
True if the partial derivatives at this point don't exist
-
def
sinAspect: Double
Sine of the aspect, computed using partial derivatives
-
def
sinSlope: Double
Sine of the slope, computed using partial derivatives
- def slope(): Double
- def slope(zFactor: Double): Double