net.grelf.astro
Class MeasuredSkyPoint

java.lang.Object
  extended by net.grelf.astro.SkyPoint
      extended by net.grelf.astro.MeasuredSkyPoint
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable

public class MeasuredSkyPoint
extends SkyPoint

A SkyPoint that additionally has known standard deviations of its RA and Dec values.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class net.grelf.astro.SkyPoint
x, y, z
 
Constructor Summary
MeasuredSkyPoint(RA ra, double sigmaRaDegrees, Dec dec, double sigmaDecDegrees, Epoch epoch)
           
 
Method Summary
 MeasuredSkyPoint clone()
           
 boolean equals(java.lang.Object other)
           
 double getSigmaDecDegs()
          Standard deviation of Dec, in degrees.
 double getSigmaRADegs()
          Standard deviation of RA, in degrees.
 int hashCode()
          Enable objects of this class to be used as hash keys.
 java.lang.String toString()
           
 
Methods inherited from class net.grelf.astro.SkyPoint
calculateSeparation, changeEpoch, changeEpochLowAccuracy, getDec, getEpoch, getRA, toXML
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MeasuredSkyPoint

public MeasuredSkyPoint(RA ra,
                        double sigmaRaDegrees,
                        Dec dec,
                        double sigmaDecDegrees,
                        Epoch epoch)
Method Detail

getSigmaRADegs

public double getSigmaRADegs()
Standard deviation of RA, in degrees.


getSigmaDecDegs

public double getSigmaDecDegs()
Standard deviation of Dec, in degrees.


toString

public java.lang.String toString()
Overrides:
toString in class SkyPoint

equals

public boolean equals(java.lang.Object other)
Overrides:
equals in class SkyPoint

hashCode

public int hashCode()
Description copied from class: SkyPoint
Enable objects of this class to be used as hash keys.

Overrides:
hashCode in class SkyPoint

clone

public MeasuredSkyPoint clone()
Overrides:
clone in class SkyPoint