Interface ILcdGML3Coordinates


public interface ILcdGML3Coordinates
Deprecated.
This class has been deprecated. The GML decoders and encoders in the com.luciad.format.gml3.* packages are replaced by new decoders and encoders in the packages com.luciad.format.gml2.xml, com.luciad.format.gml31.xml and com.luciad.format.gml32.xml.
Interface for the gml:CoordinatesType type.

Tables or arrays of tuples. May be used for text-encoding of values from a table.

(GML Specification, v3.1.0, paragraph 9.1.3.5)

  • Method Summary

    Modifier and Type
    Method
    Description
    getCoordinate(int aPositionIndex, int aCoordinateIndex)
    Deprecated.
    Returns the coordinate value (can be a text or a value) at the given position and coordinate index.
    int
    Deprecated.
    Returns the number of coordinates (table columns) present in this coordinates.
    Deprecated.
    Returns the value of this coordinates, as one String.
    int
    Deprecated.
    Returns the number of positions (rows or tuples) present in this coordinates.
    void
    setCoordinates(String aCoordinates)
    Deprecated.
    Sets the value of this coordinates, as one String.
  • Method Details

    • getCoordinateCount

      int getCoordinateCount()
      Deprecated.
      Returns the number of coordinates (table columns) present in this coordinates.
      Returns:
      he number of coordinates present in this coordinates.
    • getPositionCount

      int getPositionCount()
      Deprecated.
      Returns the number of positions (rows or tuples) present in this coordinates.
      Returns:
      the number of positions present in this coordinates.
    • getCoordinate

      Object getCoordinate(int aPositionIndex, int aCoordinateIndex)
      Deprecated.
      Returns the coordinate value (can be a text or a value) at the given position and coordinate index.
      Parameters:
      aPositionIndex - the position index of the coordinate to be returned.
      aCoordinateIndex - the coordinate index of the coordinate to be returned.
      Returns:
      the coordinate at the given position and coordinate index.
      Throws:
      IndexOutOfBoundsException - if aPositionIndex < 0 || aPositionIndex >= getPositionCount() || aCoordinateIndex < 0 || aCoordinateIndex >= getCoordinateCount()
    • getCoordinates

      String getCoordinates()
      Deprecated.
      Returns the value of this coordinates, as one String.
      Returns:
      the value of this coordinates, as one String.
    • setCoordinates

      void setCoordinates(String aCoordinates)
      Deprecated.
      Sets the value of this coordinates, as one String.
      Parameters:
      aCoordinates -