org.iu.gps
Class XY

java.lang.Object
  |
  +--org.iu.gps.XY

public class XY
extends java.lang.Object

The XY class represents a tupel of coordinates (GaussKrueger or Longitude=X/Latitude=Y).


Field Summary
 double x
          GaussKrueger x or latitude.
 double y
          GaussKrueger y or longitude.
 
Constructor Summary
XY()
          Create uninitialized coordinate.
XY(double _x, double _y)
          Create a coordinate.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

x

public double x
GaussKrueger x or latitude.

y

public double y
GaussKrueger y or longitude.
Constructor Detail

XY

public XY()
Create uninitialized coordinate.

XY

public XY(double _x,
          double _y)
Create a coordinate.
Parameters:
_x - x or latitude.
_y - y or longitude.