Class GeoOrientation

java.lang.Object
com.here.sdk.core.GeoOrientation

public final class GeoOrientation extends Object

Geodetic orientation with bearing, tilt and roll.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final double
    Bearing in degrees, from the true North in clockwise direction.
    final double
    Tilt in degrees.
  • Constructor Summary

    Constructors
    Constructor
    Description
    GeoOrientation(double bearing, double tilt)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • bearing

      public final double bearing

      Bearing in degrees, from the true North in clockwise direction. Bearing axis is perpendicular to the ground and passes through the target coordinate.

    • tilt

      public final double tilt

      Tilt in degrees. Tilt axis is parallel to the ground and passes through the target coordinate.

  • Constructor Details

    • GeoOrientation

      public GeoOrientation(double bearing, double tilt)
      Parameters:
      bearing -

      Bearing in degrees. NaN value is converted to 0.0.

      tilt -

      Tilt in degrees. NaN value is converted to 0.0.

  • Method Details