deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official

Uses of Class
org.deegree.crs.exceptions.CRSConfigurationException

Packages that use CRSConfigurationException
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   
 

Uses of CRSConfigurationException in org.deegree.crs.configuration
 

Methods in org.deegree.crs.configuration that throw CRSConfigurationException
 List<CRSCodeType> CRSProvider.getAvailableCRSCodes()
          This method should be called if one is only interested in the available identifiers and not in the coordinatesystems themselves.
 List<CoordinateSystem> CRSProvider.getAvailableCRSs()
          This method should be called to see if the provider is able to create all defined crs's, thus verifying the correctness of the configuration.
 CoordinateSystem AbstractCRSProvider.getCRSByCode(CRSCodeType id)
          Retrieves the CoordinateSystem from the set provider that is identified by the given CRSCodeType id.
 CoordinateSystem CRSProvider.getCRSByCode(CRSCodeType id)
           
static CRSConfiguration CRSConfiguration.getCRSConfiguration()
          Creates or returns an instance of the CRSConfiguration by reading the DEFAULT property configured in the 'crs_providers.properties'.
 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.
 Transformation CRSProvider.getTransformation(CoordinateSystem sourceCRS, CoordinateSystem targetCRS)
          This method is should retrieve a transformation (chain) which transforms coordinates from the given source into the given target crs.
protected abstract  CoordinateSystem AbstractCRSProvider.parseCoordinateSystem(T crsDefinition)
           
abstract  Transformation AbstractCRSProvider.parseTransformation(T transformationDefinition)
           
 

Uses of CRSConfigurationException in org.deegree.crs.configuration.deegree.db
 

Methods in org.deegree.crs.configuration.deegree.db that throw CRSConfigurationException
 CoordinateSystem DatabaseCRSProvider.getCRSByCode(CRSCodeType code)
          Retrieves the CRS via its code
 CRSIdentifiable DatabaseCRSProvider.getIdentifiable(CRSCodeType id)
           
 Transformation DatabaseCRSProvider.getTransformation(CoordinateSystem sourceCRS, CoordinateSystem targetCRS)
           
 

Constructors in org.deegree.crs.configuration.deegree.db that throw CRSConfigurationException
DatabaseCRSProvider()
           
DatabaseCRSProvider(Properties properties)
           
 

Uses of CRSConfigurationException in org.deegree.crs.configuration.deegree.xml
 

Methods in org.deegree.crs.configuration.deegree.xml that throw CRSConfigurationException
 List<CRSCodeType[]> CRSParser.getAvailableCRSCodes()
           
 Ellipsoid CRSParser.getEllipsoidForId(String ellipsoidID)
          Tries to find a cached ellipsoid, if not found, the config will be checked.
 GeodeticDatum CRSParser.getGeodeticDatumForId(String datumID)
           
 CRSIdentifiable DeegreeCRSProvider.getIdentifiable(CRSCodeType id)
           
 PrimeMeridian CRSParser.getPrimeMeridianForId(String meridianID)
           
 Transformation DeegreeCRSProvider.getTransformation(CoordinateSystem sourceCRS, CoordinateSystem targetCRS)
           
 String CRSParser.getVersion()
           
 CoordinateSystem CRSParser.parseCoordinateSystem(T crsDefintion)
           
protected  CoordinateSystem DeegreeCRSProvider.parseCoordinateSystem(T crsDefinition)
           
 Transformation DeegreeCRSProvider.parseTransformation(T transformationDefinition)
           
 

Uses of CRSConfigurationException in org.deegree.crs.configuration.deegree.xml.om
 

Methods in org.deegree.crs.configuration.deegree.xml.om that throw CRSConfigurationException
 List<CRSCodeType[]> Parser.getAvailableCRSCodes()
           
protected  Helmert Parser.getConversionInfoFromID(String infoID)
           
 Ellipsoid Parser.getEllipsoidForId(String ellipsoidID)
          Tries to find a cached ellipsoid, if not found, the config will be checked.
 GeodeticDatum Parser.getGeodeticDatumForId(String datumID)
           
 PrimeMeridian Parser.getPrimeMeridianForId(String meridianID)
           
 String Parser.getVersion()
           
protected  Axis[] Parser.parseAxisOrder(org.apache.axiom.om.OMElement crsElement)
          Creates an axis array for the given crs element.
 CoordinateSystem Parser.parseCoordinateSystem(org.apache.axiom.om.OMElement crsDefintion)
           
protected  CoordinateSystem Parser.parseGeocentricCRS(org.apache.axiom.om.OMElement crsElement)
           
protected  CoordinateSystem Parser.parseGeographicCRS(org.apache.axiom.om.OMElement crsElement)
           
protected  CRSIdentifiable Parser.parseIdentifiable(org.apache.axiom.om.OMElement element)
          Parses all elements of the identifiable object.
protected  CoordinateSystem Parser.parseProjectedCRS(org.apache.axiom.om.OMElement crsElement)
           
protected  Projection Parser.parseProjection(org.apache.axiom.om.OMElement projectionElement, GeographicCRS underlyingCRS, Unit units)
          Parses and instantiates the projection from the given element.
protected  GeodeticDatum Parser.parseReferencedGeodeticDatum(org.apache.axiom.om.OMElement parentElement, String parentID)
          Parses the required usedDatum element from the given parentElement (probably a crs element).
protected  Unit Parser.parseUnit(org.apache.axiom.om.OMElement parent)
          Parses a unit from the given xml-parent.
 

Uses of CRSConfigurationException in org.deegree.crs.configuration.deegree.xml.stax
 

Methods in org.deegree.crs.configuration.deegree.xml.stax that throw CRSConfigurationException
 List<CRSCodeType[]> Parser.getAvailableCRSCodes()
           
 Ellipsoid Parser.getEllipsoidForId(String ellipsoidId)
           
 GeodeticDatum Parser.getGeodeticDatumForId(String datumId)
           
 PrimeMeridian Parser.getPrimeMeridianForId(String meridianId)
           
 String Parser.getVersion()
           
 CoordinateSystem Parser.parseCoordinateSystem(StAXResource crsDefintion)
           
 

Uses of CRSConfigurationException in org.deegree.crs.configuration.deegree.xml.stax.parsers
 

Methods in org.deegree.crs.configuration.deegree.xml.stax.parsers that throw CRSConfigurationException
protected  Helmert TransformationParser.getConversionInfoForID(String infoID)
           
 CoordinateSystem CoordinateSystemParser.getCRSForId(String crsId)
           
 Ellipsoid EllipsoidParser.getEllipsoidForId(String ellipsoidID)
          Tries to find a cached ellipsoid, if not found, the config will be checked.
 GeodeticDatum DatumParser.getGeodeticDatumForId(String datumID)
           
 PrimeMeridian PrimemeridianParser.getPrimeMeridianForId(String meridianId)
           
 Projection ProjectionParser.getProjectionForId(String projectionId, GeographicCRS underlyingCRS)
           
 Transformation TransformationParser.getTransformationForId(String transformId)
           
protected  Axis[] CoordinateSystemParser.parseAxisOrder(XMLStreamReader reader)
          Creates an axis array for the given crs element.
 CoordinateSystem CoordinateSystemParser.parseCoordinateSystem(XMLStreamReader reader)
           
protected  CoordinateSystem CoordinateSystemParser.parseGeocentricCRS(XMLStreamReader reader)
           
protected  CoordinateSystem CoordinateSystemParser.parseGeographicCRS(XMLStreamReader reader)
           
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.
protected  CoordinateSystem CoordinateSystemParser.parseProjectedCRS(XMLStreamReader reader)
           
protected  GeodeticDatum CoordinateSystemParser.parseReferencedGeodeticDatum(XMLStreamReader reader, String parentID)
          Parses the required usedDatum element from the given parentElement (probably a crs element).
protected  Unit DefinitionParser.parseUnit(XMLStreamReader reader, boolean required)
          Parses a unit from the given xml-parent.
 

Uses of CRSConfigurationException in org.deegree.crs.configuration.gml
 

Methods in org.deegree.crs.configuration.gml that throw CRSConfigurationException
 List<CRSCodeType> GMLCRSProvider.getAvailableCRSCodes()
           
 List<CoordinateSystem> GMLCRSProvider.getAvailableCRSs()
           
 CRSIdentifiable GMLCRSProvider.getIdentifiable(CRSCodeType id)
           
 Transformation GMLCRSProvider.getTransformation(CoordinateSystem sourceCRS, CoordinateSystem targetCRS)
           
protected  CoordinateSystem GMLCRSProvider.parseCoordinateSystem(org.apache.axiom.om.OMElement rootElement)
           
 Transformation GMLCRSProvider.parseTransformation(org.apache.axiom.om.OMElement rootElement)
          Calls parseGMLTransformation for the catching of XMLParsingException.
 

Uses of CRSConfigurationException in org.deegree.crs.configuration.proj4
 

Methods in org.deegree.crs.configuration.proj4 that throw CRSConfigurationException
 List<CRSCodeType> PROJ4CRSProvider.getAvailableCRSCodes()
           
 List<CoordinateSystem> PROJ4CRSProvider.getAvailableCRSs()
           
 CRSIdentifiable PROJ4CRSProvider.getIdentifiable(CRSCodeType code)
           
 Transformation PROJ4CRSProvider.getTransformation(CoordinateSystem sourceCRS, CoordinateSystem targetCRS)
           
protected  CoordinateSystem PROJ4CRSProvider.parseCoordinateSystem(Map<String,String> crsDefinition)
           
 Transformation PROJ4CRSProvider.parseTransformation(Map<String,String> transformationDefinition)
           
 


deegree-core-3.0-pre-nightly (2010/03/05 00:01) - official

an open source project founded by lat/lon, Bonn, Germany.
For more information visit: http://www.deegree.org

]]>