Uses of Class
com.bbn.openmap.proj.Ellipsoid

Packages that use Ellipsoid
com.bbn.openmap.plugin Provides support for writing OpenMap PlugIns. 
com.bbn.openmap.proj Provides projection classes. 
com.bbn.openmap.proj.coords   
 

Uses of Ellipsoid in com.bbn.openmap.plugin
 

Methods in com.bbn.openmap.plugin with parameters of type Ellipsoid
protected  OMGeometryList UTMGridPlugIn.createMGRSRectangles(LatLonPoint llp, int accuracy, int numRects, Ellipsoid ellipsoid)
          Create a list of rectangles representing equal areas of MGRS coordinates around a lat/lon location.
protected  OMGeometry UTMGridPlugIn.createMGRSRectangle(MGRSPoint mgrsBasePoint, float voffset, float hoffset, float interval, Ellipsoid ellipsoid)
          Create a polygon representing an equi-distant area, at a meters offset with a meters interval.
 

Uses of Ellipsoid in com.bbn.openmap.proj
 

Fields in com.bbn.openmap.proj declared as Ellipsoid
static Ellipsoid Ellipsoid.AIRY
          "Airy"
static Ellipsoid Ellipsoid.AUSTRALIAN_NATIONAL
          "Australian National"
static Ellipsoid Ellipsoid.BESSEL_1841
          "Bessel 1841"
static Ellipsoid Ellipsoid.BESSEL_1841_NAMIBIA
          "Bessel 1841 (Nambia) "
static Ellipsoid Ellipsoid.CLARKE_1866
          "Clarke 1866"
static Ellipsoid Ellipsoid.CLARKE_1880
          "Clarke 1880"
static Ellipsoid Ellipsoid.EVEREST
          "Everest"
static Ellipsoid Ellipsoid.FISHER_1960_MERCURY
          "Fischer 1960 (Mercury) "
static Ellipsoid Ellipsoid.FISHER_1968
          "Fischer 1968"
static Ellipsoid Ellipsoid.GRS_1967
          "GRS 1967"
static Ellipsoid Ellipsoid.GRS_1980
          "GRS 1980"
static Ellipsoid Ellipsoid.HELMERT_1906
          "Helmert 1906"
static Ellipsoid Ellipsoid.HOUGH
          "Hough"
static Ellipsoid Ellipsoid.INTERNATIONAL
          "International"
static Ellipsoid Ellipsoid.KRASSOVSKY
          "Krassovsky"
static Ellipsoid Ellipsoid.MODIFIED_AIRY
          "Modified Airy"
static Ellipsoid Ellipsoid.MODIFIED_EVEREST
          "Modified Everest"
static Ellipsoid Ellipsoid.MODIFIED_FISCHER_1960
          "Modified Fischer 1960"
static Ellipsoid Ellipsoid.SOUTH_AMERICAN_1969
          "South American 1969"
static Ellipsoid Ellipsoid.WGS_60
          "WGS 60"
static Ellipsoid Ellipsoid.WGS_66
          "WGS 66"
static Ellipsoid Ellipsoid.WGS_72
          "WGS-72"
static Ellipsoid Ellipsoid.WGS_84
          "WGS-84"
 

Methods in com.bbn.openmap.proj that return Ellipsoid
static Ellipsoid[] Ellipsoid.getAllEllipsoids()
          Returns an array of all available ellipsoids in alphabetical order by name.
static Ellipsoid Ellipsoid.getByName(java.lang.String name)
          Given the name of an Ellipsoid, find the object for it out of the possible selections.
 

Constructors in com.bbn.openmap.proj with parameters of type Ellipsoid
UTMProjection(LatLonPoint center, float s, int w, int h, int type, int zone_number, boolean isnorthern, Ellipsoid ellps)
           
 

Uses of Ellipsoid in com.bbn.openmap.proj.coords
 

Fields in com.bbn.openmap.proj.coords declared as Ellipsoid
protected  Ellipsoid UTMGCT.ellipsoid
           
 

Methods in com.bbn.openmap.proj.coords that return Ellipsoid
 Ellipsoid UTMGCT.getEllipsoid()
           
 

Methods in com.bbn.openmap.proj.coords with parameters of type Ellipsoid
static LatLonPoint ZonedUTMPoint.ZonedUTMtoLL(Ellipsoid ellip, float UTMNorthing, float UTMEasting, int ZoneNumber, char ZoneLetter, LatLonPoint llpoint)
          Converts UTM coords to lat/long given an ellipsoid.
 LatLonPoint UTMPoint.toLatLonPoint(Ellipsoid ellip)
          Convert this UTMPoint to a LatLonPoint, and use the given ellipsoid.
 LatLonPoint UTMPoint.toLatLonPoint(Ellipsoid ellip, LatLonPoint llpoint)
          Fill in the given LatLonPoint with the converted values of this UTMPoint, and use the given ellipsoid.
static UTMPoint UTMPoint.LLtoUTM(LatLonPoint llpoint, Ellipsoid ellip, UTMPoint utmpoint)
          Converts a set of Longitude and Latitude co-ordinates to UTM given an ellipsoid
static UTMPoint UTMPoint.LLtoUTM(LatLonPoint llpoint, Ellipsoid ellip, UTMPoint utmPoint, int zoneNumber, boolean isNorthern)
          Converts a set of Longitude and Latitude co-ordinates to UTM given an ellipsoid and the UTM zone to use.
static LatLonPoint UTMPoint.UTMtoLL(UTMPoint utm_point, Ellipsoid ellip, LatLonPoint llpoint)
          Converts UTM coords to lat/long given an ellipsoid given an instance of UTMPoint.
static LatLonPoint UTMPoint.UTMtoLL(Ellipsoid ellip, float UTMNorthing, float UTMEasting, java.lang.String UTMZone, LatLonPoint llpoint)
          Converts UTM coords to lat/long given an ellipsoid.
static LatLonPoint UTMPoint.UTMtoLL(Ellipsoid ellip, float UTMNorthing, float UTMEasting, int ZoneNumber, boolean isNorthern, LatLonPoint llpoint)
          Converts UTM coords to lat/long given an ellipsoid.
static LatLonPoint UTMPoint.UTMtoLL(Ellipsoid ellip, float UTMNorthing, float UTMEasting, int zoneNumber, char zoneLetter, LatLonPoint llpoint)
          Converts UTM coords to lat/long given an ellipsoid.
 void UTMGCT.setEllipsoid(Ellipsoid ellipsoid)
           
 LatLonPoint MGRSPoint.toLatLonPoint(Ellipsoid ellip)
          Convert this MGRSPoint to a LatLonPoint, and use the given ellipsoid.
 LatLonPoint MGRSPoint.toLatLonPoint(Ellipsoid ellip, LatLonPoint llpoint)
          Fill in the given LatLonPoint with the converted values of this MGRSPoint, and use the given ellipsoid.
static LatLonPoint MGRSPoint.MGRStoLL(MGRSPoint mgrsp, Ellipsoid ellip, LatLonPoint llp)
          Create a LatLonPoint from a MGRSPoint.
static LatLonPoint MGRSPoint.MGRStoLL(Ellipsoid ellip, float northing, float easting, int zoneNumber, char zoneLetter, LatLonPoint llp)
          Create a LatLonPoint from a MGRSPoint.
static MGRSPoint MGRSPoint.LLtoMGRS(LatLonPoint llp, Ellipsoid ellip, MGRSPoint mgrsp)
          Create a MGRSPoint from a LatLonPoint.
 

Constructors in com.bbn.openmap.proj.coords with parameters of type Ellipsoid
ZonedUTMPoint(LatLonPoint llpoint, Ellipsoid ellip)
          Constructor pass-through.
UTMPoint(LatLonPoint llpoint, Ellipsoid ellip)
          Construct a UTMPoint from a LatLonPoint and a particular ellipsoid.
MGRSPoint(LatLonPoint llpoint, Ellipsoid ellip)
          Construct a MGRSPoint from a LatLonPoint and a particular ellipsoid.
CoordinateReferenceSystem(GeoCoordTransformation coordConverter, java.lang.Class projLoaderClass, Ellipsoid ellipsoid)
           
CoordinateReferenceSystem(GeoCoordTransformation coordConverter, java.lang.Class projLoaderClass, Ellipsoid ellipsoid, java.util.Properties projectionParameters)
           
 



Copyright (C) BBNT Solutions LLC; See http://openmap.bbn.com/ for details