Interface ILcdGML3Vector

All Superinterfaces:
ILcdGML3SrsInformationGroup, ILcdGML3SrsReferenceGroup

public interface ILcdGML3Vector extends ILcdGML3SrsReferenceGroup
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:VectorType type.

A Vector is an ordered set of numbers called coordinates that represent a position in a coordinate reference system (CRS). For some application the components of the position may be adjusted to yield a unit vector.

(GML Specification, v3.1.0, paragraph 9.1.4.1)

  • Method Details

    • getCoordinate

      double getCoordinate(int aIndex)
      Deprecated.
      Returns the coordinate at the given index.
      Parameters:
      aIndex - the index of the coordinate to be returned.
      Returns:
      the coordinate at the given index.
      Throws:
      IndexOutOfBoundsException - if aIndex < 0 || aIndex >= getCoordinateCount()
    • getCoordinateCount

      int getCoordinateCount()
      Deprecated.
      Returns the number of coordinates contained in this direct position.
      Returns:
      the number of coordinates contained in this direct position.
    • setCoordinates

      void setCoordinates(double[] aDoubles)
      Deprecated.
      Sets the array of coordinates that define this position.
      Parameters:
      aDoubles - the array of coordinates that define this position.