Package gov.nasa.gsfc.spdf.ssc
Class CoordinateOptions
- java.lang.Object
-
- gov.nasa.gsfc.spdf.ssc.CoordinateOptions
-
- Direct Known Subclasses:
FilteredCoordinateOptions
public class CoordinateOptions extends java.lang.ObjectThis class represents coordinate system component options.- Version:
- $Revison: $
- Author:
- B. Harris
-
-
Constructor Summary
Constructors Constructor Description CoordinateOptions()Constructs a CoordinateOptions object with a default value.CoordinateOptions(CoordinateSystem coordinateSystem, CoordinateComponent component)Constructs a CoordinateOptions object with the given attribute values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CoordinateComponentgetComponent()Gets the component value.CoordinateSystemgetCoordinateSystem()Gets the coordinate system value.voidsetComponent(CoordinateComponent value)Sets the component value.voidsetCoordinateSystem(CoordinateSystem value)Sets the coordinate system value.
-
-
-
Constructor Detail
-
CoordinateOptions
public CoordinateOptions()
Constructs a CoordinateOptions object with a default value.
-
CoordinateOptions
public CoordinateOptions(CoordinateSystem coordinateSystem, CoordinateComponent component)
Constructs a CoordinateOptions object with the given attribute values.- Parameters:
coordinateSystem- identifies the coordinate system.component- identifies the componet. LOCAL_TIME is only valid with GEO, GM, GSE, and SM.
-
-
Method Detail
-
getCoordinateSystem
public CoordinateSystem getCoordinateSystem()
Gets the coordinate system value.- Returns:
- coordinate system value
- See Also:
setCoordinateSystem(gov.nasa.gsfc.spdf.ssc.CoordinateSystem)
-
setCoordinateSystem
public void setCoordinateSystem(CoordinateSystem value)
Sets the coordinate system value.- Parameters:
value- new value- See Also:
getCoordinateSystem(),CoordinateSystem
-
getComponent
public CoordinateComponent getComponent()
Gets the component value.- Returns:
- component value
- See Also:
setComponent(gov.nasa.gsfc.spdf.ssc.CoordinateComponent)
-
setComponent
public void setComponent(CoordinateComponent value)
Sets the component value. LOCAL_TIME is only valid with GEO, GM, GSE, and SM.- Parameters:
value- new value- See Also:
getComponent(),CoordinateComponent
-
-