Interface ILatLon

    • Method Detail

      • lon

        double lon()
        Returns the longitude, i.e., the east-west position in degrees.
        Returns:
        the longitude or NaN if isLatLonKnown() returns false
      • lat

        double lat()
        Returns the latitude, i.e., the north-south position in degrees.
        Returns:
        the latitude or NaN if isLatLonKnown() returns false
      • isLatLonKnown

        default boolean isLatLonKnown()
        Determines if this object has valid coordinates.
        Returns:
        true if this object has valid coordinates
      • getEastNorth

        default EastNorth getEastNorth​(Projecting projecting)
        Replies the projected east/north coordinates.

        The result of the last conversion may be cached. Null is returned in case this object is invalid.

        Parameters:
        projecting - The projection to use.
        Returns:
        The projected east/north coordinates
        Since:
        10827