org.geotools.referencing.operation

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.operation 
org.geotools.referencing.operation
package org.geotools.referencing.operation {@linkplain org.geotools.referencing.operation.AbstractCoordinateOperation Coordinate operation} implementation. An explanation for this package is provided in the {@linkplain org.opengis.referencing.operation OpenGIS® javadoc}. The remaining discussion on this page is specific to the Geotools implementation.

How to know the available {@linkplain org.opengis.referencing.operation.MathTransform math transforms}

The {@linkplain org.geotools.referencing.operation.DefaultMathTransformFactory math transform factory} search for all math transforms in the class path, not just Geotools implementations. To be found, math transforms must be registered as services in its JAR file, more specifically in the following JAR entry:

META-INF/services/org.geotools.referencing.operation.MathTransformProvider

{@link org.geotools.referencing.operation.DefaultMathTransformFactory} can be run from the command line in order to gets the list of all registered math transform, as in the example below:

java org.geotools.referencing.operation.DefaultMathTransformFactory

This will print a table with the name of all math transforms. If a name from this list is specified as a command-line argument, then the parameters expected by the nammed math transform will be listed. The example below prints the arguments expected by the "Mercator 1SP" map projection:

java org.geotools.referencing.operation.DefaultMathTransformFactory Mercator_1SP

Note that instead of the "Mercator_1SP" argument, alias can be specified as well. For example, "EPSG:9804" or just "9804" will produce the same result than above.

Java Source File NameTypeComment
AbstractCoordinateOperation.javaClass Establishes an association between a source and a target coordinate reference system, and provides a for transforming coordinates in the source CRS to coordinates in the target CRS.
AbstractCoordinateOperationFactory.javaClass Base class for coordinate operation factories.
AuthorityBackedFactory.javaClass A extended with the extra informations provided by an . Such authority factory may help to find transformation paths not available otherwise (often determined from empirical parameters).
BufferedCoordinateOperationFactory.javaClass Caches the created by an other factory. Those coordinate operations may be expensive to create.
CoordinateOperationFactoryTest.javaClass Test the default coordinate operation factory.

NOTE: Some tests are disabled in the particular case when the CoordinateOperationFactory is actually an AuthorityBackedFactory instance.

DefaultConcatenatedOperation.javaClass An ordered sequence of two or more single coordinate operations.
DefaultConicProjection.javaClass Base class for conical map projections.
DefaultConversion.javaClass An operation on coordinates that does not include any change of Datum.
DefaultCoordinateOperationFactory.javaClass Creates .
DefaultCylindricalProjection.javaClass Base class for cylindrical map projections.
DefaultMathTransformFactory.javaClass Low level factory for creating . Many high level GIS applications will never need to use this factory directly; they can use a instead.
DefaultOperation.javaClass A parameterized mathematical operation on coordinates that transforms or converts coordinates to another coordinate reference system.
DefaultOperationMethod.javaClass Definition of an algorithm used to perform a coordinate operation.
DefaultPassThroughOperation.javaClass A pass-through operation specifies that a subset of a coordinate tuple is subject to a specific coordinate operation.
DefaultPlanarProjection.javaClass Base class for for azimuthal (or planar) map projections.
DefaultProjection.javaClass A transforming (longitude,latitude) coordinates to cartesian coordinates (x,y).
DefaultSingleOperation.javaClass A single (not ) coordinate operation.
DefaultTransformation.javaClass An operation on coordinates that usually includes a change of Datum.
DefiningConversion.javaClass A conversion used for the definition of a (including projections).
LinearConversionTest.javaClass Tests some operation steps involved in coordinate operation creation.
LinearTransform.javaInterface Interface for linear MathTransform s.
MathTransformProvider.javaClass An capable to creates a from set of . Implementations of this class should be listed in the following file:

META-INF/services/org.geotools.referencing.operation.MathTransformProvider

The will parse this file in order to gets all available providers on a system.

ProjectionAnalyzer.javaClass Returns a conversion from a source to target projected CRS, if this conversion is representable as an affine transform.
TestTransform.javaClass Base class for transform test cases.
Transform3DTest.javaClass Tests of the createProjectedCRS(...) setting up the CRS with a 3D cartesian output for one test, and using a 2D + vertical CRS compound for the second test.
TransformPathNotFoundException.javaClass Thrown when a transformation can't be performed because no path from to has been found. This exception usually wraps an OperationNotFoundException thrown by an . This exception is sometime used in order to collapse a
 throws FactoryException, TransformException
 
clause (in method signature) into a single
 throws TransformException
 
clause, i.e.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.