Uses of Class
org.deegree_impl.model.ct.CoordinateTransformation

Packages that use CoordinateTransformation
org.deegree_impl.model.ct   
 

Uses of CoordinateTransformation in org.deegree_impl.model.ct
 

Subclasses of CoordinateTransformation in org.deegree_impl.model.ct
private static class CoordinateTransformation.Inverse
          The inverse coordinate transformation.
 

Fields in org.deegree_impl.model.ct declared as CoordinateTransformation
(package private)  CoordinateTransformation CoordinateTransformation.inverse
          The inverse transform.
 

Methods in org.deegree_impl.model.ct that return CoordinateTransformation
 CoordinateTransformation CoordinateTransformationFactory.createFromCoordinateSystems(CoordinateSystem sourceCS, CoordinateSystem targetCS)
          Creates a transformation between two coordinate systems.
protected  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(TemporalCoordinateSystem sourceCS, TemporalCoordinateSystem targetCS)
          Creates a transformation between two temporal coordinate systems.
protected  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(VerticalCoordinateSystem sourceCS, VerticalCoordinateSystem targetCS)
          Creates a transformation between two vertical coordinate systems.
protected  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(GeographicCoordinateSystem sourceCS, GeographicCoordinateSystem targetCS)
          Creates a transformation between two geographic coordinate systems.
protected  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(ProjectedCoordinateSystem sourceCS, ProjectedCoordinateSystem targetCS)
          Creates a transformation between two projected coordinate systems.
protected  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(GeographicCoordinateSystem sourceCS, ProjectedCoordinateSystem targetCS)
          Creates a transformation between a geographic and a projected coordinate systems.
protected  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(ProjectedCoordinateSystem sourceCS, GeographicCoordinateSystem targetCS)
          Creates a transformation between a projected and a geographic coordinate systems.
protected  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(GeocentricCoordinateSystem sourceCS, GeocentricCoordinateSystem targetCS)
          Creates a transformation between two geocentric coordinate systems.
protected  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(GeographicCoordinateSystem sourceCS, GeocentricCoordinateSystem targetCS)
          Creates a transformation between a geographic and a geocentric coordinate systems.
private  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(ProjectedCoordinateSystem sourceCS, GeocentricCoordinateSystem targetCS)
          Creates a transformation between a projected and a geocentric coordinate systems.
protected  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(CompoundCoordinateSystem sourceCS, GeocentricCoordinateSystem targetCS)
          Creates a transformation between a compound and a geocentric coordinate systems.
protected  CoordinateTransformation CoordinateTransformationFactory.createTransformationStep(CompoundCoordinateSystem sourceCS, CompoundCoordinateSystem targetCS)
          Creates a transformation between two compound coordinate systems.
private  CoordinateTransformation CoordinateTransformationFactory.getGeographicTransformation(CoordinateSystem CS)
          Returns a transformation from CS to a geographic coordinate system.
private  CoordinateTransformation CoordinateTransformationFactory.concatenate(CoordinateTransformation step1, CoordinateTransformation step2)
          Concatenate two transformation steps.
private  CoordinateTransformation CoordinateTransformationFactory.concatenate(CoordinateTransformation step1, CoordinateTransformation step2, CoordinateTransformation step3)
          Concatenate three transformation steps.
private static CoordinateTransformation CoordinateTransformationFactory.createFromMathTransform(CoordinateSystem sourceCS, CoordinateSystem targetCS, TransformType type, MathTransform transform)
          Create a coordinate transform from a math transform.
 CoordinateTransformation CoordinateTransformation.inverse()
          Returns the inverse transform of this object.
 CoordinateTransformation CoordinateTransformation.Export.unwrap()
          Returns the underlying math transform.
 CoordinateTransformation Adapters.wrap(CT_CoordinateTransformation transform)
          Returns a coordinate transform for an OpenGIS interface.
 

Methods in org.deegree_impl.model.ct with parameters of type CoordinateTransformation
private  CoordinateTransformation CoordinateTransformationFactory.concatenate(CoordinateTransformation step1, CoordinateTransformation step2)
          Concatenate two transformation steps.
private  CoordinateTransformation CoordinateTransformationFactory.concatenate(CoordinateTransformation step1, CoordinateTransformation step2, CoordinateTransformation step3)
          Concatenate three transformation steps.
 CT_CoordinateTransformation Adapters.export(CoordinateTransformation transform)
          Returns an OpenGIS interface for a math transform.
 

Constructors in org.deegree_impl.model.ct with parameters of type CoordinateTransformation
CoordinateTransformation.Inverse(CoordinateTransformation transform)
          Construct a coordinate transformation.