Uses of Interface
org.deegree.cs.CRSResource

Packages that use CRSResource
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.components The components package holds the shared components used by coordinatesystems, projections and transformations. 
org.deegree.cs.coordinatesystems The ICoordinateSystems package holds the different ICoordinateSystems used by the org.deegree.cs packages. 
org.deegree.cs.io.deegree   
org.deegree.cs.persistence   
org.deegree.cs.persistence.deegree.d3   
org.deegree.cs.persistence.deegree.d3.parsers   
org.deegree.cs.persistence.deegree.db   
org.deegree.cs.persistence.gml   
org.deegree.cs.persistence.proj4   
org.deegree.cs.projections A map projection create a 2D view of the 3D-Object 'earth', by doing so, some information is inevitably lost. 
org.deegree.cs.projections.azimuthal Azimuthal projections use a plane to project the earth onto. 
org.deegree.cs.projections.conic Conic projections use a cone (hence it's name) to project a region of the earth. 
org.deegree.cs.projections.cylindric Cylindrical projections use a cylinder (may it be oblique or not) to create projection of a region of the earth. 
org.deegree.cs.refs   
org.deegree.cs.refs.components   
org.deegree.cs.refs.coordinatesystem   
org.deegree.cs.refs.projections   
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.tools.crs.georeferencing.application.transformation   
 

Uses of CRSResource in org.deegree.cs
 

Classes in org.deegree.cs that implement CRSResource
 class CRSIdentifiable
          The CRSIdentifiable class can be used to identify Coordinate system components.
 

Constructors in org.deegree.cs with parameters of type CRSResource
CRSIdentifiable(CRSResource other)
          Takes the references of the other object and stores them in this CRSIdentifiable Object.
 

Uses of CRSResource in org.deegree.cs.components
 

Subinterfaces of CRSResource in org.deegree.cs.components
 interface IAxis
          Interface describing Axis
 interface IDatum
          Interface describing general Datum
 interface IEllipsoid
          Interface describing a Ellipsoid
 interface IGeodeticDatum
          Interface describing a GeodeticDatum
 interface IPrimeMeridian
          Interface describing a PrimeMeridian
 interface IUnit
          Interface describing a Unit
 interface IVerticalDatum
          Interface describing a VerticalDatum
 

Classes in org.deegree.cs.components that implement CRSResource
 class Axis
          The Axis class describe the orientation, unit and the name of a crs-axis.
 class Datum
          The Datum is a generic type for all datums.
 class Ellipsoid
          The Ellipsoid class hold all parameters which are necessary to define an Ellipsoid.
 class GeodeticDatum
          A GeodeticDatum (aka.
 class PrimeMeridian
          The PrimeMeridian class saves the longitude to the greenwich meridian.
 class Unit
          The Unit class defines a mechanism to convert between different measurements units, such as british_yard and meter.
 class VerticalDatum
          A VerticalDatum is a datum which only has one axis.
 

Constructors in org.deegree.cs.components with parameters of type CRSResource
Datum(CRSResource id)
           
Ellipsoid(double semiMajorAxis, double eccentricity, IUnit units, CRSResource id)
           
Ellipsoid(double semiMajorAxis, IUnit units, double inverseFlattening, CRSResource id)
           
Ellipsoid(IUnit units, double semiMajorAxis, double semiMinorAxis, CRSResource id)
           
GeodeticDatum(IEllipsoid ellipsoid, IPrimeMeridian primeMeridian, CRSResource id)
           
GeodeticDatum(IEllipsoid ellipsoid, IPrimeMeridian primeMeridian, Helmert toWGS84, CRSResource id)
           
PrimeMeridian(IUnit units, double longitude, CRSResource id)
           
VerticalDatum(CRSResource id)
           
 

Uses of CRSResource in org.deegree.cs.coordinatesystems
 

Subinterfaces of CRSResource in org.deegree.cs.coordinatesystems
 interface ICompoundCRS
          Interface describing a CompundCRS
 interface ICRS
          Interface describing a general CoordinateSytem
 interface IGeocentricCRS
          Interface describing a GeocentricCRS
 interface IGeographicCRS
          Interface describing a GeographicCRS
 interface IProjectedCRS
          Interface describing a ProjectedCRS
 interface IVerticalCRS
          Interface describing a VerticalCRS
 

Classes in org.deegree.cs.coordinatesystems that implement CRSResource
 class CompoundCRS
          A CompoundCRS is a GeographicCRS with a third axis (the height axis) attached.
 class CRS
          Three kinds of CoordinateSystems (in this class abbreviated with CRS) are supported in this lib.
 class GeocentricCRS
          A GeocentricCRS is a ICoordinateSystem having three axis and a mass point defined to be equivalent to earths center.
 class GeographicCRS
          The GeographicCoordinateSystem (in epsg aka Geodetic CRS) is a two dimensional crs with axis of lat-lon.
 class ProjectedCRS
          A ProjectedCRS is a coordinatesystem defined with a projection and a geographic crs.
 class VerticalCRS
          The VerticalCRS represents a crs based on one axis only, typically this crs is used as an extension on an already present crs, and adds a 'heightaxis' to the original crs.
 

Constructors in org.deegree.cs.coordinatesystems with parameters of type CRSResource
CompoundCRS(IAxis heightAxis, ICRS underlyingCRS, double defaultHeight, CRSResource identity)
           
CRS(IDatum datum, IAxis[] axisOrder, CRSResource identity)
           
CRS(List<Transformation> transformations, IDatum datum, IAxis[] axisOrder, CRSResource identity)
           
GeocentricCRS(IGeodeticDatum datum, IAxis[] axisOrder, CRSResource identity)
           
GeocentricCRS(List<Transformation> transformations, IGeodeticDatum usedDatum, IAxis[] axisOrder, CRSResource identity)
           
GeographicCRS(IGeodeticDatum datum, IAxis[] axisOrder, CRSResource identity)
           
GeographicCRS(List<Transformation> transformations, IGeodeticDatum usedDatum, IAxis[] axisOrder, CRSResource id)
           
ProjectedCRS(IProjection projection, IGeographicCRS geographicCRS, IAxis[] axisOrder, CRSResource identity)
           
ProjectedCRS(List<Transformation> transformations, IGeographicCRS geographicCRS, IProjection projection, IAxis[] axisOrder, CRSResource identity)
           
VerticalCRS(IVerticalDatum datum, IAxis[] axisOrder, CRSResource identity)
           
 

Uses of CRSResource in org.deegree.cs.io.deegree
 

Methods in org.deegree.cs.io.deegree with parameters of type CRSResource
protected  void CRSExporterBase.exportIdentifiable(CRSResource identifiable, XMLStreamWriter xmlWriter)
          Creates the basic nodes of the identifiable object.
protected  void CRSExporter.exportIdentifiable(CRSResource identifiable, XMLStreamWriter xmlWriter)
          Creates the basic nodes of the identifiable object.
 

Uses of CRSResource in org.deegree.cs.persistence
 

Methods in org.deegree.cs.persistence with type parameters of type CRSResource
<V extends CRSResource>
V
AbstractCRSStore.addIdToCache(V resource, boolean update)
          Add the id to the cache, by mapping it to all its identifiers.
<V extends CRSResource>
V
AbstractCRSStore.getCachedIdentifiable(Class<V> expectedType, CRSCodeType[] ids)
          Get a CRSIdentifiable (actually a type V that extends it) from the cache that corresponds to the a CRSCodeType.
<V extends CRSResource>
V
AbstractCRSStore.getCachedIdentifiable(Class<V> expectedType, CRSResource ids)
          The id are what they are, not trimming 'upcasing' or other modifications will be done in this method.
<V extends CRSResource>
V
AbstractCRSStore.getCachedIdentifiable(Class<V> expectedType, String id)
          The id is as it is, not trimming 'upcasing' or other modifications will be done in this method.
<V extends CRSResource>
V
AbstractCRSStore.getCachedIdentifiable(Class<V> expectedType, String[] ids)
          The id are what they are, not trimming 'upcasing' or other modifications will be done in this method.
<V extends CRSResource>
V
AbstractCRSStore.getCachedIdentifiable(CRSCodeType id)
          Get a CRSIdentifiable (actually a type V that extends it) from the cache that corresponds to the a CRSCodeType.
<V extends CRSResource>
V
AbstractCRSStore.getCachedIdentifiable(String id)
          The id is as it is, not trimming 'upcasing' or other modifications will be done in this method.
 

Methods in org.deegree.cs.persistence that return CRSResource
 CRSResource CRSStore.getCRSResource(CRSCodeType id)
          This method is more general than the CRSStore.getCRSByCode(CRSCodeType), because it represents a possibility to return an arbitrary CRSResource Object from the providers backend.
 

Methods in org.deegree.cs.persistence with parameters of type CRSResource
<V extends CRSResource>
V
AbstractCRSStore.getCachedIdentifiable(Class<V> expectedType, CRSResource ids)
          The id are what they are, not trimming 'upcasing' or other modifications will be done in this method.
 

Uses of CRSResource in org.deegree.cs.persistence.deegree.d3
 

Methods in org.deegree.cs.persistence.deegree.d3 that return CRSResource
 CRSResource DeegreeCRSStore.getCRSResource(CRSCodeType id)
           
 CRSResource DeegreeCRSStore.getCRSResource(String id, AbstractCRSStore.RESOURCETYPE resourceType)
          Returns an CRSResource with the given ID and from the given RESOURCETYPE.
 CRSResource CRSParser.parseIdentifiableObject(String id)
          Gets the Element for the given id and heuristically check the localname of the resulting root Element.
 

Uses of CRSResource in org.deegree.cs.persistence.deegree.d3.parsers
 

Methods in org.deegree.cs.persistence.deegree.d3.parsers that return CRSResource
protected  CRSResource DefinitionParser.parseIdentifiable(XMLStreamReader reader)
          Parses all elements of the identifiable object, it is assumed the reader is on a top level element, the next element will be an id.
 

Uses of CRSResource in org.deegree.cs.persistence.deegree.db
 

Methods in org.deegree.cs.persistence.deegree.db that return CRSResource
 CRSResource DBCRSStore.getCRSResource(CRSCodeType id)
           
 

Uses of CRSResource in org.deegree.cs.persistence.gml
 

Methods in org.deegree.cs.persistence.gml that return CRSResource
 CRSResource GMLCRSStore.getCRSResource(CRSCodeType id)
           
 

Methods in org.deegree.cs.persistence.gml with parameters of type CRSResource
protected  Helmert GMLCRSStore.createHelmert(CRSResource id, List<Pair<CRSIdentifiable,Object>> parameterValues, ICRS source, ICRS target)
          Creates a Helmert transformation from the given parameter list.
protected  NTv2Transformation GMLCRSStore.createNTv2(CRSResource id, List<Pair<CRSIdentifiable,Object>> parameterValues, ICRS source, ICRS target)
          Create an NTv2Transformation from the given parameter list.
 

Uses of CRSResource in org.deegree.cs.persistence.proj4
 

Methods in org.deegree.cs.persistence.proj4 that return CRSResource
 CRSResource PROJ4CRSStore.getCRSResource(CRSCodeType code)
           
 

Uses of CRSResource in org.deegree.cs.projections
 

Subinterfaces of CRSResource in org.deegree.cs.projections
 interface IProjection
          Interface describing a general projection
 

Classes in org.deegree.cs.projections that implement CRSResource
 class Projection
          Map conversion is the process of changing the map grid coordinates (usually, but not always, Easting & Northing) of a Projected Coordinate Reference System to its corresponding geographical coordinates (Latitude & Longitude) or vice versa.
 

Constructors in org.deegree.cs.projections with parameters of type CRSResource
Projection(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, boolean conformal, boolean equalArea, CRSResource id)
          Creates a Projection.
 

Uses of CRSResource in org.deegree.cs.projections.azimuthal
 

Subinterfaces of CRSResource in org.deegree.cs.projections.azimuthal
 interface ILambertAzimuthalEqualArea
          Interface describing a LambertAzimuthalEqualArea Projection
 interface IStereographicAlternative
          Interface describing a StereographicAlternative Projection
 interface IStereographicAzimuthal
          Interface describing a StereographicAzimuthal Projection
 

Classes in org.deegree.cs.projections.azimuthal that implement CRSResource
 class AzimuthalProjection
          The AzimuthalProjection class functions as a super class to all azimuthal projections.
 class LambertAzimuthalEqualArea
          The LambertAzimuthalEqualArea projection has following properties (From J.S.
 class StereographicAlternative
          StereographicAlternative projection may be imagined to be a projection of the earth's surface onto a plane in contact with the earth at a single tangent point from the opposite end of the diameter through that tangent point.
 class StereographicAzimuthal
          The StereographicAzimuthal class allows for Stereographic Projections of the Poles, equator as well as oblique.
 

Constructors in org.deegree.cs.projections.azimuthal with parameters of type CRSResource
AzimuthalProjection(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, boolean conformal, boolean equalArea, CRSResource id)
           
LambertAzimuthalEqualArea(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, CRSResource id)
           
StereographicAlternative(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, CRSResource id)
           
StereographicAzimuthal(double trueScaleLatitude, double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, CRSResource id)
           
StereographicAzimuthal(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, CRSResource id)
          Create a StereographicAzimuthal which is conformal, has a scale of 1 and a truescale latitude at pi*0.5.
StereographicAzimuthal(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, CRSResource id)
          Create a StereographicAzimuthal which has a true scale latitude at MapUtils.HALFPI.
 

Uses of CRSResource in org.deegree.cs.projections.conic
 

Subinterfaces of CRSResource in org.deegree.cs.projections.conic
 interface IConicProjection
          Interface describing a ConicProjection
 interface ILambertConformalConic
          Interface describing a LambertConformalConic Projection
 

Classes in org.deegree.cs.projections.conic that implement CRSResource
 class ConicProjection
          The ConicProjection is a super class for all conic projections.
 class LambertConformalConic
          The LambertConformalConic projection has following properties (Snyder p. 104) Conic Conformal Parallels are unequally spaced arcs of concentric circles, more closely spaced near the center of the map Meridians are equally spaced radii of the same circles, thereby cutting paralles at right angles.
 

Constructors in org.deegree.cs.projections.conic with parameters of type CRSResource
ConicProjection(double firstParallelLatitude, double secondParallelLatitude, double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, boolean conformal, boolean equalArea, CRSResource id)
           
LambertConformalConic(double firstParallelLatitude, double secondParallelLatitude, double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, CRSResource id)
          Creates a Lambert Conformal projection with a intersecting cone at the given parallel latitudes. and a scale of 1.
LambertConformalConic(double firstParallelLatitude, double secondParallelLatitude, double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, CRSResource id)
           
LambertConformalConic(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, CRSResource id)
          Creates a Lambert Conformal projection with a tangential cone at the naturalOrigin.y's latitude.
LambertConformalConic(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, CRSResource id)
          Creates a Lambert Conformal projection with a tangential cone at the naturalOrigin.y's latitude.
 

Uses of CRSResource in org.deegree.cs.projections.cylindric
 

Subinterfaces of CRSResource in org.deegree.cs.projections.cylindric
 interface IMercator
          Interface describing a Mercator Projection
 interface ITransverseMercator
          Interface describing a TransverseMercator Projection
 

Classes in org.deegree.cs.projections.cylindric that implement CRSResource
 class CylindricalProjection
          The CylindricalProjection is a super class for all cylindrical projections.
 class Mercator
          The Mercator projection has following properties: Cylindircal Conformal Meridians are equally spaced straight lines Parallels are unequally spaced straight lines closest near the equator, cutting meridians at right angles.
 class TransverseMercator
          The TransverseMercator projection has following properties: Cylindrical (transverse) Conformal The central meridian, each meridian 90° from central meridian and the equator are straight lines All other meridians and parallels are complex curves Scale is true along central meridian or along two straight lines equidistant from and parallel to central merdian.
 

Constructors in org.deegree.cs.projections.cylindric with parameters of type CRSResource
CylindricalProjection(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, boolean conformal, boolean equalArea, CRSResource id)
           
Mercator(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, Unit units, double scale, CRSResource id)
           
TransverseMercator(boolean northernHemisphere, double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, double scale, CRSResource id)
           
TransverseMercator(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, CRSResource id)
          A northern hemisphere conformal transverse mercator projection with a scale of one.
TransverseMercator(int zone, boolean northernHemisphere, IUnit units, CRSResource id)
          Sets the false-easting to 50000, false-northing to 0 or 10000000 (depending on the hemisphere), the projection-longitude is calculated from the zone and the projection-latitude is set to 0.
 

Uses of CRSResource in org.deegree.cs.refs
 

Classes in org.deegree.cs.refs with type parameters of type CRSResource
 class CRSResourceRef<T extends CRSResource>
          Represents a reference to a CRSResource, which is usually expressed using an xlink:href attribute in GML (may be document-local or remote).
 

Classes in org.deegree.cs.refs that implement CRSResource
 class CRSResourceRef<T extends CRSResource>
          Represents a reference to a CRSResource, which is usually expressed using an xlink:href attribute in GML (may be document-local or remote).
 

Uses of CRSResource in org.deegree.cs.refs.components
 

Classes in org.deegree.cs.refs.components that implement CRSResource
 class AxisRef
          CRSResourceRef ti a IAxis
 class DatumRef
          General CRSResourceRef to a IDatum
 class EllipsoidRef
          CRSesourceRef to a IEllipsoid
 class GeodeticDatumRef
          DatumRef to a IGeodeticDatum
 class PrimeMeridianRef
          CRSResourceRef to a IPrimeMeridian
 class UnitRef
          CRSResourceRef to a IUnit
 class VerticalDatumRef
          DatumRef to a VerticalDatum
 

Uses of CRSResource in org.deegree.cs.refs.coordinatesystem
 

Classes in org.deegree.cs.refs.coordinatesystem that implement CRSResource
 class CompoundCRSRef
          CRSRef to a CompoundCRS
 class CRSRef
          Represents a CRSRef that is not necessarily resolved or resolvable.
 class GeocentricCRSRef
          CRSRef to a GeocentricCRS
 class GeographicCRSRef
          CRSRef to a GeographicCRS
 class ProjectedCRSRef
          CRSRef to a ProjectedCRS
 class VerticalCRSRef
          CRSRef to a VerticalCRS
 

Uses of CRSResource in org.deegree.cs.refs.projections
 

Classes in org.deegree.cs.refs.projections that implement CRSResource
 class LambertAzimuthalEqualAreaRef
          ProjectionRef to a LambertAzimuthalEqualArea
 class LambertConformalConicRef
          ProjectionRef to a LambertConformalConic
 class MercatorRef
          ProjectionRef to a Mercator
 class ProjectionRef
          General CRSResourceRef referncing a Projection
 class StereographicAlternativeRef
          ProjectionRef to a StereographicAlternative
 class StereographicAzimuthalRef
          ProjectionRef to a StereographicAzimuthal
 class TransverseMercatorRef
          ProjectionRef to a TransverseMercator
 

Uses of CRSResource in org.deegree.cs.transformations
 

Classes in org.deegree.cs.transformations that implement CRSResource
 class AxisFlipTransformation
          Transformation means flipping of the first and second axis!
 class Transformation
          The Transformation class supplies the most basic method interface for any given transformation.
 

Methods in org.deegree.cs.transformations with parameters of type CRSResource
 Transformation Transformation.copyTransformation(CRSResource newId)
           
 

Constructors in org.deegree.cs.transformations with parameters of type CRSResource
AxisFlipTransformation(ICRS sourceCRS, ICRS targetCRS, CRSResource id)
           
Transformation(ICRS sourceCRS, ICRS targetCRS, CRSResource id)
           
 

Uses of CRSResource in org.deegree.cs.transformations.coordinate
 

Classes in org.deegree.cs.transformations.coordinate that implement CRSResource
 class ConcatenatedTransform
          The ConcatenatedTransform class allows the connection of two transformations.
 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 IdentityTransform
          Denote an identity transform, which does nothing.
 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.
 

Constructors in org.deegree.cs.transformations.coordinate with parameters of type CRSResource
ConcatenatedTransform(Transformation first, Transformation second, CRSResource id)
          Creates a transform by concatenating two existing transforms.
DirectTransform(PolynomialTransformation transformation, CRS sourceCRS, CRSResource id)
           
GeocentricTransform(ICRS source, IGeocentricCRS target, CRSResource id)
           
MatrixTransform(ICRS source, ICRS target, javax.vecmath.GMatrix matrix, CRSResource id)
          Construct a transform.
MatrixTransform(ICRS source, ICRS target, javax.vecmath.Matrix3d matrix, CRSResource id)
          Construct a 3d transform.
MatrixTransform(ICRS source, ICRS target, javax.vecmath.Matrix4d matrix, CRSResource id)
          Construct a 4d transform.
MatrixTransform(ICRS source, ICRS target, javax.vecmath.Matrix4d matrix, String transformationName, CRSResource id)
          Construct a 4d transform.
NotSupportedTransformation(ICRS sourceCRS, ICRS targetCRS, CRSResource id)
           
ProjectionTransform(IProjectedCRS projectedCRS, CRSResource id)
           
 

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

Classes in org.deegree.cs.transformations.helmert that implement CRSResource
 class Helmert
          Parameters for a geographic transformation into another datum.
 

Constructors in org.deegree.cs.transformations.helmert with parameters of type CRSResource
Helmert(double dx, double dy, double dz, double ex, double ey, double ez, double ppm, ICRS sourceCRS, ICRS targetCRS, CRSResource identifiable)
           
Helmert(double dx, double dy, double dz, double ex, double ey, double ez, double ppm, ICRS sourceCRS, ICRS targetCRS, CRSResource identifiable, boolean inRadians)
           
 

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

Classes in org.deegree.cs.transformations.ntv2 that implement CRSResource
 class NTv2Transformation
          An NTv2 Transformation uses a GridShift file to transform ordinates defined in a source CRS based on a given ellipsoid to ordinates in a target CRS based on another ellipsoid.
 

Constructors in org.deegree.cs.transformations.ntv2 with parameters of type CRSResource
NTv2Transformation(ICRS sourceCRS, ICRS targetCRS, CRSResource id, au.com.objectix.jgridshift.GridShiftFile gsf)
           
NTv2Transformation(ICRS sourceCRS, ICRS targetCRS, CRSResource id, URL gridURL)
           
 

Uses of CRSResource in org.deegree.cs.transformations.polynomial
 

Classes in org.deegree.cs.transformations.polynomial that implement CRSResource
 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.
 

Constructors in org.deegree.cs.transformations.polynomial with parameters of type CRSResource
LeastSquareApproximation(List<Double> firstParameters, List<Double> secondParameters, ICRS sourceCRS, ICRS targetCRS, float scaleX, float scaleY, CRSResource id)
           
PolynomialTransformation(List<Double> firstParameters, List<Double> secondParameters, ICRS sourceCRS, ICRS targetCRS, CRSResource id)
           
 

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

Classes in org.deegree.tools.crs.georeferencing.application.transformation that implement CRSResource
 class AbstractTransformation
          Abstract base class for all transformation methods.
 class AffineTransformation
          Implementation of the affine transformation with 6 parameters.
 class Helmert4Transform
          Implementation of the helmert transformation with 4 parameters.
 class Polynomial
          Implementation of the Polynomial transformation.
 



Copyright © 2011. All Rights Reserved.