Package mccombe.mapping
Class LambertIV
- java.lang.Object
-
- mccombe.mapping.CoordinateSystem
-
- mccombe.mapping.Projection
-
- mccombe.mapping.Lambert
-
- mccombe.mapping.LambertIV
-
public class LambertIV extends Lambert
A non-abstract class implementing the Lambert Conformal Conical projection for Zone 4 (Corsica)
-
-
Field Summary
-
Fields inherited from class mccombe.mapping.CoordinateSystem
locus, ref, sph
-
-
Constructor Summary
Constructors Constructor Description LambertIV(ENPair en, Ellipsoid e, Datum d)
Create an instance of LambertIV from easting and northing distances, Ellipsoid and DatumLambertIV(Position p, Ellipsoid e, Datum d)
Create an instance of LambertIV from Position, Ellipsoid and Datum
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected double
e0()
Define false easting valueprotected double
lamda0()
Define longitude of grid originstatic LambertIV
makePoint(java.lang.String gridref, Ellipsoid e, Datum d)
Static factory method to create an instance of LambertIV from a grid reference Stringprotected double
n0()
Define false northingprotected double
phiB()
Define latitude of false originprotected double
phiL()
Define lower standard parallel for this projectionprotected double
phiU()
Define Upper standard parallel for this conical projection-
Methods inherited from class mccombe.mapping.Lambert
calcCoords, defaultDatum, defaultEllipsoid, getEN, gridConvergence, toEN, toString
-
Methods inherited from class mccombe.mapping.CoordinateSystem
getDatum, getEllipsoid, getName, getPosition, getWGS84, parseDouble, toLatLong, toLatLongString
-
-
-
-
Method Detail
-
makePoint
public static LambertIV makePoint(java.lang.String gridref, Ellipsoid e, Datum d) throws GridFormatException
Static factory method to create an instance of LambertIV from a grid reference String- Parameters:
gridref
- A grid reference of the form "X=... Y=..." where the values are easting and northing distances in km. French convention sometimes includes the zone number as the first digit of the Y (northing) coordinate (e.g. "Y=4210.98" denoting a northing distance of 210.98km in zone 4). If present, this is ignored.e
- Ellipsoid to use in conversionsd
- Datum to use in conversions- Returns:
- A new LambertI instance
- Throws:
GridFormatException
- thrown in case of format error in the grid reference
-
phiU
protected double phiU()
Define Upper standard parallel for this conical projection
-
phiL
protected double phiL()
Define lower standard parallel for this projection
-
phiB
protected double phiB()
Define latitude of false origin
-
lamda0
protected double lamda0()
Define longitude of grid origin
-
e0
protected double e0()
Define false easting value
-
-