Uses of Interface
ucar.unidata.geoloc.LatLonPoint

Packages that use LatLonPoint
ucar.nc2.dt Scientific data types package. 
ucar.nc2.dt.grid Scientific data type "Grid", uses cartesian coordinate system. 
ucar.nc2.dt.point Scientific data type "Point", collections of point observation data. 
ucar.nc2.ft Scientific feature types package 
ucar.nc2.ft.grid   
ucar.nc2.ft.point package ucar.nc2.ft.point : Implementation of Point Feature Types 
ucar.nc2.iosp.gempak   
ucar.nc2.iosp.mcidas   
ucar.unidata.geoloc Support library for georeferencing coordinate systems and transformations. 
ucar.unidata.geoloc.projection Implementations of coordinate projection transformations. 
ucar.unidata.geoloc.projection.proj4   
ucar.unidata.geoloc.projection.sat   
 

Uses of LatLonPoint in ucar.nc2.dt
 

Methods in ucar.nc2.dt that return LatLonPoint
 LatLonPoint GridCoordSystem.getLatLon(int xindex, int yindex)
          Get the Lat/Lon coordinates of the midpoint of a grid cell, using the x,y indices.
 

Uses of LatLonPoint in ucar.nc2.dt.grid
 

Methods in ucar.nc2.dt.grid that return LatLonPoint
 LatLonPoint GridCoordSys.getLatLon(double xcoord, double ycoord)
           
 LatLonPoint GridCoordSys.getLatLon(int xindex, int yindex)
          Get the Lat/Lon coordinates of the midpoint of a grid cell, using the x,y indices
 

Uses of LatLonPoint in ucar.nc2.dt.point
 

Methods in ucar.nc2.dt.point that return LatLonPoint
 LatLonPoint RecordDatasetHelper.RecordPointObs.getLatLon()
           
 LatLonPoint DapperDataset.SeqPointObs.getLatLon()
           
 LatLonPoint SequenceHelper.SeqPointObs.getLatLon()
           
 

Uses of LatLonPoint in ucar.nc2.ft
 

Methods in ucar.nc2.ft that return LatLonPoint
 LatLonPoint ProfileFeature.getLatLon()
          Nominal location of this profile
 

Uses of LatLonPoint in ucar.nc2.ft.grid
 

Methods in ucar.nc2.ft.grid that return LatLonPoint
 LatLonPoint GridCoordSys.getLatLon(int xindex, int yindex)
          Get the Lat/Lon coordinates of the midpoint of a grid cell, using the x,y indices.
 

Uses of LatLonPoint in ucar.nc2.ft.point
 

Methods in ucar.nc2.ft.point that return LatLonPoint
 LatLonPoint ProfileFeatureImpl.getLatLon()
           
 LatLonPoint StationFeatureImpl.getLatLon()
           
 LatLonPoint StationProfileFeatureImpl.getLatLon()
           
 LatLonPoint RecordDatasetHelper.getLocation(StructureData sdata)
           
 

Uses of LatLonPoint in ucar.nc2.iosp.gempak
 

Methods in ucar.nc2.iosp.gempak that return LatLonPoint
 LatLonPoint GempakStation.getLatLon()
          Get the lat/lon location
 

Uses of LatLonPoint in ucar.nc2.iosp.mcidas
 

Methods in ucar.nc2.iosp.mcidas that return LatLonPoint
 LatLonPoint McIDASAreaProjection.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 

Methods in ucar.nc2.iosp.mcidas with parameters of type LatLonPoint
 ProjectionPoint McIDASAreaProjection.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 

Uses of LatLonPoint in ucar.unidata.geoloc
 

Classes in ucar.unidata.geoloc that implement LatLonPoint
 class LatLonPointImpl
          Standard implementation of LatLonPoint.
 

Methods in ucar.unidata.geoloc that return LatLonPoint
 LatLonPoint EarthLocationImpl.getLatLon()
          Get the lat/lon location
 LatLonPoint EarthLocation.getLatLon()
          Get the lat/lon location
 LatLonPoint ProjectionImpl.projToLatLon(ProjectionPoint ppt)
          Convert projection coordinates to a LatLonPoint Note: a new object is now created on each call for the return value, as of 4.0.46
 LatLonPoint Projection.projToLatLon(ProjectionPoint ppt, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint.
abstract  LatLonPoint ProjectionImpl.projToLatLon(ProjectionPoint ppt, LatLonPointImpl destPoint)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 

Methods in ucar.unidata.geoloc with parameters of type LatLonPoint
static Bearing Bearing.calculateBearing(Earth e, LatLonPoint pt1, LatLonPoint pt2, Bearing result)
          Calculate the bearing between the 2 points.
static Bearing Bearing.calculateBearing(LatLonPoint pt1, LatLonPoint pt2, Bearing result)
          Calculate the bearing between the 2 points.
 boolean LatLonRect.contains(LatLonPoint p)
          Determine if a specified LatLonPoint is contained in this bounding box.
 boolean LatLonPoint.equals(LatLonPoint pt)
          Returns true if this represents the same point as pt.
 boolean LatLonPointImpl.equals(LatLonPoint pt)
          Check for equality with another point.
 void LatLonRect.extend(LatLonPoint p)
          Extend the bounding box to contain this point
static LatLonPointImpl Bearing.findPoint(Earth e, LatLonPoint pt1, double az, double dist, LatLonPointImpl result)
          Calculate a position given an azimuth and distance from another point.
static LatLonPointImpl Bearing.findPoint(LatLonPoint pt1, double az, double dist, LatLonPointImpl result)
          Calculate a position given an azimuth and distance from another point.
 ProjectionPoint ProjectionImpl.latLonToProj(LatLonPoint latLon)
          Convert a LatLonPoint to projection coordinates Note: a new object is now created on each call for the return value, as of 4.0.46
 ProjectionPoint Projection.latLonToProj(LatLonPoint latlon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates.
abstract  ProjectionPoint ProjectionImpl.latLonToProj(LatLonPoint latlon, ProjectionPointImpl destPoint)
          Convert a LatLonPoint to projection coordinates
 void LatLonPointImpl.set(LatLonPoint pt)
          set lat, lon using values of pt
 

Constructors in ucar.unidata.geoloc with parameters of type LatLonPoint
LatLonPointImpl(LatLonPoint pt)
          Copy Constructor.
LatLonRect(LatLonPoint p1, double deltaLat, double deltaLon)
          Construct a lat/lon bounding box from a point, and a delta lat, lon.
LatLonRect(LatLonPoint left, LatLonPoint right)
          Construct a lat/lon bounding box from two points.
 

Uses of LatLonPoint in ucar.unidata.geoloc.projection
 

Methods in ucar.unidata.geoloc.projection that return LatLonPoint
 LatLonPoint RotatedLatLon.projToLatLon(ProjectionPoint ppt, LatLonPointImpl destPoint)
          Transform a rotated longitude (X) and rotated latitude (Y) into a "real" longitude-latitude pair.
 LatLonPoint UtmProjection.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint Mercator.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint Orthographic.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint ProjectionAdapter.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint LatLonProjection.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint FlatEarth.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint AlbersEqualArea.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint VerticalPerspectiveView.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint TransverseMercator.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint LambertAzimuthalEqualArea.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint RotatedPole.projToLatLon(ProjectionPoint ppt, LatLonPointImpl destPoint)
          Transform a rotated longitude (X) and rotated latitude (Y) into a "real" longitude-latitude pair.
 LatLonPoint LambertConformal.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint Stereographic.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 

Methods in ucar.unidata.geoloc.projection with parameters of type LatLonPoint
 ProjectionPoint RotatedLatLon.latLonToProj(LatLonPoint latlon, ProjectionPointImpl destPoint)
          Transform a "real" longitude and latitude into the rotated longitude (X) and rotated latitude (Y).
 ProjectionPoint UtmProjection.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint Mercator.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint Orthographic.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint ProjectionAdapter.latLonToProj(LatLonPoint latlon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint LatLonProjection.latLonToProj(LatLonPoint latlon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint FlatEarth.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint AlbersEqualArea.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint VerticalPerspectiveView.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint TransverseMercator.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint LambertAzimuthalEqualArea.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint RotatedPole.latLonToProj(LatLonPoint latlon, ProjectionPointImpl destPoint)
          Transform a "real" longitude and latitude into the rotated longitude (X) and rotated latitude (Y).
 ProjectionPoint LambertConformal.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 ProjectionPoint Stereographic.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
          Convert a LatLonPoint to projection coordinates
 

Uses of LatLonPoint in ucar.unidata.geoloc.projection.proj4
 

Methods in ucar.unidata.geoloc.projection.proj4 that return LatLonPoint
 LatLonPoint TransverseMercatorProjection.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
           
 LatLonPoint StereographicAzimuthalProjection.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
           
 LatLonPoint AlbersEqualAreaEllipse.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
          Convert projection coordinates to a LatLonPoint Note: a new object is not created on each call for the return value.
 LatLonPoint LambertConformalConicEllipse.projToLatLon(ProjectionPoint world, LatLonPointImpl result)
           
 

Methods in ucar.unidata.geoloc.projection.proj4 with parameters of type LatLonPoint
 ProjectionPoint TransverseMercatorProjection.latLonToProj(LatLonPoint latLon, ProjectionPointImpl destPoint)
           
 ProjectionPoint StereographicAzimuthalProjection.latLonToProj(LatLonPoint latLon, ProjectionPointImpl destPoint)
           
 ProjectionPoint AlbersEqualAreaEllipse.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
           
 ProjectionPoint LambertConformalConicEllipse.latLonToProj(LatLonPoint latLon, ProjectionPointImpl result)
           
 

Uses of LatLonPoint in ucar.unidata.geoloc.projection.sat
 

Methods in ucar.unidata.geoloc.projection.sat that return LatLonPoint
 LatLonPoint MSGnavigation.projToLatLon(ProjectionPoint ppt, LatLonPointImpl destPoint)
           
 

Methods in ucar.unidata.geoloc.projection.sat with parameters of type LatLonPoint
 ProjectionPoint MSGnavigation.latLonToProj(LatLonPoint latlon, ProjectionPointImpl destPoint)
           
 



Copyright © 1999-2011 UCAR/Unidata. All Rights Reserved.