Uses of Class
org.deegree.cs.exceptions.TransformationException

Packages that use TransformationException
org.deegree.coverage.raster Provides for simple and complex raster (grid coverages). 
org.deegree.coverage.raster.utils   
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.persistence   
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.sql.blob   
org.deegree.filter.xml   
org.deegree.geometry   
org.deegree.geometry.utils   
org.deegree.gml   
org.deegree.gml.feature   
org.deegree.gml.geometry   
org.deegree.protocol.wfs.client   
org.deegree.protocol.wfs.getfeature   
org.deegree.protocol.wfs.getgmlobject   
org.deegree.services.wps.provider.sextante   
org.deegree.tools.coverage.rtb   
org.deegree.tools.crs   
org.deegree.tools.crs.georeferencing.application.transformation   
org.deegree.wps.jts   
 

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.coverage.raster.utils
 

Methods in org.deegree.coverage.raster.utils that throw TransformationException
static AbstractRaster CoverageTransform.transform(AbstractRaster raster, Envelope env, Grid grid, String interpolation)
          Returns a subset of the raster, transformed into to SRS of the target envelope.
 

Uses of TransformationException in org.deegree.cs
 

Methods in org.deegree.cs that throw TransformationException
protected  Transformation Transformer.createCRSTransformation(ICRS 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(ICRS sourceCRS, 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(String sourceCRS)
          Creates a transformation chain, which can be used to transform incoming coordinates (in the given source CRS) into this Transformer's targetCRS.
 double[] CoordinateTransformer.transform(ICRS sourceCRS, double[] input, double[] out)
          Transforms a given coordinate into the CoordinateTransformer's coordinate system.
 List<javax.vecmath.Point3d> CoordinateTransformer.transform(ICRS sourceCRS, List<javax.vecmath.Point3d> points)
          Transforms all points to the CoordinateTransformer's coordinate system.
 

Uses of TransformationException in org.deegree.cs.persistence
 

Methods in org.deegree.cs.persistence that throw TransformationException
static Transformation CRSManager.getTransformation(String storeId, ICRS sourceCRS, ICRS targetCRS)
          Retrieve a Transformation (chain) which transforms coordinates from the given source into the given target crs.
static Transformation CRSManager.getTransformation(String storeId, ICRS sourceCRS, ICRS targetCRS, List<Transformation> transformationsToBeUsed)
          Retrieve a Transformation (chain) which transforms coordinates from the given source into the given target crs.
 

Uses of TransformationException in org.deegree.cs.transformations
 

Methods in org.deegree.cs.transformations that throw TransformationException
 Transformation TransformationFactory.createFromCoordinateSystems(ICRS sourceCRS, ICRS targetCRS)
          Creates a transformation between two coordinate systems.
 Transformation TransformationFactory.createFromCoordinateSystems(ICRS sourceCRS, ICRS targetCRS, 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 and calls the Transformation.doTransform(List).
 List<javax.vecmath.Point3d> AxisFlipTransformation.doTransform(List<javax.vecmath.Point3d> srcPts)
           
abstract  List<javax.vecmath.Point3d> Transformation.doTransform(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(ICRS sourceCRS, ICRS 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(ICRS sourceCRS, ICRS targetCRS, Matrix matrix)
          Creates a Matrix transform from a matrix.
 List<javax.vecmath.Point3d> DirectTransform.doTransform(List<javax.vecmath.Point3d> srcPts)
           
 List<javax.vecmath.Point3d> NotSupportedTransformation.doTransform(List<javax.vecmath.Point3d> srcPts)
           
 List<javax.vecmath.Point3d> ConcatenatedTransform.doTransform(List<javax.vecmath.Point3d> srcPts)
           
 List<javax.vecmath.Point3d> IdentityTransform.doTransform(List<javax.vecmath.Point3d> srcPts)
           
 List<javax.vecmath.Point3d> ProjectionTransform.doTransform(List<javax.vecmath.Point3d> srcPts)
           
 

Uses of TransformationException in org.deegree.cs.transformations.helmert
 

Methods in org.deegree.cs.transformations.helmert that throw TransformationException
 List<javax.vecmath.Point3d> Helmert.doTransform(List<javax.vecmath.Point3d> srcPts)
           
 

Uses of TransformationException in org.deegree.cs.transformations.ntv2
 

Methods in org.deegree.cs.transformations.ntv2 that throw TransformationException
 List<javax.vecmath.Point3d> NTv2Transformation.doTransform(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  List<javax.vecmath.Point3d> PolynomialTransformation.applyPolynomial(List<javax.vecmath.Point3d> srcPoints)
          The central method, which actually transforms the points by applying the implemented polynomial.
 List<javax.vecmath.Point3d> LeastSquareApproximation.applyPolynomial(List<javax.vecmath.Point3d> srcPts)
           
 List<javax.vecmath.Point3d> PolynomialTransformation.doTransform(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(IGeographicCRS sourceCRS, IGeographicCRS targetCRS)
           
static Matrix Matrix.swapAxis(ICRS sourceCRS, ICRS targetCRS)
           
static Matrix Matrix.toStdValues(ICRS sourceCRS, boolean invert)
          Creates a matrix, with which incoming values will be transformed to a standardized form.
static Transformation MappingUtils.updateFromDefinedTransformations(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.sql.blob
 

Methods in org.deegree.feature.persistence.sql.blob that throw TransformationException
 void BlobCodec.encode(GMLObject object, Map<String,String> nsContext, OutputStream os, ICRS crs)
          Encodes the given GMLObject to the specified output stream.
 

Uses of TransformationException in org.deegree.filter.xml
 

Methods in org.deegree.filter.xml that throw TransformationException
static void Filter110XMLEncoder.export(Filter filter, XMLStreamWriter writer)
          Serializes the given Filter object to XML.
 

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, String sourceCRS)
          transforms the coordinates of a deegree geometry to the target coordinate reference system.
<T extends Geometry>
T
GeometryTransformer.transform(T geo)
          transforms the coordinates of a deegree geometry to the target coordinate reference system.
<T extends Geometry>
T
GeometryTransformer.transform(T geo, ICRS sourceCRS)
          transforms the coordinates of a deegree geometry to the target coordinate reference system.
<T extends Geometry>
T
GeometryTransformer.transform(T geom, ICRS sourceCRS, boolean testValidArea, 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, ICRS 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(XMLStreamReader reader, XMLStreamWriter writer, GMLVersion gmlVersion)
          Transforms the given input stream, and streams the input into the output directly.
 void XMLTransformer.transform(XMLStreamReader reader, XMLStreamWriter writer, ICRS sourceCRS, GMLVersion gmlVersion, boolean testValidArea, List<Transformation> requestedTransformation)
          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)
          Exports the given Feature (or FeatureCollection).
 void GMLFeatureWriter.export(FeatureCollection fc, String noNamespaceSchemaLocation, Map<String,String> bindings)
          TODO merge with other schema location possibilities
 void GMLFeatureWriter.export(Feature feature, int level)
           
 void GMLFeatureWriter.export(TypedObjectNode node, int currentLevel, int maxInlineLevels)
           
 

Uses of TransformationException in org.deegree.gml.geometry
 

Methods in org.deegree.gml.geometry that throw TransformationException
 void GML2GeometryWriter.export(Geometry geometry)
           
 void GMLGeometryWriter.export(Geometry geometry)
          Exports a general geometry.
 void GML3GeometryWriter.export(Geometry geometry)
          Exporting a geometry via the XMLStreamWriter given when the class was constructed
 void GMLGeometryWriter.exportCompositeCurve(CompositeCurve compositeCurve)
           
 void GML3GeometryWriter.exportCompositeCurve(CompositeCurve compositeCurve)
          Exporting a composite curve via the XMLStreamWriter given when the class was constructed
 void GMLGeometryWriter.exportCompositeGeometry(CompositeGeometry<GeometricPrimitive> geometryComplex)
           
 void GML3GeometryWriter.exportCompositeGeometry(CompositeGeometry<GeometricPrimitive> geometryComplex)
          Exporting a composite geometry via the XMLStreamWriter given when the class was constructed
 void GMLGeometryWriter.exportCompositeSolid(CompositeSolid compositeSolid)
           
 void GML3GeometryWriter.exportCompositeSolid(CompositeSolid compositeSolid)
          Exporting a composite solid via the XMLStreamWriter given when the class was constructed
 void GMLGeometryWriter.exportCompositeSurface(CompositeSurface compositeSurface)
           
 void GML3GeometryWriter.exportCompositeSurface(CompositeSurface compositeSurface)
          Exporting a composite surface via the XMLStreamWriter given when the class was constructed
 void GML2GeometryWriter.exportCurve(Curve curve)
           
 void GMLGeometryWriter.exportCurve(Curve curve)
           
 void GML3GeometryWriter.exportCurve(Curve curve)
          Exporting a curve via the XMLStreamWriter given when the class was constructed
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 GMLGeometryWriter.exportEnvelope(Envelope envelope)
           
 void GML3GeometryWriter.exportEnvelope(Envelope envelope)
          Exporting an Envelope via the XMLStreamWriter given when the class was constructed
 void GML2GeometryWriter.exportLinearRing(Ring linearRing)
           
 void GML2GeometryWriter.exportLineString(Curve curve)
           
 void GML2GeometryWriter.exportMultiGeometry(MultiGeometry<? extends Geometry> multiGeometry)
           
 void GMLGeometryWriter.exportMultiGeometry(MultiGeometry<? extends Geometry> geometry)
           
 void GML3GeometryWriter.exportMultiGeometry(MultiGeometry<? extends Geometry> geometry)
          Exporting a multi-geometry via the XMLStreamWriter given when the class was constructed
 void GML2GeometryWriter.exportMultiLineString(MultiCurve<Curve> multiCurve)
           
 void GML2GeometryWriter.exportMultiLineString(MultiLineString multiLineString)
           
 void GML2GeometryWriter.exportMultiPoint(MultiPoint multiPoint)
           
 void GML2GeometryWriter.exportMultiPolygon(MultiPolygon multiPolygon)
           
 void GML2GeometryWriter.exportMultiPolygon(MultiSurface<Surface> multiSurface)
           
 void GML2GeometryWriter.exportPoint(Point point)
           
 void GMLGeometryWriter.exportPoint(Point point)
           
 void GML3GeometryWriter.exportPoint(Point point)
          Exporting a point via the XMLStreamWriter given when the class was constructed
 void GML2GeometryWriter.exportPolygon(Polygon polygon)
           
 void GMLGeometryWriter.exportReference(GeometryReference<Geometry> geometryRef)
           
 void GML3GeometryWriter.exportReference(GeometryReference<Geometry> geometryRef)
           
 void GML2GeometryWriter.exportRing(Ring ring)
           
 void GMLGeometryWriter.exportRing(Ring ring)
           
 void GML3GeometryWriter.exportRing(Ring ring)
          Exporting a ring via the XMLStreamWriter given when the class was constructed
 void GMLGeometryWriter.exportSolid(Solid solid)
           
 void GML3GeometryWriter.exportSolid(Solid solid)
          Exporting a solid via the XMLStreamWriter given when the class was constructed
 void GML2GeometryWriter.exportSurface(Surface surface)
           
 void GMLGeometryWriter.exportSurface(Surface surface)
           
 void GML3GeometryWriter.exportSurface(Surface surface)
          Exporting a surface via the XMLStreamWriter given when the class was constructed
protected  void GML3GeometryWriter.exportSurfacePatch(SurfacePatch surfacePatch)
          Exporting a SurfacePatch via the XMLStreamWriter given when the class was constructed
 void GMLGeometryWriter.exportTin(Tin tin)
           
 void GML3GeometryWriter.exportTin(Tin tin)
          Exporting a tin via the XMLStreamWriter given when the class was constructed
 void GMLGeometryWriter.exportTriangulatedSurface(TriangulatedSurface triangSurface)
           
 void GML3GeometryWriter.exportTriangulatedSurface(TriangulatedSurface triangSurface)
          Exporting a triangulated surface via the XMLStreamWriter given when the class was constructed
 

Uses of TransformationException in org.deegree.protocol.wfs.client
 

Methods in org.deegree.protocol.wfs.client that throw TransformationException
 GetFeatureResponse<Feature> WFSClient.getFeatures(QName ftName, Filter filter)
          Queries features of the specified feature type and with an optional filter.
 

Uses of TransformationException in org.deegree.protocol.wfs.getfeature
 

Methods in org.deegree.protocol.wfs.getfeature that throw TransformationException
static void GetFeature110XMLEncoder.export(GetFeature getFeature, NamespaceBindings namespaceBindings, XMLStreamWriter writer)
          Serializes a GetFeature-object for WFS 1.1.0 GetFeature-requests
 

Uses of TransformationException in org.deegree.protocol.wfs.getgmlobject
 

Methods in org.deegree.protocol.wfs.getgmlobject that throw TransformationException
static void GetGmlObject110XMLEncoder.export(GetGmlObject getGmlObject, XMLStreamWriter writer)
          Serializes a GetGmlObject-object for WFS 1.1.0 GetGmlObject-requests
 

Uses of TransformationException in org.deegree.services.wps.provider.sextante
 

Methods in org.deegree.services.wps.provider.sextante that throw TransformationException
 void SextanteFeatureCollectionStreamWriter.writeFeature(Feature f)
          Writes a Feature into a FeatureCollection on stream.
 

Uses of TransformationException in org.deegree.tools.coverage.rtb
 

Methods in org.deegree.tools.coverage.rtb that throw TransformationException
 void RasterTreeBuilder.buildRasterTree(AbstractRaster srcRaster, int numOfLevels)
          Builds a raster tree for the input files-
 

Uses of TransformationException in org.deegree.tools.crs
 

Methods in org.deegree.tools.crs that throw TransformationException
 void CoordinateTransform.doTransform(double[] coordinate, boolean withInverse)
          This method transforms the given coordinate (in the sourceCRS) into a coordinate of the targetCRS and back.
 

Uses of TransformationException in org.deegree.tools.crs.georeferencing.application.transformation
 

Methods in org.deegree.tools.crs.georeferencing.application.transformation that throw TransformationException
 List<javax.vecmath.Point3d> AffineTransformation.doTransform(List<javax.vecmath.Point3d> srcPts)
           
 List<javax.vecmath.Point3d> Polynomial.doTransform(List<javax.vecmath.Point3d> srcPts)
           
 List<javax.vecmath.Point3d> Helmert4Transform.doTransform(List<javax.vecmath.Point3d> srcPts)
           
 

Uses of TransformationException in org.deegree.wps.jts
 

Methods in org.deegree.wps.jts that throw TransformationException
 void XMLGeometryProcessor.process(GMLStreamReader gmlReader, GMLStreamWriter gmlWriter)
          Reads the input stream and applies the processing operation by writing to the output stream
 



Copyright © 2011. All Rights Reserved.