Interface ILcdLonLatFormatter

All Known Implementing Classes:
TLcdLonLatFormatter, TLcdLonLatPointFormat

public interface ILcdLonLatFormatter
This interface defines methods for formatting longitude/latitude coordinates as strings.
  • Method Summary

    Modifier and Type
    Method
    Description
    format(double aLon, double aLat)
    Formats a longitude/latitude location as a string.
    formatLat(double aLat)
    Formats a latitude coordinate as a string.
    formatLon(double aLon)
    Formats a longitude coordinate as a string.
  • Method Details

    • formatLon

      String formatLon(double aLon)
      Formats a longitude coordinate as a string.
      Parameters:
      aLon - the longitude coordinate.
      Returns:
      the string representation of the longitude.
    • formatLat

      String formatLat(double aLat)
      Formats a latitude coordinate as a string.
      Parameters:
      aLat - the latitude coordinate.
      Returns:
      the string representation of the latitude.
    • format

      String format(double aLon, double aLat)
      Formats a longitude/latitude location as a string.
      Parameters:
      aLon - the longitude coordinate.
      aLat - the latitude coordinate.
      Returns:
      the string representation of the location.