Uses of Class
org.deegree.cs.CRSIdentifiable

Packages that use CRSIdentifiable
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.persistence.gml   
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.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 CRSIdentifiable in org.deegree.cs.components
 

Subclasses of CRSIdentifiable in org.deegree.cs.components
 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.
 

Uses of CRSIdentifiable in org.deegree.cs.coordinatesystems
 

Subclasses of CRSIdentifiable in org.deegree.cs.coordinatesystems
 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.
 

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

Methods in org.deegree.cs.persistence.gml that return CRSIdentifiable
 CRSIdentifiable GMLCRSStore.parseIdentifiedObject(org.apache.axiom.om.OMElement rootElement)
           
 

Methods in org.deegree.cs.persistence.gml that return types with arguments of type CRSIdentifiable
protected  Pair<CRSIdentifiable,Object> GMLCRSStore.parseParameterValue(org.apache.axiom.om.OMElement rootElement)
           
protected  List<Pair<CRSIdentifiable,Object>> GMLCRSStore.parseParameterValues(org.apache.axiom.om.OMElement rootElement)
           
 

Method parameters in org.deegree.cs.persistence.gml with type arguments of type CRSIdentifiable
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 CRSIdentifiable in org.deegree.cs.projections
 

Subclasses of CRSIdentifiable in org.deegree.cs.projections
 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.
 

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

Subclasses of CRSIdentifiable in org.deegree.cs.projections.azimuthal
 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 CRSIdentifiable
LambertAzimuthalEqualArea(double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, CRSIdentifiable id)
           
StereographicAzimuthal(double trueScaleLatitude, double falseNorthing, double falseEasting, javax.vecmath.Point2d naturalOrigin, IUnit units, CRSIdentifiable id)
          Create a StereographicAzimuthal which has a scale of 1 and a true scale latitude,
 

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

Subclasses of CRSIdentifiable in org.deegree.cs.projections.conic
 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.
 

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

Subclasses of CRSIdentifiable in org.deegree.cs.projections.cylindric
 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.
 

Uses of CRSIdentifiable in org.deegree.cs.transformations
 

Subclasses of CRSIdentifiable in org.deegree.cs.transformations
 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.
 

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

Subclasses of CRSIdentifiable in org.deegree.cs.transformations.coordinate
 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.
 

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

Subclasses of CRSIdentifiable in org.deegree.cs.transformations.helmert
 class Helmert
          Parameters for a geographic transformation into another datum.
 

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

Subclasses of CRSIdentifiable in org.deegree.cs.transformations.ntv2
 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.
 

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

Subclasses of CRSIdentifiable in org.deegree.cs.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 CRSIdentifiable in org.deegree.tools.crs.georeferencing.application.transformation
 

Subclasses of CRSIdentifiable in org.deegree.tools.crs.georeferencing.application.transformation
 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.
 

Methods in org.deegree.tools.crs.georeferencing.application.transformation that return CRSIdentifiable
 CRSIdentifiable AbstractTransformation.getIdentifiable()
           
 



Copyright © 2011. All Rights Reserved.