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. 
 | 
getIdentifiervisad.georef.NamedLocation getNamedLocation()
NamedLocation object.void setNamedLocation(visad.georef.NamedLocation nl)
nl - NamedLocation to use.double getLatitude()
getLatitude in interface Stationvoid setLatitude(double lat)
lat - latitude in degrees north.double getLongitude()
getLongitude in interface Stationvoid setLongitude(double lon)
lon - longitude in degrees east.visad.Real getAltitude()
Realvoid setAltitude(visad.Real alt)
alt - altitude as a Realjava.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.Objecto - Object in question