Class GeoOrientation

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

  • public final class GeoOrientation
    extends java.lang.Object

    Geodetic orientation with bearing, tilt and roll.

    • Field Summary

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

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

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)  
      int hashCode()  
      • Methods inherited from class java.lang.Object

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

      • 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 Detail

      • 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 Detail

      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object