Package skyview.geometry.csys
Class Besselian
- java.lang.Object
-
- skyview.geometry.CoordinateSystem
-
- skyview.geometry.csys.Besselian
-
- All Implemented Interfaces:
java.io.Serializable,Component
public class Besselian extends CoordinateSystem implements Component
This class implements Besselian coordinate systems. These systems are not simple rotations from the reference coordinate frame. These coordinate systems are implemented such that the rotation matrix is appropriate for J2000 coordinates but the rectify and derectify function perform transformation from/to Besselian coordinates. The transformations do not use any proper motion or distance information supplied by the user. The methods in this class are based on P. Wallaces SLA library substantially modified for use within Java and SkyView.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class skyview.geometry.CoordinateSystem
B1950, Gal, ICRS, J2000
-
-
Constructor Summary
Constructors Constructor Description Besselian(double epoch)Get a CoordinateSystem of a given epoch.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Get the description of this component.java.lang.StringgetName()Get the name of this component.RotatergetRotater()Get the rotation associated with the projection.SphereDistortergetSphereDistorter()Get the distortion associated with the projection.booleanisRotation()This coordinate system is not just a rotation away from the reference frame.-
Methods inherited from class skyview.geometry.CoordinateSystem
factory, factory
-
-
-
-
Method Detail
-
isRotation
public boolean isRotation()
This coordinate system is not just a rotation away from the reference frame.
-
getName
public java.lang.String getName()
Description copied from interface:ComponentGet the name of this component.
-
getDescription
public java.lang.String getDescription()
Description copied from interface:ComponentGet the description of this component.- Specified by:
getDescriptionin interfaceComponent
-
getRotater
public Rotater getRotater()
Description copied from class:CoordinateSystemGet the rotation associated with the projection.- Specified by:
getRotaterin classCoordinateSystem
-
getSphereDistorter
public SphereDistorter getSphereDistorter()
Description copied from class:CoordinateSystemGet the distortion associated with the projection. By default there is no distortion, but subclasses, notably BesselianProjection, can override this.- Overrides:
getSphereDistorterin classCoordinateSystem
-
-