|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TransformationException | |
---|---|
org.deegree.coverage.raster | Provides for simple and complex raster (grid coverages). |
org.deegree.cs | The org.deegree.cs package contains all necessities to transform and project coordinates form one coordinates system into another. |
org.deegree.cs.transformations | A Transformation can be defined as an mathematical operation which transforms some values into other values using a specified function. |
org.deegree.cs.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.cs.transformations.helmert | A Transformation can be defined as an mathematical operation which transforms some values into other values using a specified function. |
org.deegree.cs.transformations.ntv2 | A Transformation can be defined as an mathematical operation which transforms some values into other values using a specified function. |
org.deegree.cs.transformations.polynomial | A Transformation can be defined as an mathematical operation which transforms some values into other values using a specified function. |
org.deegree.cs.utilities | Utilities used for the Coordinate system package internals. |
org.deegree.feature.persistence | |
org.deegree.geometry | |
org.deegree.geometry.utils | |
org.deegree.gml | |
org.deegree.gml.feature | |
org.deegree.gml.geometry |
Uses of TransformationException in org.deegree.coverage.raster |
---|
Methods in org.deegree.coverage.raster that throw TransformationException | |
---|---|
AbstractRaster |
RasterTransformer.transform(AbstractRaster sourceRaster,
Envelope dstEnvelope,
int dstWidth,
int dstHeight,
InterpolationType interpolationType)
Creates a transformed raster from a given source raster. |
AbstractRaster |
RasterTransformer.transform(AbstractRaster sourceRaster,
InterpolationType interpolationType)
Transform a raster to the target coordinate system. |
Uses of TransformationException in org.deegree.cs |
---|
Methods in org.deegree.cs that throw TransformationException | |
---|---|
protected Transformation |
Transformer.createCRSTransformation(CoordinateSystem sourceCRS)
Creates a transformation chain, which can be used to transform incoming coordinates (in the given source CRS) into this Transformer's targetCRS. |
protected Transformation |
Transformer.createCRSTransformation(CoordinateSystem sourceCRS,
java.util.List<Transformation> toBeUsedTransformations)
Creates a transformation chain, which can be used to transform incoming coordinates (in the given source CRS) into this Transformer's targetCRS. |
protected Transformation |
Transformer.createCRSTransformation(java.lang.String sourceCRS)
Creates a transformation chain, which can be used to transform incoming coordinates (in the given source CRS) into this Transformer's targetCRS. |
static Transformation |
CRSRegistry.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 |
CRSRegistry.getTransformation(java.lang.String providerName,
CoordinateSystem sourceCRS,
CoordinateSystem targetCRS,
java.util.List<Transformation> transformationsToBeUsed)
Retrieve a Transformation (chain) which transforms coordinates from the given source into the given
target crs. |
double[] |
CoordinateTransformer.transform(CoordinateSystem sourceCRS,
double[] input,
double[] out)
Transforms a given coordinate into the CoordinateTransformer's coordinate system. |
java.util.List<javax.vecmath.Point3d> |
CoordinateTransformer.transform(CoordinateSystem sourceCRS,
java.util.List<javax.vecmath.Point3d> points)
Transforms all points to the CoordinateTransformer's coordinate system. |
Uses of TransformationException in org.deegree.cs.transformations |
---|
Methods in org.deegree.cs.transformations that throw TransformationException | |
---|---|
Transformation |
TransformationFactory.createFromCoordinateSystems(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
Creates a transformation between two coordinate systems. |
Transformation |
TransformationFactory.createFromCoordinateSystems(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS,
java.util.List<Transformation> transformationsToBeUsed)
Creates a transformation between two coordinate systems. |
void |
Transformation.doTransform(double[] srcOrdinates,
int startPositionSrc,
double[] destOrdinates,
int startPositionDest,
int length)
Wraps the incoming coordinates into a List Transformation.doTransform(List) . |
abstract java.util.List<javax.vecmath.Point3d> |
Transformation.doTransform(java.util.List<javax.vecmath.Point3d> srcPts)
Do a transformation, e.g. the incoming data will be transformed into other coordinates. |
javax.vecmath.Point3d |
Transformation.doTransform(javax.vecmath.Point3d coordinate)
Transforms a single point3d (by calling the doTransform( List |
Uses of TransformationException in org.deegree.cs.transformations.coordinate |
---|
Methods in org.deegree.cs.transformations.coordinate that throw TransformationException | |
---|---|
static Transformation |
MatrixTransform.createAllignMatrixTransform(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
Create a swap matrix to align the axis of the given coordinate systems and create a tranformation for the result. |
static MatrixTransform |
MatrixTransform.createMatrixTransform(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS,
Matrix matrix)
Creates a Matrix transform from a matrix. |
java.util.List<javax.vecmath.Point3d> |
DirectTransform.doTransform(java.util.List<javax.vecmath.Point3d> srcPts)
|
java.util.List<javax.vecmath.Point3d> |
NotSupportedTransformation.doTransform(java.util.List<javax.vecmath.Point3d> srcPts)
|
java.util.List<javax.vecmath.Point3d> |
ConcatenatedTransform.doTransform(java.util.List<javax.vecmath.Point3d> srcPts)
|
java.util.List<javax.vecmath.Point3d> |
ProjectionTransform.doTransform(java.util.List<javax.vecmath.Point3d> srcPts)
|
java.util.List<javax.vecmath.Point3d> |
IdentityTransform.doTransform(java.util.List<javax.vecmath.Point3d> srcPts)
|
Uses of TransformationException in org.deegree.cs.transformations.helmert |
---|
Methods in org.deegree.cs.transformations.helmert that throw TransformationException | |
---|---|
java.util.List<javax.vecmath.Point3d> |
Helmert.doTransform(java.util.List<javax.vecmath.Point3d> srcPts)
|
Uses of TransformationException in org.deegree.cs.transformations.ntv2 |
---|
Methods in org.deegree.cs.transformations.ntv2 that throw TransformationException | |
---|---|
java.util.List<javax.vecmath.Point3d> |
NTv2Transformation.doTransform(java.util.List<javax.vecmath.Point3d> srcPts)
|
Uses of TransformationException in org.deegree.cs.transformations.polynomial |
---|
Methods in org.deegree.cs.transformations.polynomial that throw TransformationException | |
---|---|
abstract java.util.List<javax.vecmath.Point3d> |
PolynomialTransformation.applyPolynomial(java.util.List<javax.vecmath.Point3d> srcPoints)
The central method, which actually transforms the points by applying the implemented polynomial. |
java.util.List<javax.vecmath.Point3d> |
LeastSquareApproximation.applyPolynomial(java.util.List<javax.vecmath.Point3d> srcPts)
|
java.util.List<javax.vecmath.Point3d> |
PolynomialTransformation.doTransform(java.util.List<javax.vecmath.Point3d> srcPts)
|
Uses of TransformationException in org.deegree.cs.utilities |
---|
Methods in org.deegree.cs.utilities that throw TransformationException | |
---|---|
static Matrix |
Matrix.swapAndRotateGeoAxis(GeographicCRS sourceCRS,
GeographicCRS targetCRS)
|
static Matrix |
Matrix.swapAxis(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS)
|
static Matrix |
Matrix.toStdValues(CoordinateSystem sourceCRS,
boolean invert)
Creates a matrix, with which incoming values will be transformed to a standardized form. |
static Transformation |
MappingUtils.updateFromDefinedTransformations(java.util.List<Transformation> userRequested,
Transformation originalChain)
Iterates over all given Transformations and tries to map one of the given Transformations onto the some part of the given Transformation chain. |
Uses of TransformationException in org.deegree.feature.persistence |
---|
Methods in org.deegree.feature.persistence that throw TransformationException | |
---|---|
void |
BlobCodec.encode(GMLObject object,
java.util.Map<java.lang.String,java.lang.String> nsContext,
java.io.OutputStream os,
CRS crs)
Encodes the given GMLObject to the specified output stream. |
Uses of TransformationException in org.deegree.geometry |
---|
Methods in org.deegree.geometry that throw TransformationException | ||
---|---|---|
Geometry |
GeometryTransformer.transform(Geometry geo,
boolean testValidDomain)
transforms the coordinates of a deegree geometry to the target coordinate reference system. |
|
Geometry |
GeometryTransformer.transform(Geometry geo,
CoordinateSystem sourceCRS)
transforms the coordinates of a deegree geometry to the target coordinate reference system. |
|
Geometry |
GeometryTransformer.transform(Geometry geo,
java.lang.String sourceCRS)
transforms the coordinates of a deegree geometry to the target coordinate reference system. |
|
|
GeometryTransformer.transform(T geo)
transforms the coordinates of a deegree geometry to the target coordinate reference system. |
|
|
GeometryTransformer.transform(T geom,
CoordinateSystem sourceCRS,
boolean testValidArea,
java.util.List<Transformation> toBeUsedTransformations)
transforms the coordinates of a deegree geometry to the target coordinate reference system. |
Uses of TransformationException in org.deegree.geometry.utils |
---|
Methods in org.deegree.geometry.utils that throw TransformationException | |
---|---|
static Envelope |
GeometryUtils.createConvertedEnvelope(Envelope sourceEnvelope,
CRS targetCRS)
Converts the given Envelope into an envelope with the given coordinate system. |
Uses of TransformationException in org.deegree.gml |
---|
Methods in org.deegree.gml that throw TransformationException | |
---|---|
void |
XMLTransformer.transform(javax.xml.stream.XMLStreamReader reader,
javax.xml.stream.XMLStreamWriter writer,
CoordinateSystem sourceCRS,
GMLVersion gmlVersion,
boolean testValidArea,
java.util.List<Transformation> requestedTransformation)
Transforms the given input stream, and streams the input into the output directly. |
void |
XMLTransformer.transform(javax.xml.stream.XMLStreamReader reader,
javax.xml.stream.XMLStreamWriter writer,
GMLVersion gmlVersion)
Transforms the given input stream, and streams the input into the output directly. |
void |
GMLStreamWriter.write(Feature feature)
Writes a GML representation of the given Feature to the stream. |
void |
GMLStreamWriter.write(Geometry geometry)
Writes a GML representation of the given Geometry to the stream. |
void |
GMLStreamWriter.write(GMLObject object)
Writes a GML representation of the given GMLObject to the stream. |
Uses of TransformationException in org.deegree.gml.feature |
---|
Methods in org.deegree.gml.feature that throw TransformationException | |
---|---|
void |
GMLFeatureWriter.export(Feature feature)
|
void |
GMLFeatureWriter.export(FeatureCollection fc,
javax.xml.namespace.QName name)
|
void |
GMLFeatureWriter.export(FeatureCollection fc,
java.lang.String noNamespaceSchemaLocation,
java.util.Map<java.lang.String,java.lang.String> bindings)
TODO merge with other schema location possibilities |
Uses of TransformationException in org.deegree.gml.geometry |
---|
Methods in org.deegree.gml.geometry that throw TransformationException | |
---|---|
void |
GML2GeometryWriter.export(Geometry geometry)
|
void |
GML3GeometryWriter.export(Geometry geometry)
Exporting a geometry via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.export(Geometry geometry)
Exports a general geometry. |
void |
GML3GeometryWriter.exportCompositeCurve(CompositeCurve compositeCurve)
Exporting a composite curve via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportCompositeCurve(CompositeCurve compositeCurve)
|
void |
GML3GeometryWriter.exportCompositeGeometry(CompositeGeometry<GeometricPrimitive> geometryComplex)
Exporting a composite geometry via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportCompositeGeometry(CompositeGeometry<GeometricPrimitive> geometryComplex)
|
void |
GML3GeometryWriter.exportCompositeSolid(CompositeSolid compositeSolid)
Exporting a composite solid via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportCompositeSolid(CompositeSolid compositeSolid)
|
void |
GML3GeometryWriter.exportCompositeSurface(CompositeSurface compositeSurface)
Exporting a composite surface via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportCompositeSurface(CompositeSurface compositeSurface)
|
void |
GML2GeometryWriter.exportCurve(Curve curve)
|
void |
GML3GeometryWriter.exportCurve(Curve curve)
Exporting a curve via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportCurve(Curve curve)
|
protected void |
GML3GeometryWriter.exportCurveSegment(CurveSegment curveSeg)
Exporting a curve segment via the XMLStreamWriter given when the class was constructed |
void |
GML2GeometryWriter.exportEnvelope(Envelope envelope)
|
void |
GML3GeometryWriter.exportEnvelope(Envelope envelope)
Exporting an Envelope via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportEnvelope(Envelope envelope)
|
void |
GML2GeometryWriter.exportLinearRing(Ring linearRing)
|
void |
GML2GeometryWriter.exportLineString(Curve curve)
|
void |
GML2GeometryWriter.exportMultiGeometry(MultiGeometry<? extends Geometry> multiGeometry)
|
void |
GML3GeometryWriter.exportMultiGeometry(MultiGeometry<? extends Geometry> geometry)
Exporting a multi-geometry via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportMultiGeometry(MultiGeometry<? extends Geometry> geometry)
|
void |
GML2GeometryWriter.exportMultiLineString(MultiCurve multiCurve)
|
void |
GML2GeometryWriter.exportMultiLineString(MultiLineString multiLineString)
|
void |
GML2GeometryWriter.exportMultiPoint(MultiPoint multiPoint)
|
void |
GML2GeometryWriter.exportMultiPolygon(MultiPolygon multiPolygon)
|
void |
GML2GeometryWriter.exportMultiPolygon(MultiSurface multiSurface)
|
void |
GML2GeometryWriter.exportPoint(Point point)
|
void |
GML3GeometryWriter.exportPoint(Point point)
Exporting a point via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportPoint(Point point)
|
void |
GML2GeometryWriter.exportPolygon(Polygon polygon)
|
void |
GML3GeometryWriter.exportReference(GeometryReference<Geometry> geometryRef)
|
void |
GMLGeometryWriter.exportReference(GeometryReference<Geometry> geometryRef)
|
void |
GML2GeometryWriter.exportRing(Ring ring)
|
void |
GML3GeometryWriter.exportRing(Ring ring)
Exporting a ring via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportRing(Ring ring)
|
void |
GML3GeometryWriter.exportSolid(Solid solid)
Exporting a solid via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportSolid(Solid solid)
|
void |
GML2GeometryWriter.exportSurface(Surface surface)
|
void |
GML3GeometryWriter.exportSurface(Surface surface)
Exporting a surface via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportSurface(Surface surface)
|
protected void |
GML3GeometryWriter.exportSurfacePatch(SurfacePatch surfacePatch)
Exporting a SurfacePatch via the XMLStreamWriter given when the class was constructed |
void |
GML3GeometryWriter.exportTin(Tin tin)
Exporting a tin via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportTin(Tin tin)
|
void |
GML3GeometryWriter.exportTriangulatedSurface(TriangulatedSurface triangSurface)
Exporting a triangulated surface via the XMLStreamWriter given when the class was constructed |
void |
GMLGeometryWriter.exportTriangulatedSurface(TriangulatedSurface triangSurface)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |