Java Doc for EPSGCRSAuthorityFactory.java in  » GIS » GeoTools-2.4.1 » org » geotools » referencing » crs » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoTools 2.4.1 » org.geotools.referencing.crs 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.geotools.referencing.crs.EPSGCRSAuthorityFactory

EPSGCRSAuthorityFactory
public class EPSGCRSAuthorityFactory implements CRSAuthorityFactory(Code)
Default implementation for a coordinate reference system authority factory backed by the EPSG property file. This gives most of the benifits of using the EPSG database backed authority factory, in a nice, portable property file.
version:
   $Id: EPSGCRSAuthorityFactory.java 27862 2007-11-12 19:51:19Z desruisseaux $
author:
   Jody Garnett
author:
   Rueben Schulz


Field Summary
final public static  StringAUTHORITY
    
final public static  StringAUTHORITY_PREFIX
    
protected static  EPSGCRSAuthorityFactoryDEFAULT
     The default coordinate system authority factory.
protected  CRSFactorycrsFactory
    
protected  Propertiesepsg
     The properties object for our properties file.

Constructor Summary
public  EPSGCRSAuthorityFactory()
     Loads from epsg.properties if the file exists, defaults to internal defintions exported from postgis and cubeworks.
protected  EPSGCRSAuthorityFactory(CRSFactory factory)
     Loads from epsg.properties if the file exists, defaults to internal defintions exported from postgis and cubeworks.
protected  EPSGCRSAuthorityFactory(CRSFactory factory, URL definition)
    

Method Summary
public  org.opengis.referencing.crs.CompoundCRScreateCompoundCRS(String str)
    
public synchronized  CoordinateReferenceSystemcreateCoordinateReferenceSystem(String code)
    
public  org.opengis.referencing.crs.DerivedCRScreateDerivedCRS(String str)
    
public  org.opengis.referencing.crs.EngineeringCRScreateEngineeringCRS(String str)
    
public  org.opengis.referencing.crs.GeocentricCRScreateGeocentricCRS(String str)
    
public  GeographicCRScreateGeographicCRS(String code)
    
public  org.opengis.referencing.crs.ImageCRScreateImageCRS(String str)
    
public  IdentifiedObjectcreateObject(String code)
    
public  ProjectedCRScreateProjectedCRS(String code)
    
public  org.opengis.referencing.crs.TemporalCRScreateTemporalCRS(String str)
    
public  org.opengis.referencing.crs.VerticalCRScreateVerticalCRS(String str)
    
public  CitationgetAuthority()
    
public  SetgetAuthorityCodes(Class clazz)
     Returns the set of authority codes of the given type.
public static synchronized  CRSAuthorityFactorygetDefault()
     Returns a default coordinate system factory backed by the EPSG property file.
public  InternationalStringgetDescriptionText(String code)
    
public  ObjectFactorygetObjectFactory()
    
public  CitationgetVendor()
    
protected  voidloadDefault()
     Loads from epsg.properties if the file exists, defaults to internal defintions exported from postgis and cubeworks.

Field Detail
AUTHORITY
final public static String AUTHORITY(Code)



AUTHORITY_PREFIX
final public static String AUTHORITY_PREFIX(Code)



DEFAULT
protected static EPSGCRSAuthorityFactory DEFAULT(Code)
The default coordinate system authority factory. Will be constructed only when first requested.



crsFactory
protected CRSFactory crsFactory(Code)



epsg
protected Properties epsg(Code)
The properties object for our properties file. Keys are the EPSG code for a coordinate reference system and the associated value is a WKT string for the CRS.




Constructor Detail
EPSGCRSAuthorityFactory
public EPSGCRSAuthorityFactory()(Code)
Loads from epsg.properties if the file exists, defaults to internal defintions exported from postgis and cubeworks.



EPSGCRSAuthorityFactory
protected EPSGCRSAuthorityFactory(CRSFactory factory)(Code)
Loads from epsg.properties if the file exists, defaults to internal defintions exported from postgis and cubeworks.



EPSGCRSAuthorityFactory
protected EPSGCRSAuthorityFactory(CRSFactory factory, URL definition) throws FactoryException(Code)




Method Detail
createCompoundCRS
public org.opengis.referencing.crs.CompoundCRS createCompoundCRS(String str) throws FactoryException(Code)



createCoordinateReferenceSystem
public synchronized CoordinateReferenceSystem createCoordinateReferenceSystem(String code) throws FactoryException(Code)



createDerivedCRS
public org.opengis.referencing.crs.DerivedCRS createDerivedCRS(String str) throws FactoryException(Code)



createEngineeringCRS
public org.opengis.referencing.crs.EngineeringCRS createEngineeringCRS(String str) throws FactoryException(Code)



createGeocentricCRS
public org.opengis.referencing.crs.GeocentricCRS createGeocentricCRS(String str) throws FactoryException(Code)



createGeographicCRS
public GeographicCRS createGeographicCRS(String code) throws FactoryException(Code)



createImageCRS
public org.opengis.referencing.crs.ImageCRS createImageCRS(String str) throws FactoryException(Code)



createObject
public IdentifiedObject createObject(String code) throws FactoryException(Code)



createProjectedCRS
public ProjectedCRS createProjectedCRS(String code) throws FactoryException(Code)



createTemporalCRS
public org.opengis.referencing.crs.TemporalCRS createTemporalCRS(String str) throws FactoryException(Code)



createVerticalCRS
public org.opengis.referencing.crs.VerticalCRS createVerticalCRS(String str) throws FactoryException(Code)



getAuthority
public Citation getAuthority()(Code)



getAuthorityCodes
public Set getAuthorityCodes(Class clazz) throws FactoryException(Code)
Returns the set of authority codes of the given type. The type argument specify the base class. For example if this factory is an instance of CRSAuthorityFactory, then:
  • CoordinateReferenceSystem.class asks for all authority codes accepted by createGeographicCRS, createProjectedCRS, createVerticalCRS, createTemporalCRS and their friends.
  • ProjectedCRS.class asks only for authority codes accepted by createProjectedCRS.
The following implementaiton filters the set of codes based on the "PROJCS" and "GEOGCS" at the start of the WKT strings. It is assumed that we only have GeographicCRS and ProjectedCRS's here.
Parameters:
  clazz - The spatial reference objects type (may be Object.class). The set of authority codes for spatial reference objects of the given type. If this factory doesn't contains any object of the given type, then this method returns an empty set.
throws:
  FactoryException - if access to the underlying database failed.



getDefault
public static synchronized CRSAuthorityFactory getDefault()(Code)
Returns a default coordinate system factory backed by the EPSG property file. The default factory.
throws:
  SQLException - if the connection to the database can't be etablished.



getDescriptionText
public InternationalString getDescriptionText(String code) throws FactoryException(Code)



getObjectFactory
public ObjectFactory getObjectFactory()(Code)



getVendor
public Citation getVendor()(Code)



loadDefault
protected void loadDefault() throws IOException(Code)
Loads from epsg.properties if the file exists, defaults to internal defintions exported from postgis and cubeworks.
throws:
  IOException -



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.