|
deegree 2.5 (2011/06/29 09:44 build-8-official) | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Transformation | |
---|---|
org.deegree.crs.configuration | The org.deegree.crs.configuraton package contains the classes necessary to read crs-definitions from a file. |
org.deegree.crs.configuration.deegree | |
org.deegree.crs.configuration.gml | |
org.deegree.crs.configuration.proj4 | |
org.deegree.crs.configuration.resources | |
org.deegree.crs.transformations | A Transformation can be defined as an mathematical operation which transforms some values into other values using a specified function. |
org.deegree.crs.transformations.coordinate | Coordinate Transformations allow the chaining of operations to map coordinates of one coordinate systems onto a coordinate valid in another coordinate system. |
org.deegree.crs.transformations.helmert | A Transformation can be defined as an mathematical operation which transforms some values into other values using a specified function. |
org.deegree.crs.transformations.polynomial | A Transformation can be defined as an mathematical operation which transforms some values into other values using a specified function. |
org.deegree.model.crs | |
org.deegree.ogcwebservices.wcts.capabilities | |
org.deegree.ogcwebservices.wcts.capabilities.mdprofiles | |
org.deegree.ogcwebservices.wcts.data |
Uses of Transformation in org.deegree.crs.configuration |
---|
Methods in org.deegree.crs.configuration that return Transformation | |
---|---|
Transformation |
CRSProvider.getTransformation(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
This method is should retrieve a transformation (chain) which transforms coordinates from the given source into the given target crs. |
abstract Transformation |
AbstractCRSProvider.parseTransformation(T transformationDefinition)
|
Methods in org.deegree.crs.configuration that return types with arguments of type Transformation | |
---|---|
java.util.List<Transformation> |
CRSProvider.getTransformations()
|
Uses of Transformation in org.deegree.crs.configuration.deegree |
---|
Methods in org.deegree.crs.configuration.deegree that return Transformation | |
---|---|
Transformation |
DeegreeCRSProvider.getTransformation(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
|
Transformation |
CRSParser.getTransformation(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
|
Transformation |
DeegreeCRSProvider.parseTransformation(org.w3c.dom.Element transformationDefinition)
|
Transformation |
CRSParser.parseTransformation(org.w3c.dom.Element transformationDefinition)
Retrieves a transformation from the resource. |
Methods in org.deegree.crs.configuration.deegree that return types with arguments of type Transformation | |
---|---|
java.util.List<Transformation> |
DeegreeCRSProvider.getTransformations()
|
java.util.List<Transformation> |
CRSParser.getTransformations()
|
Uses of Transformation in org.deegree.crs.configuration.gml |
---|
Methods in org.deegree.crs.configuration.gml that return Transformation | |
---|---|
Transformation |
GMLCRSProvider.getTransformation(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
|
Transformation |
GMLFileResource.getTransformation(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
|
protected Transformation |
GMLCRSProvider.parseGMLTransformation(org.w3c.dom.Element rootElement)
Parses some of the gml 3.2 transformation constructs. |
Transformation |
GMLCRSProvider.parseTransformation(org.w3c.dom.Element rootElement)
Calls parseGMLTransformation for the catching of XMLParsingException . |
Methods in org.deegree.crs.configuration.gml that return types with arguments of type Transformation | |
---|---|
java.util.List<Transformation> |
GMLCRSProvider.getTransformations()
|
java.util.List<Transformation> |
GMLFileResource.getTransformations()
|
Uses of Transformation in org.deegree.crs.configuration.proj4 |
---|
Methods in org.deegree.crs.configuration.proj4 that return Transformation | |
---|---|
Transformation |
PROJ4CRSProvider.getTransformation(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
|
Transformation |
ProjFileResource.getTransformation(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
|
Transformation |
PROJ4CRSProvider.parseTransformation(java.util.Map<java.lang.String,java.lang.String> transformationDefinition)
|
Methods in org.deegree.crs.configuration.proj4 that return types with arguments of type Transformation | |
---|---|
java.util.List<Transformation> |
PROJ4CRSProvider.getTransformations()
|
java.util.List<Transformation> |
ProjFileResource.getTransformations()
|
Uses of Transformation in org.deegree.crs.configuration.resources |
---|
Methods in org.deegree.crs.configuration.resources that return Transformation | |
---|---|
Transformation |
CRSResource.getTransformation(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
Implementations should find a given transformation (chain) which transforms coordinates of the given coordinate system into coordinates of the target crs. |
Methods in org.deegree.crs.configuration.resources that return types with arguments of type Transformation | |
---|---|
java.util.List<Transformation> |
CRSResource.getTransformations()
|
Uses of Transformation in org.deegree.crs.transformations |
---|
Methods in org.deegree.crs.transformations that return Transformation | |
---|---|
Transformation |
TransformationFactory.createFromCoordinateSystems(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
Creates a transformation between two coordinate systems. |
Methods in org.deegree.crs.transformations with parameters of type Transformation | |
---|---|
boolean |
Transformation.areInverse(Transformation other)
Checks if this transformation is the inverse of the other transformation, which means, this.sourceCRS equals other.targetCRS && this.targetCRS == other.sourceCRS. |
Uses of Transformation in org.deegree.crs.transformations.coordinate |
---|
Subclasses of Transformation in org.deegree.crs.transformations.coordinate | |
---|---|
class |
ConcatenatedTransform
The ConcatenatedTransform class allows the connection of two transformations. |
class |
CRSTransformation
The change of coordinates from one CRS to another CRS based on different datum is 'currently' only possible via a coordinate Transformation . |
class |
DirectTransform
The DirectTransform class wraps the access to a polynomial transformation, by calling it's
applyPolynomial method. |
class |
GeocentricTransform
The GeocentricTransform class is used to create a transformation between a geocentric CRS (having
lat-lon coordinates) and it's geodetic CRS (having x-y-z) coordinates and vice versa. |
class |
MatrixTransform
The MatrixTransform class allows transformations using matrices. |
class |
NotSupportedTransformation
The NotSupportedTransformation class simply wraps the source and target crs. |
class |
ProjectionTransform
The ProjectionTransform class wraps the access to a projection, by calling it's doProjection. |
Methods in org.deegree.crs.transformations.coordinate that return Transformation | |
---|---|
Transformation |
ConcatenatedTransform.getFirstTransform()
|
Transformation |
ConcatenatedTransform.getSecondTransform()
|
Constructors in org.deegree.crs.transformations.coordinate with parameters of type Transformation | |
---|---|
ConcatenatedTransform(Transformation first,
Transformation second)
Creates a transform by concatenating two existing transforms. |
|
ConcatenatedTransform(Transformation first,
Transformation second,
Identifiable id)
Creates a transform by concatenating two existing transforms. |
Uses of Transformation in org.deegree.crs.transformations.helmert |
---|
Subclasses of Transformation in org.deegree.crs.transformations.helmert | |
---|---|
class |
Helmert
Parameters for a geographic transformation into another datum. |
Uses of Transformation in org.deegree.crs.transformations.polynomial |
---|
Subclasses of Transformation in org.deegree.crs.transformations.polynomial | |
---|---|
class |
LeastSquareApproximation
LeastSquareApproximation is a polynomial transformation which uses the least square method to
approximate a function given by some measured values. |
class |
PolynomialTransformation
PolynomialTransformation is the base class for all polynomial transformations. |
Uses of Transformation in org.deegree.model.crs |
---|
Methods in org.deegree.model.crs that return Transformation | |
---|---|
static Transformation |
CRSFactory.getTransformation(java.lang.String providerName,
CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
Retrieve a Transformation (chain) which transforms coordinates from the given source into the given
target crs. |
static Transformation |
CRSFactory.getTransformation(java.lang.String providerName,
java.lang.String id)
Get a Transformation with given id, or null if it does not exist. |
Constructors in org.deegree.model.crs with parameters of type Transformation | |
---|---|
GeoTransformer(Transformation definedTransformation)
|
Uses of Transformation in org.deegree.ogcwebservices.wcts.capabilities |
---|
Methods in org.deegree.ogcwebservices.wcts.capabilities that return types with arguments of type Transformation | |
---|---|
java.util.Map<java.lang.String,Transformation> |
Content.getTransformations()
|
Constructor parameters in org.deegree.ogcwebservices.wcts.capabilities with type arguments of type Transformation | |
---|---|
Content(java.util.Map<java.lang.String,Transformation> configuredTransforms,
java.util.List<java.lang.String> methods,
java.util.List<CoordinateSystem> sourceCRSs,
java.util.List<CoordinateSystem> targetCRSs,
CoverageAbilities coverageAbilities,
FeatureAbilities featureAbilities,
java.util.List<Metadata> metadata,
boolean userDefinedCRS,
java.util.List<MetadataProfile<?>> transformMetadata)
|
Uses of Transformation in org.deegree.ogcwebservices.wcts.capabilities.mdprofiles |
---|
Methods in org.deegree.ogcwebservices.wcts.capabilities.mdprofiles that return Transformation | |
---|---|
Transformation |
TransformationMetadata.getParsedMetadataType()
The result may be null in which case the 'default' transformation chain will be used. |
Constructors in org.deegree.ogcwebservices.wcts.capabilities.mdprofiles with parameters of type Transformation | |
---|---|
TransformationMetadata(Transformation transformation,
java.lang.String transformID,
CoordinateSystem sourceCRS,
CoordinateSystem targetCRS,
java.lang.String description)
|
Uses of Transformation in org.deegree.ogcwebservices.wcts.data |
---|
Methods in org.deegree.ogcwebservices.wcts.data with parameters of type Transformation | |
---|---|
void |
GeometryData.doTransform(Transformation transformation,
boolean enableLogging)
|
void |
SimpleData.doTransform(Transformation transformation,
boolean enableLogging)
|
abstract void |
TransformableData.doTransform(Transformation transformation,
boolean enableLogging)
This function should implement the transforming of the underlying data. |
void |
FeatureCollectionData.doTransform(Transformation transformation,
boolean enableLogging)
|
GeoTransformer |
TransformableData.getGeotransformer(Transformation transformation)
|
|
deegree 2.5 (2011/06/29 09:44 build-8-official) | |||||||||
PREV NEXT | FRAMES NO FRAMES |
an open source project founded by lat/lon, Bonn, Germany.
For more information visit: http://www.deegree.org