| org.geotools.referencing.operation.AbstractCoordinateOperation org.geotools.referencing.operation.DefaultSingleOperation org.geotools.referencing.operation.DefaultOperation org.geotools.referencing.operation.DefaultConversion org.geotools.referencing.operation.DefaultProjection
All known Subclasses: org.geotools.referencing.operation.DefaultCylindricalProjection, org.geotools.referencing.operation.DefaultPlanarProjection, org.geotools.referencing.operation.DefaultConicProjection,
DefaultProjection | public class DefaultProjection extends DefaultConversion implements Projection(Code) | | A
transforming
(longitude,latitude) coordinates to cartesian coordinates
(x,y).
An unofficial list of projections and their parameters can
be found there.
Most projections expect the following parameters:
"central_meridian" (default to 0),
"latitude_of_origin" (default to 0),
"scale_factor" (default to 1),
"false_easting" (default to 0) and
"false_northing" (default to 0).
since: 2.1 version: $Id: DefaultProjection.java 20874 2006-08-07 10:00:01Z jgarnett $ author: Martin Desruisseaux See Also: org.geotools.referencing.crs.DefaultProjectedCRS See Also: Map projections on MathWorld |
Constructor Summary | |
public | DefaultProjection(Conversion conversion, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform) Constructs a new projection with the same values than the specified one, together with the
specified source and target CRS. | public | DefaultProjection(Map properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method) Constructs a projection from a set of properties. |
DefaultProjection | public DefaultProjection(Conversion conversion, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform)(Code) | | Constructs a new projection with the same values than the specified one, together with the
specified source and target CRS. While the source conversion can be an arbitrary one, it is
typically a
.
Parameters: conversion - The defining conversion. Parameters: sourceCRS - The source CRS. Parameters: targetCRS - The target CRS. Parameters: transform - Transform from positions in the to positions in the . |
DefaultProjection | public DefaultProjection(Map properties, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, OperationMethod method)(Code) | | Constructs a projection from a set of properties. The properties given in argument
follow the same rules than for the
AbstractCoordinateOperation constructor.
Parameters: properties - Set of properties. Should contains at least "name" . Parameters: sourceCRS - The source CRS, or null if not available. Parameters: targetCRS - The target CRS, or null if not available. Parameters: transform - Transform from positions in the to positions in the . Parameters: method - The operation method. |
Methods inherited from org.geotools.referencing.operation.DefaultConversion | public static Conversion create(Conversion definition, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform)(Code)(Java Doc) public static Conversion create(Conversion definition, CoordinateReferenceSystem sourceCRS, CoordinateReferenceSystem targetCRS, MathTransform transform, Class typeHint)(Code)(Java Doc)
|
Fields inherited from org.geotools.referencing.operation.DefaultOperation | final protected OperationMethod method(Code)(Java Doc)
|
|
|