public interface NamedStation extends Station
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o)
See if this object is equal to the object in question.
|
visad.Real |
getAltitude()
Get the altitude as a Real.
|
java.lang.String |
getID()
Get the id of this station.
|
double |
getLatitude()
Get the latitude of this station in degrees.
|
double |
getLongitude()
Get the longitude of this station in degrees.
|
java.lang.String |
getName()
Get the name of this station.
|
visad.georef.NamedLocation |
getNamedLocation()
Get the VisAD NamedLocation that can be used to represent
this NamedStation.
|
void |
setAltitude(visad.Real alt)
Set the altitude as a Real.
|
void |
setID(java.lang.String id)
Set the id of this station.
|
void |
setLatitude(double lat)
Set the latitude of this station in degrees.
|
void |
setLongitude(double lon)
Set the longitude of this station in degrees.
|
void |
setName(java.lang.String name)
Set the name of this station.
|
void |
setNamedLocation(visad.georef.NamedLocation nl)
Set the VisAD NamedLocation that can be used to represent
this NamedStation.
|
getIdentifier
visad.georef.NamedLocation getNamedLocation()
NamedLocation
object.void setNamedLocation(visad.georef.NamedLocation nl)
nl
- NamedLocation
to use.double getLatitude()
getLatitude
in interface Station
void setLatitude(double lat)
lat
- latitude in degrees north.double getLongitude()
getLongitude
in interface Station
void setLongitude(double lon)
lon
- longitude in degrees east.visad.Real getAltitude()
Real
void setAltitude(visad.Real alt)
alt
- altitude as a Real
java.lang.String getID()
void setID(java.lang.String id)
id
- name of the stationjava.lang.String getName()
void setName(java.lang.String name)
name
- name of the stationboolean equals(java.lang.Object o)
equals
in class java.lang.Object
o
- Object
in question