Packages

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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SurfacePoint
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SurfacePoint()

Value Members

  1. def aspect(): Double
  2. def aspectAzimuth(): Double
  3. def cosAspect: Double

    Cosine of the aspect, computed using partial derivatives

  4. def cosSlope: Double

    Cosine of the slope, computed using partial derivatives

  5. var dz/dx: Double

    Partial derivative of z with respect to x

  6. var dz/dy: Double

    Partial derivative of z with respect to y

  7. var isNaN: Boolean

    True if the partial derivatives at this point don't exist

  8. def sinAspect: Double

    Sine of the aspect, computed using partial derivatives

  9. def sinSlope: Double

    Sine of the slope, computed using partial derivatives

  10. def slope(): Double
  11. def slope(zFactor: Double): Double