Interface CRS


public interface CRS
A coordinate reference system (CRS) determines how a $Coordinate should be interpreted

The CRS is defined by three properties a code, a type, and a link to CRS parameters on the web. Example: { code: 4326, type: "WGS-84", href: "http://spatialreference.org/ref/epsg/4326/" }

  • Method Summary

    Modifier and Type
    Method
    Description
    int
    The numerical code associated with the CRS
    A link uniquely identifying the CRS.
    The type of the CRS is a descriptive name, indicating which CRS is used
  • Method Details

    • getCode

      int getCode()
      The numerical code associated with the CRS
      Returns:
      a numerical code associated with the CRS
    • getType

      String getType()
      The type of the CRS is a descriptive name, indicating which CRS is used
      Returns:
      the type of the CRS
    • getHref

      String getHref()
      A link uniquely identifying the CRS.
      Returns:
      A link to where the CRS is described.