|
deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CRSIdentifiable | |
---|---|
org.deegree.crs | The org.deegree.crs package contains all necessities to transform and project coordinates form one coordinates system into another. |
org.deegree.crs.components | The components package holds the shared components used by coordinatesystems, projections and transformations. |
org.deegree.crs.configuration | The org.deegree.crs.configuraton package contains the classes necessary to read crs-definitions from a specified backend ( database or xml-file). |
org.deegree.crs.configuration.deegree.db | |
org.deegree.crs.configuration.deegree.xml | |
org.deegree.crs.configuration.deegree.xml.om | |
org.deegree.crs.configuration.deegree.xml.stax | |
org.deegree.crs.configuration.deegree.xml.stax.parsers | |
org.deegree.crs.configuration.gml | |
org.deegree.crs.configuration.proj4 | |
org.deegree.crs.coordinatesystems | The coordinatesystems package holds the different coordinatesystems used by the org.deegree.crs packages. |
org.deegree.crs.projections | A map projection create a 2D view of the 3D-Object 'earth', by doing so, some information is inevitably lost. |
org.deegree.crs.projections.azimuthal | Azimuthal projections use a plane to project the earth onto. |
org.deegree.crs.projections.conic | Conic projections use a cone (hence it's name) to project a region of the earth. |
org.deegree.crs.projections.cylindric | Cylindrical projections use a cylinder (may it be oblique or not) to create projection of a region of the earth. |
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.ntv2 | |
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. |
Uses of CRSIdentifiable in org.deegree.crs |
---|
Constructors in org.deegree.crs with parameters of type CRSIdentifiable | |
---|---|
CRSIdentifiable(CRSIdentifiable other)
Takes the references of the other object and stores them in this CRSIdentifiable Object. |
Uses of CRSIdentifiable in org.deegree.crs.components |
---|
Subclasses of CRSIdentifiable in org.deegree.crs.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. |
Constructors in org.deegree.crs.components with parameters of type CRSIdentifiable | |
---|---|
Datum(CRSIdentifiable id)
|
|
Ellipsoid(double semiMajorAxis,
double eccentricity,
Unit units,
CRSIdentifiable id)
|
|
Ellipsoid(double semiMajorAxis,
Unit units,
double inverseFlattening,
CRSIdentifiable id)
|
|
Ellipsoid(Unit units,
double semiMajorAxis,
double semiMinorAxis,
CRSIdentifiable id)
|
|
GeodeticDatum(Ellipsoid ellipsoid,
PrimeMeridian primeMeridian,
CRSIdentifiable id)
|
|
GeodeticDatum(Ellipsoid ellipsoid,
PrimeMeridian primeMeridian,
Helmert toWGS84,
CRSIdentifiable id)
|
|
PrimeMeridian(Unit units,
double longitude,
CRSIdentifiable id)
|
|
VerticalDatum(CRSIdentifiable id)
|
Uses of CRSIdentifiable in org.deegree.crs.configuration |
---|
Methods in org.deegree.crs.configuration with type parameters of type CRSIdentifiable | ||
---|---|---|
|
AbstractCRSProvider.addIdToCache(V identifiable,
boolean update)
Add the id to the cache, by mapping it to all its identifiers. |
|
|
AbstractCRSProvider.getCachedIdentifiable(Class<V> expectedType,
CRSCodeType id)
Get a CRSIdentifiable (actually a type V that extends it) from the cache that corresponds to the a
CRSCodeType . |
|
|
AbstractCRSProvider.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 . |
|
|
AbstractCRSProvider.getCachedIdentifiable(Class<V> expectedType,
CRSIdentifiable ids)
The id are what they are, not trimming 'upcasing' or other modifications will be done in this method. |
|
|
AbstractCRSProvider.getCachedIdentifiable(Class<V> expectedType,
String id)
The id is as it is, not trimming 'upcasing' or other modifications will be done in this method. |
|
|
AbstractCRSProvider.getCachedIdentifiable(Class<V> expectedType,
String[] ids)
The id are what they are, not trimming 'upcasing' or other modifications will be done in this method. |
|
|
AbstractCRSProvider.getCachedIdentifiable(CRSCodeType id)
Get a CRSIdentifiable (actually a type V that extends it) from the cache that corresponds to the a
CRSCodeType . |
|
|
AbstractCRSProvider.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.crs.configuration that return CRSIdentifiable | |
---|---|
CRSIdentifiable |
CRSProvider.getIdentifiable(CRSCodeType id)
This method is more general than the CRSProvider.getCRSByCode(CRSCodeType) , because it represents a possibility to
return an arbitrary CRSIdentifiable Object from the providers backend. |
Methods in org.deegree.crs.configuration with parameters of type CRSIdentifiable | ||
---|---|---|
|
AbstractCRSProvider.getCachedIdentifiable(Class<V> expectedType,
CRSIdentifiable ids)
The id are what they are, not trimming 'upcasing' or other modifications will be done in this method. |
Uses of CRSIdentifiable in org.deegree.crs.configuration.deegree.db |
---|
Methods in org.deegree.crs.configuration.deegree.db that return CRSIdentifiable | |
---|---|
protected CRSIdentifiable |
CRSQuerier.getIdentifiable(CRSCodeType code)
Gets the Identifiable object by supplying the code as a String |
CRSIdentifiable |
DatabaseCRSProvider.getIdentifiable(CRSCodeType id)
|
protected CRSIdentifiable |
CRSQuerier.getIdentifiableAttributes(int id)
Constructs the CRSIdentifiable object that stands at the core of every CRS object. |
Methods in org.deegree.crs.configuration.deegree.db with parameters of type CRSIdentifiable | |
---|---|
protected void |
CRSDBExporter.exportIdentifiableProperties(CRSIdentifiable crsObject)
Insert into the database the core Identifiable properties of an object |
(package private) int |
CRSRemover.getInternalID(CRSIdentifiable identifiable)
Determines the database internal ID of the provided CRSIdentifiable object based on the
CRSCodeType that it has |
protected int |
CRSQuerier.getInternalID(CRSIdentifiable identifiable)
Method currently used by the EPSGDatabaseSynchronizer to get the internal ID for projections. |
int |
DatabaseCRSProvider.getInternalID(CRSIdentifiable identifiable)
Retrieve the internal database ID for the object supplied |
Uses of CRSIdentifiable in org.deegree.crs.configuration.deegree.xml |
---|
Methods in org.deegree.crs.configuration.deegree.xml that return CRSIdentifiable | |
---|---|
CRSIdentifiable |
DeegreeCRSProvider.getIdentifiable(CRSCodeType id)
|
CRSIdentifiable |
CRSParser.parseIdentifiableObject(String id)
Gets the Element for the given id and heuristically check the localname of the resulting root Element. |
Methods in org.deegree.crs.configuration.deegree.xml with parameters of type CRSIdentifiable | |
---|---|
int |
CRSExporter_0_4_0.IdComparer.compare(CRSIdentifiable o1,
CRSIdentifiable o2)
|
protected void |
CRSExporter.exportIdentifiable(CRSIdentifiable identifiable,
XMLStreamWriter xmlWriter)
Creates the basic nodes of the identifiable object. |
protected void |
CRSExporter_0_4_0.exportIdentifiable(CRSIdentifiable identifiable,
XMLStreamWriter xmlWriter)
Creates the basic nodes of the identifiable object. |
Uses of CRSIdentifiable in org.deegree.crs.configuration.deegree.xml.om |
---|
Methods in org.deegree.crs.configuration.deegree.xml.om that return CRSIdentifiable | |
---|---|
protected CRSIdentifiable |
Parser.parseIdentifiable(org.apache.axiom.om.OMElement element)
Parses all elements of the identifiable object. |
CRSIdentifiable |
Parser.parseIdentifiableObject(String id)
Gets the Element for the given id and heuristically check the localname of the resulting root Element. |
Uses of CRSIdentifiable in org.deegree.crs.configuration.deegree.xml.stax |
---|
Methods in org.deegree.crs.configuration.deegree.xml.stax that return CRSIdentifiable | |
---|---|
CRSIdentifiable |
Parser.parseIdentifiableObject(String id)
|
Uses of CRSIdentifiable in org.deegree.crs.configuration.deegree.xml.stax.parsers |
---|
Methods in org.deegree.crs.configuration.deegree.xml.stax.parsers that return CRSIdentifiable | |
---|---|
protected CRSIdentifiable |
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 CRSIdentifiable in org.deegree.crs.configuration.gml |
---|
Methods in org.deegree.crs.configuration.gml that return CRSIdentifiable | |
---|---|
CRSIdentifiable |
GMLCRSProvider.getIdentifiable(CRSCodeType id)
|
protected CRSIdentifiable |
GMLCRSProvider.parseIdentifiedObject(org.apache.axiom.om.OMElement rootElement)
|
Methods in org.deegree.crs.configuration.gml that return types with arguments of type CRSIdentifiable | |
---|---|
protected Pair<CRSIdentifiable,Pair<Unit,Double>> |
GMLCRSProvider.parseParameterValue(org.apache.axiom.om.OMElement rootElement)
|
protected List<Pair<CRSIdentifiable,Pair<Unit,Double>>> |
GMLCRSProvider.parseParameterValues(org.apache.axiom.om.OMElement rootElement)
|
Uses of CRSIdentifiable in org.deegree.crs.configuration.proj4 |
---|
Methods in org.deegree.crs.configuration.proj4 that return CRSIdentifiable | |
---|---|
CRSIdentifiable |
PROJ4CRSProvider.getIdentifiable(CRSCodeType code)
|
Uses of CRSIdentifiable in org.deegree.crs.coordinatesystems |
---|
Subclasses of CRSIdentifiable in org.deegree.crs.coordinatesystems | |
---|---|
class |
CompoundCRS
A CompoundCRS is a GeographicCRS with a third axis (the height axis) attached. |
class |
CoordinateSystem
Three kinds of CoordinateSystem s (in this class abbreviated with CRS) are supported in this lib. |
class |
GeocentricCRS
A GeocentricCRS is a coordinatesystem 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.crs.projections |
---|
Subclasses of CRSIdentifiable in org.deegree.crs.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. |
Constructors in org.deegree.crs.projections with parameters of type CRSIdentifiable | |
---|---|
Projection(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
boolean conformal,
boolean equalArea,
CRSIdentifiable id)
Creates a Projection. |
Uses of CRSIdentifiable in org.deegree.crs.projections.azimuthal |
---|
Subclasses of CRSIdentifiable in org.deegree.crs.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.crs.projections.azimuthal with parameters of type CRSIdentifiable | |
---|---|
AzimuthalProjection(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
boolean conformal,
boolean equalArea,
CRSIdentifiable id)
|
|
LambertAzimuthalEqualArea(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
CRSIdentifiable id)
|
|
LambertAzimuthalEqualArea(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
CRSIdentifiable id)
|
|
StereographicAlternative(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
CRSIdentifiable id)
|
|
StereographicAzimuthal(double trueScaleLatitude,
GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
CRSIdentifiable id)
Create a StereographicAzimuthal which has a scale of 1 and a true scale latitude, |
|
StereographicAzimuthal(double trueScaleLatitude,
GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
CRSIdentifiable id)
|
|
StereographicAzimuthal(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
CRSIdentifiable id)
Create a StereographicAzimuthal which is conformal, has a scale of 1 and a truescale latitude at pi*0.5. |
|
StereographicAzimuthal(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
CRSIdentifiable id)
Create a StereographicAzimuthal which has a true scale latitude at MapUtils.HALFPI. |
Uses of CRSIdentifiable in org.deegree.crs.projections.conic |
---|
Subclasses of CRSIdentifiable in org.deegree.crs.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. |
Constructors in org.deegree.crs.projections.conic with parameters of type CRSIdentifiable | |
---|---|
ConicProjection(double firstParallelLatitude,
double secondParallelLatitude,
GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
boolean conformal,
boolean equalArea,
CRSIdentifiable id)
|
|
LambertConformalConic(double firstParallelLatitude,
double secondParallelLatitude,
GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
CRSIdentifiable 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,
GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
CRSIdentifiable id)
|
|
LambertConformalConic(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
CRSIdentifiable id)
Creates a Lambert Conformal projection with a tangential cone at the naturalOrigin.y's latitude. |
|
LambertConformalConic(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
CRSIdentifiable id)
Creates a Lambert Conformal projection with a tangential cone at the naturalOrigin.y's latitude. |
Uses of CRSIdentifiable in org.deegree.crs.projections.cylindric |
---|
Subclasses of CRSIdentifiable in org.deegree.crs.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. |
Constructors in org.deegree.crs.projections.cylindric with parameters of type CRSIdentifiable | |
---|---|
CylindricalProjection(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
boolean conformal,
boolean equalArea,
CRSIdentifiable id)
|
|
Mercator(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
CRSIdentifiable id)
|
|
TransverseMercator(boolean northernHemisphere,
GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
double scale,
CRSIdentifiable id)
|
|
TransverseMercator(GeographicCRS geographicCRS,
double falseNorthing,
double falseEasting,
javax.vecmath.Point2d naturalOrigin,
Unit units,
CRSIdentifiable id)
A northern hemisphere conformal transverse mercator projection with a scale of one. |
|
TransverseMercator(int zone,
boolean northernHemisphere,
GeographicCRS geographicCRS,
Unit units,
CRSIdentifiable 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 CRSIdentifiable in org.deegree.crs.transformations |
---|
Subclasses of CRSIdentifiable in org.deegree.crs.transformations | |
---|---|
class |
Transformation
The Transformation class supplies the most basic method interface for any given transformation. |
Constructors in org.deegree.crs.transformations with parameters of type CRSIdentifiable | |
---|---|
Transformation(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS,
CRSIdentifiable id)
|
Uses of CRSIdentifiable in org.deegree.crs.transformations.coordinate |
---|
Subclasses of CRSIdentifiable 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. |
Uses of CRSIdentifiable in org.deegree.crs.transformations.helmert |
---|
Subclasses of CRSIdentifiable in org.deegree.crs.transformations.helmert | |
---|---|
class |
Helmert
Parameters for a geographic transformation into another datum. |
Constructors in org.deegree.crs.transformations.helmert with parameters of type CRSIdentifiable | |
---|---|
Helmert(double dx,
double dy,
double dz,
double ex,
double ey,
double ez,
double ppm,
CoordinateSystem sourceCRS,
CoordinateSystem targetCRS,
CRSIdentifiable identifiable)
|
|
Helmert(double dx,
double dy,
double dz,
double ex,
double ey,
double ez,
double ppm,
CoordinateSystem sourceCRS,
CoordinateSystem targetCRS,
CRSIdentifiable identifiable,
boolean inRadians)
|
Uses of CRSIdentifiable in org.deegree.crs.transformations.ntv2 |
---|
Subclasses of CRSIdentifiable in org.deegree.crs.transformations.ntv2 | |
---|---|
class |
NTv2Transformation
The NTv2Transformation class TODO add class documentation here. |
Constructors in org.deegree.crs.transformations.ntv2 with parameters of type CRSIdentifiable | |
---|---|
NTv2Transformation(CoordinateSystem sourceCRS,
CoordinateSystem targetCRS,
CRSIdentifiable id,
URL gridURL)
|
Uses of CRSIdentifiable in org.deegree.crs.transformations.polynomial |
---|
Subclasses of CRSIdentifiable 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. |
Constructors in org.deegree.crs.transformations.polynomial with parameters of type CRSIdentifiable | |
---|---|
LeastSquareApproximation(List<Double> firstParameters,
List<Double> secondParameters,
CoordinateSystem sourceCRS,
CoordinateSystem targetCRS,
float scaleX,
float scaleY,
CRSIdentifiable id)
|
|
PolynomialTransformation(List<Double> firstParameters,
List<Double> secondParameters,
CoordinateSystem sourceCRS,
CoordinateSystem targetCRS,
CRSIdentifiable id)
|
|
deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official | |||||||||
PREV NEXT | FRAMES NO FRAMES |