org.geotools.ct.proj
Class LambertConformal

java.lang.Object
  extended byorg.geotools.ct.AbstractMathTransform
      extended byorg.geotools.ct.proj.MapProjection
          extended byorg.geotools.ct.proj.ConicProjection
              extended byorg.geotools.ct.proj.LambertConformal
All Implemented Interfaces:
MathTransform, MathTransform2D, java.io.Serializable

Deprecated. Replaced by .

public class LambertConformal
extends ConicProjection

Lambert Conical Conformal Projection. Areas and shapes are deformed as one moves away from standard parallels. The angles are true in a limited area. This projection is used for the charts of North America. It uses a default central latitude of 40?N.

This implementation provides transforms for three cases of the lambert conic conformal projection:

For the 1SP case the latitude of origin is used as the standard parallel (SP). To use a 1SP with a latitude of origin different from the SP, use the 2SP and set both the SP1 and SP2 to the single SP.

References:

Version:
$Id: LambertConformal.java 17672 2006-01-19 00:25:55Z desruisseaux $
Author:
Andr? Gosselin, Martin Desruisseaux, Rueben Schulz
See Also:
Lambert conformal conic projection on MathWorld, lambert_conic_conformal_1sp, lambert_conic_conformal_2sp, lambert_conic_conformal_2sp_belgium, Serialized Form

Field Summary
protected  double phi1
          Deprecated. Standards parallels in radians, for MapProjection.toString() implementation.
protected  double phi2
          Deprecated. Standards parallels in radians, for MapProjection.toString() implementation.
 
Fields inherited from class org.geotools.ct.proj.MapProjection
centralMeridian, e, es, falseEasting, falseNorthing, globalScale, isSpherical, latitudeOfOrigin, scaleFactor, semiMajor, semiMinor
 
Fields inherited from interface org.geotools.ct.MathTransform2D
IDENTITY
 
Constructor Summary
protected LambertConformal(Projection parameters)
          Deprecated. Construct a new projection from the supplied parameters.
 
Method Summary
 boolean equals(java.lang.Object object)
          Deprecated. Compares the specified object with this map projection for equality.
 java.lang.String getName(java.util.Locale locale)
          Deprecated. Returns a human readable name localized for the specified locale.
 int hashCode()
          Deprecated. Returns a hash value for this projection.
protected  java.awt.geom.Point2D inverseTransformNormalized(double x, double y, java.awt.geom.Point2D ptDst)
          Deprecated. Transforms the specified (x,y) coordinate and stores the result in ptDst.
protected  java.awt.geom.Point2D transformNormalized(double x, double y, java.awt.geom.Point2D ptDst)
          Deprecated. Transforms the specified (x,y) coordinate (units in radians) and stores the result in ptDst (linear distance on a unit sphere).
 
Methods inherited from class org.geotools.ct.proj.MapProjection
getDimSource, getDimTarget, inverse, toString, transform, transform, transform
 
Methods inherited from class org.geotools.ct.AbstractMathTransform
createTransformedShape, derivative, derivative, fromGeoAPI, isIdentity, transform
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.geotools.ct.MathTransform2D
createTransformedShape, derivative
 
Methods inherited from interface org.geotools.ct.MathTransform
derivative, isIdentity, transform
 

Field Detail

phi1

protected final double phi1
Deprecated. 
Standards parallels in radians, for MapProjection.toString() implementation.


phi2

protected final double phi2
Deprecated. 
Standards parallels in radians, for MapProjection.toString() implementation.

Constructor Detail

LambertConformal

protected LambertConformal(Projection parameters)
                    throws MissingParameterException
Deprecated. 
Construct a new projection from the supplied parameters.

Parameters:
parameters - The parameter values in standard units.
Throws:
MissingParameterException - if a mandatory parameter is missing.
Method Detail

getName

public java.lang.String getName(java.util.Locale locale)
Deprecated. 
Returns a human readable name localized for the specified locale.

Specified by:
getName in class MapProjection

transformNormalized

protected java.awt.geom.Point2D transformNormalized(double x,
                                                    double y,
                                                    java.awt.geom.Point2D ptDst)
                                             throws ProjectionException
Deprecated. 
Transforms the specified (x,y) coordinate (units in radians) and stores the result in ptDst (linear distance on a unit sphere).

Specified by:
transformNormalized in class MapProjection
Parameters:
x - The longitude of the coordinate, in radians.
y - The latitude of the coordinate, in radians.
ptDst - the specified coordinate point that stores the result of transforming ptSrc, or null. Ordinates will be in a dimensionless unit, as a linear distance on a unit sphere or ellipse.
Returns:
the coordinate point after transforming x, y and storing the result in ptDst.
Throws:
ProjectionException - if the point can't be transformed.

inverseTransformNormalized

protected java.awt.geom.Point2D inverseTransformNormalized(double x,
                                                           double y,
                                                           java.awt.geom.Point2D ptDst)
                                                    throws ProjectionException
Deprecated. 
Transforms the specified (x,y) coordinate and stores the result in ptDst.

Specified by:
inverseTransformNormalized in class MapProjection
Parameters:
x - The easting of the coordinate, linear distance on a unit sphere or ellipse.
y - The northing of the coordinate, linear distance on a unit sphere or ellipse.
ptDst - the specified coordinate point that stores the result of transforming ptSrc, or null. Ordinates will be in radians.
Returns:
the coordinate point after transforming x, y and storing the result in ptDst.
Throws:
ProjectionException - if the point can't be transformed.

hashCode

public int hashCode()
Deprecated. 
Returns a hash value for this projection.

Overrides:
hashCode in class MapProjection

equals

public boolean equals(java.lang.Object object)
Deprecated. 
Compares the specified object with this map projection for equality.

Overrides:
equals in class MapProjection


Copyright © GeoTools. All Rights Reserved.