NASA World Wind

Uses of Class
gov.nasa.worldwind.geom.LatLon

Packages that use LatLon
gov.nasa.worldwind.geom   
gov.nasa.worldwind.globes   
gov.nasa.worldwind.layers   
gov.nasa.worldwind.layers.placename   
gov.nasa.worldwind.render   
gov.nasa.worldwind.util   
 

Uses of LatLon in gov.nasa.worldwind.geom
 

Fields in gov.nasa.worldwind.geom declared as LatLon
static LatLon LatLon.ZERO
           
 

Methods in gov.nasa.worldwind.geom that return LatLon
 LatLon LatLon.add(LatLon that)
           
 LatLon LatLon.add(Position that)
           
static LatLon LatLon.fromDegrees(double latitude, double longitude)
          Factory method for obtaining a new LatLon from two angles expressed in degrees.
static LatLon LatLon.fromRadians(double latitude, double longitude)
          Factor method for obtaining a new LatLon from two angles expressed in radians.
 LatLon Sector.getCentroid()
          Returns the latitude and longitude of the sector's angular center: (minimum latitude + maximum latitude) / 2, (minimum longitude + maximum longitude) / 2.
 LatLon Quaternion.getLatLon()
           
 LatLon Position.getLatLon()
           
static LatLon LatLon.greatCircleEndPosition(LatLon p, Angle greatCircleAzimuth, Angle pathLength)
          Computes the location on a great circle arc with the given starting location, azimuth, and arc distance.
static LatLon LatLon.greatCircleEndPosition(LatLon p, double greatCircleAzimuthRadians, double pathLengthRadians)
          Computes the location on a great circle arc with the given starting location, azimuth, and arc distance.
static LatLon LatLon.interpolate(double amount, LatLon value1, LatLon value2)
           
static LatLon LatLon.rhumbEndPosition(LatLon p, Angle rhumbAzimuth, Angle pathLength)
          Computes the location on a rhumb line with the given starting location, rhumb azimuth, and arc distance along the line.
static LatLon LatLon.rhumbEndPosition(LatLon p, double rhumbAzimuthRadians, double pathLengthRadians)
          Computes the location on a rhumb line with the given starting location, rhumb azimuth, and arc distance along the line.
 LatLon LatLon.subtract(LatLon that)
           
 LatLon LatLon.subtract(Position that)
           
 

Methods in gov.nasa.worldwind.geom that return types with arguments of type LatLon
 Iterator<LatLon> Sector.iterator()
          Creates an iterator over the four corners of the sector, starting with the southwest position and continuing counter-clockwise.
 

Methods in gov.nasa.worldwind.geom with parameters of type LatLon
 LatLon LatLon.add(LatLon that)
           
 boolean Sector.contains(LatLon latLon)
          Determines whether a latitude/longitude position is within the sector.
static double LatLon.ellipsoidalDistance(LatLon p1, LatLon p2, double equatorialRadius, double polarRadius)
          Computes the distance between two points on an ellipsoid iteratively.
 Angle LatLon.ellipsoidalForwardAzimuth(LatLon p1, LatLon p2, double equatorialRadius, double polarRadius)
          Compute the forward azimuth between two positions
static Angle LatLon.greatCircleAzimuth(LatLon p1, LatLon p2)
          Computes the azimuth angle (clockwise from North) that points from the first location to the second location.
static Angle LatLon.greatCircleDistance(LatLon p1, LatLon p2)
          Computes the great circle angular distance between two locations.
static LatLon LatLon.greatCircleEndPosition(LatLon p, Angle greatCircleAzimuth, Angle pathLength)
          Computes the location on a great circle arc with the given starting location, azimuth, and arc distance.
static LatLon LatLon.greatCircleEndPosition(LatLon p, double greatCircleAzimuthRadians, double pathLengthRadians)
          Computes the location on a great circle arc with the given starting location, azimuth, and arc distance.
static LatLon LatLon.interpolate(double amount, LatLon value1, LatLon value2)
           
static boolean LatLon.positionsCrossLongitudeBoundary(LatLon p1, LatLon p2)
           
static Angle LatLon.rhumbAzimuth(LatLon p1, LatLon p2)
          Computes the azimuth angle (clockwise from North) of a rhumb line (a line of constant heading) between two locations.
static Angle LatLon.rhumbDistance(LatLon p1, LatLon p2)
          Computes the length of the rhumb line between two locations.
static LatLon LatLon.rhumbEndPosition(LatLon p, Angle rhumbAzimuth, Angle pathLength)
          Computes the location on a rhumb line with the given starting location, rhumb azimuth, and arc distance along the line.
static LatLon LatLon.rhumbEndPosition(LatLon p, double rhumbAzimuthRadians, double pathLengthRadians)
          Computes the location on a rhumb line with the given starting location, rhumb azimuth, and arc distance along the line.
 LatLon LatLon.subtract(LatLon that)
           
 

Method parameters in gov.nasa.worldwind.geom with type arguments of type LatLon
static Sector Sector.boundingSectorfromLatLons(Iterable<LatLon> positions)
           
static boolean LatLon.positionsCrossDateLine(Iterable<LatLon> positions)
           
 

Constructors in gov.nasa.worldwind.geom with parameters of type LatLon
Position(LatLon latLon, double elevation)
           
 

Uses of LatLon in gov.nasa.worldwind.globes
 

Methods in gov.nasa.worldwind.globes with parameters of type LatLon
 double Globe.getRadiusAt(LatLon latLon)
           
 double FlatGlobe.getRadiusAt(LatLon latLon)
           
 double EllipsoidalGlobe.getRadiusAt(LatLon latLon)
           
 

Uses of LatLon in gov.nasa.worldwind.layers
 

Methods in gov.nasa.worldwind.layers that return LatLon
 LatLon TerrainProfileLayer.getEndLatLon()
          Get the profile end position lat/lon when TerrainProfileLayer.FOLLOW_NONE
 LatLon TerrainProfileLayer.getStartLatLon()
          Get the profile start position lat/lon when TerrainProfileLayer.FOLLOW_NONE
 

Methods in gov.nasa.worldwind.layers with parameters of type LatLon
 void TerrainProfileLayer.setEndLatLon(LatLon latLon)
          Set the profile end position lat/lon when TerrainProfileLayer.FOLLOW_NONE
 void TerrainProfileLayer.setStartLatLon(LatLon latLon)
          Set the profile start position lat/lon when TerrainProfileLayer.FOLLOW_NONE
 

Uses of LatLon in gov.nasa.worldwind.layers.placename
 

Methods in gov.nasa.worldwind.layers.placename that return LatLon
 LatLon PlaceNameService.getTileDelta()
           
 

Constructors in gov.nasa.worldwind.layers.placename with parameters of type LatLon
PlaceNameService(String service, String dataset, String fileCachePath, Sector sector, LatLon tileDelta, Font font)
           
 

Uses of LatLon in gov.nasa.worldwind.render
 

Fields in gov.nasa.worldwind.render with type parameters of type LatLon
protected  ArrayList<LatLon> SurfaceShape.positions
           
 

Methods in gov.nasa.worldwind.render that return LatLon
 LatLon SurfaceQuad.getCenter()
           
 LatLon SurfaceEllipse.getCenter()
           
 LatLon[] Quadrilateral.getCorners()
           
 

Methods in gov.nasa.worldwind.render that return types with arguments of type LatLon
 Iterable<LatLon> SurfaceShape.getPositions()
           
 

Methods in gov.nasa.worldwind.render with parameters of type LatLon
static SurfaceShape SurfaceShape.createEllipse(Globe globe, LatLon center, double majorAxisLength, double minorAxisLength, Angle orientation, int intervals, Color interiorColor, Color borderColor, Dimension textureSize)
           
 void SurfaceQuad.setCenter(LatLon center)
           
 void SurfaceEllipse.setCenter(LatLon center)
           
 void Quadrilateral.setCorners(LatLon southWest, LatLon northEast)
           
 

Method parameters in gov.nasa.worldwind.render with type arguments of type LatLon
 void SurfaceShape.setPositions(Iterable<LatLon> positions)
           
 void Polyline.setPositions(Iterable<LatLon> inPositions, double elevation)
          Sets the paths positions as latitude and longitude values at a constant altitude.
 

Constructors in gov.nasa.worldwind.render with parameters of type LatLon
Quadrilateral(LatLon southwestCorner, LatLon northeastCorner, double elevation)
           
SurfaceCircle(Globe globe, LatLon center, double radius, int intervals)
           
SurfaceCircle(Globe globe, LatLon center, double radius, int intervals, Color interiorColor, Color borderColor)
           
SurfaceCircle(Globe globe, LatLon center, double radius, int intervals, Color interiorColor, Color borderColor, Dimension textureSize)
           
SurfaceEllipse(Globe globe, LatLon center, double majorAxisLength, double minorAxisLength, Angle orientation, int intervals)
           
SurfaceEllipse(Globe globe, LatLon center, double majorAxisLength, double minorAxisLength, Angle orientation, int intervals, Color interiorColor, Color borderColor)
           
SurfaceEllipse(Globe globe, LatLon center, double majorAxisLength, double minorAxisLength, Angle orientation, int intervals, Color interiorColor, Color borderColor, Dimension textureSize)
           
SurfaceQuad(Globe globe, LatLon center, double width, double height, Angle orientation)
           
SurfaceQuad(Globe globe, LatLon center, double width, double height, Angle orientation, Color interiorColor, Color borderColor)
           
SurfaceQuad(Globe globe, LatLon center, double width, double height, Angle orientation, Color interiorColor, Color borderColor, Dimension textureSize)
           
SurfaceSquare(Globe globe, LatLon center, double width)
           
SurfaceSquare(Globe globe, LatLon center, double width, Color interiorColor, Color borderColor)
           
SurfaceSquare(Globe globe, LatLon center, double width, Color interiorColor, Color borderColor, Dimension textureSize)
           
 

Constructor parameters in gov.nasa.worldwind.render with type arguments of type LatLon
Polyline(Iterable<LatLon> positions, double elevation)
           
SurfacePolygon(Iterable<LatLon> positions)
          A Renderable polygon shape defined by a list of LatLon
SurfacePolygon(Iterable<LatLon> positions, Color color, Color borderColor)
          A Renderable polygon shape defined by a list of LatLon
SurfacePolygon(Iterable<LatLon> positions, Color color, Color borderColor, Dimension textureSize)
           
SurfacePolyline(Iterable<LatLon> positions)
          Deprecated.  
SurfacePolyline(Iterable<LatLon> positions, Color color, Color borderColor)
          Deprecated.  
SurfaceShape(Iterable<LatLon> positions, Color color, Color borderColor, Dimension textureSize)
           
 

Uses of LatLon in gov.nasa.worldwind.util
 

Methods in gov.nasa.worldwind.util that return LatLon
 LatLon Gazetteer.Location.getLatlon()
           
 LatLon LevelSet.getLevelZeroTileDelta()
           
 LatLon Level.getTileDelta()
           
 

Constructors in gov.nasa.worldwind.util with parameters of type LatLon
Gazetteer.Location(String precision, LatLon latlon, String address, String city, String state, String zip, String country)
           
 


NASA World Wind