|
deegree 2.1 (2007/11/08 09:57 build-328-official) | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use MathTransform | |
---|---|
org.deegree.model.csct.ct | |
org.deegree.model.csct.resources |
Uses of MathTransform in org.deegree.model.csct.ct |
---|
Subinterfaces of MathTransform in org.deegree.model.csct.ct | |
---|---|
interface |
MathTransform2D
Transforms two-dimensional coordinate points. |
Classes in org.deegree.model.csct.ct that implement MathTransform | |
---|---|
(package private) class |
AbridgedMolodenskiTransform
Transforms a three dimensional geographic points using abridged versions of formulas derived by Molodenski. |
class |
AbstractMathTransform
Provides a default implementations for most methods required by the MathTransform interface. |
protected class |
AbstractMathTransform.Inverse
Default implementation for inverse math transform. |
(package private) class |
AffineTransform2D
Transforms two-dimensional coordinate points using an AffineTransform . |
(package private) class |
ConcatenedTransform
Base class for concatened transform. |
(package private) class |
ConcatenedTransform2D
Concatened transform in which the resulting transform is two-dimensional. |
(package private) class |
ConcatenedTransformDirect
Concatened transform where the transfert dimension is the same than source and target dimension. |
(package private) class |
ConcatenedTransformDirect2D
Concatened transform where both transforms are two-dimensional. |
(package private) class |
ConicProjection
Classe de base des projections cartographiques coniques. |
(package private) class |
CylindricalProjection
Classe de base des projections cartographiques cylindriques. |
(package private) class |
GeocentricTransform
Transforms three dimensional geographic points to geocentric coordinate points. |
(package private) class |
LambertConformalProjection
Projection conique conforme de Lambert. |
(package private) class |
MapProjection
Provides transformation services between ellipsoidal and cartographic projections. |
(package private) class |
MatrixTransform
Transforms multi-dimensional coordinate points using a Matrix . |
(package private) class |
MercatorProjection
Projection cylindrique de Mercator. |
(package private) class |
PassThroughTransform
Transform which passes through a subset of ordinates to another transform. |
(package private) class |
PlanarProjection
Classe de base des projections cartographiques azimuthales (ou planaires). |
(package private) class |
StereographicProjection
Projection st�r�ographique. |
(package private) class |
TransverseMercatorProjection
Projections de Mercator tranverses Universelle et Modifi�e. |
Fields in org.deegree.model.csct.ct declared as MathTransform | |
---|---|
protected MathTransform |
PassThroughTransform.transform
The sub transform. |
protected MathTransform |
CoordinateTransformation.transform
The underlying math transform, or null if it doesn't has been constructed yet. |
protected MathTransform |
ConcatenedTransform.transform1
The first math transform. |
protected MathTransform |
ConcatenedTransform.transform2
The second math transform. |
Methods in org.deegree.model.csct.ct that return MathTransform | |
---|---|
MathTransform |
MatrixTransform.Provider.create(javax.media.jai.ParameterList parameters)
Returns a transform for the specified parameters. |
MathTransform |
GeocentricTransform.Provider.create(javax.media.jai.ParameterList parameters)
Returns a transform for the specified parameters. |
MathTransform |
MapProjection.Provider.create(javax.media.jai.ParameterList parameters)
Create a new map projection for a parameter list. |
abstract MathTransform |
MathTransformProvider.create(javax.media.jai.ParameterList parameters)
Returns a transform for the specified parameters. |
MathTransform |
AbridgedMolodenskiTransform.Provider.create(javax.media.jai.ParameterList parameters)
Returns a transform for the specified parameters. |
MathTransform |
MathTransformFactory.createAffineTransform(Matrix matrix)
Creates an affine transform from a matrix. |
MathTransform |
MathTransformFactory.createConcatenatedTransform(MathTransform tr1,
MathTransform tr2)
Creates a transform by concatenating two existing transforms. |
MathTransform |
MathTransformFactory.createIdentityTransform(int dimension)
Creates an identity transform of the specified dimension. |
MathTransform |
MathTransformFactory.createParameterizedTransform(Projection projection)
Convenience method for creating a transform from a projection. |
MathTransform |
MathTransformFactory.createParameterizedTransform(String classification,
javax.media.jai.ParameterList parameters)
Creates a transform from a classification name and parameters. |
MathTransform |
MathTransformFactory.createPassThroughTransform(int firstAffectedOrdinate,
MathTransform subTransform,
int numTrailingOrdinates)
Creates a transform which passes through a subset of ordinates to another transform. |
MathTransform |
MathTransformFactory.createSubMathTransform(int lower,
int upper,
MathTransform transform)
Creates a transform which retains only a portion of an other transform. |
MathTransform |
CoordinateTransformation.getMathTransform()
Gets the math transform. |
MathTransform |
PassThroughTransform.inverse()
Creates the inverse transform of this object. |
MathTransform |
MatrixTransform.inverse()
Creates the inverse transform of this object. |
MathTransform |
GeocentricTransform.inverse()
Returns the inverse of this transform. |
MathTransform |
MapProjection.inverse()
Returns the inverse of this map projection. |
MathTransform |
ConcatenedTransform.inverse()
Creates the inverse transform of this object. |
MathTransform |
AffineTransform2D.inverse()
Creates the inverse transform of this object. |
MathTransform |
AbstractMathTransform.inverse()
Creates the inverse transform of this object. |
MathTransform |
AbstractMathTransform.Inverse.inverse()
Returns the inverse of this math transform, which is the enclosing math transform. |
MathTransform |
MathTransform.inverse()
Creates the inverse transform of this object. |
static MathTransform |
MatrixTransform.Provider.staticCreate(javax.media.jai.ParameterList parameters)
Static version of MatrixTransform.Provider.create(javax.media.jai.ParameterList) , for use by
MathTransformFactory.createParameterizedTransform(String, ParameterList) . |
Methods in org.deegree.model.csct.ct with parameters of type MathTransform | |
---|---|
MathTransform |
MathTransformFactory.createConcatenatedTransform(MathTransform tr1,
MathTransform tr2)
Creates a transform by concatenating two existing transforms. |
MathTransform |
MathTransformFactory.createPassThroughTransform(int firstAffectedOrdinate,
MathTransform subTransform,
int numTrailingOrdinates)
Creates a transform which passes through a subset of ordinates to another transform. |
MathTransform |
MathTransformFactory.createSubMathTransform(int lower,
int upper,
MathTransform transform)
Creates a transform which retains only a portion of an other transform. |
Constructors in org.deegree.model.csct.ct with parameters of type MathTransform | |
---|---|
ConcatenedTransform(MathTransformFactory provider,
MathTransform transform1,
MathTransform transform2)
Construct a concatenated transform. |
|
ConcatenedTransform2D(MathTransformFactory provider,
MathTransform transform1,
MathTransform transform2)
Construct a concatenated transform. |
|
ConcatenedTransformDirect(MathTransformFactory provider,
MathTransform transform1,
MathTransform transform2)
Construct a concatenated transform. |
|
CoordinateTransformation(String name,
CoordinateSystem sourceCS,
CoordinateSystem targetCS,
TransformType type,
MathTransform transform)
Construct a coordinate transformation. |
|
PassThroughTransform(int firstAffectedOrdinate,
MathTransform transform,
int numTrailingOrdinates)
Create a pass through transform. |
Uses of MathTransform in org.deegree.model.csct.resources |
---|
Methods in org.deegree.model.csct.resources with parameters of type MathTransform | |
---|---|
static Envelope |
OpenGIS.transform(MathTransform transform,
Envelope envelope)
Transform an envelope. |
|
deegree 2.1 (2007/11/08 09:57 build-328-official) | |||||||||
PREV NEXT | FRAMES NO FRAMES |
an open source project founded by lat/lon, Bonn, Germany.
For more information visit: http://deegree.sourceforge.net