Package gov.nasa.gsfc.sscweb.schema
Class SurfaceGeographicCoordinates
java.lang.Object
gov.nasa.gsfc.sscweb.schema.Coordinates
gov.nasa.gsfc.sscweb.schema.SurfaceGeographicCoordinates
- Direct Known Subclasses:
AltitudeGeographicCoordinates,RadiusGeographicCoordinates
Surface (altitude implicitly surface) Geographic Coordinates.
<p>Java class for SurfaceGeographicCoordinates complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="SurfaceGeographicCoordinates">
<complexContent>
<extension base="{http://sscweb.gsfc.nasa.gov/schema}Coordinates">
<sequence>
<element name="Latitude" type="{http://sscweb.gsfc.nasa.gov/schema}Latitude"/>
<element name="Longitude" type="{http://sscweb.gsfc.nasa.gov/schema}Longitude"/>
</sequence>
</extension>
</complexContent>
</complexType>
}</pre>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoubleGets the value of the latitude property.doubleGets the value of the longitude property.voidsetLatitude(double value) Sets the value of the latitude property.voidsetLongitude(double value) Sets the value of the longitude property.
-
Field Details
-
latitude
protected double latitude -
longitude
protected double longitude
-
-
Constructor Details
-
SurfaceGeographicCoordinates
public SurfaceGeographicCoordinates()
-
-
Method Details
-
getLatitude
public double getLatitude()Gets the value of the latitude property. -
setLatitude
public void setLatitude(double value) Sets the value of the latitude property. -
getLongitude
public double getLongitude()Gets the value of the longitude property. -
setLongitude
public void setLongitude(double value) Sets the value of the longitude property.
-