Java Doc for BursaWolfParameters.java in  » GIS » GeoTools-2.4.1 » org » geotools » referencing » datum » 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.datum 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.geotools.referencing.wkt.Formattable
      org.geotools.referencing.datum.BursaWolfParameters

BursaWolfParameters
public class BursaWolfParameters extends Formattable implements Cloneable,Serializable(Code)
Parameters for a geographic transformation between two datum. The Bursa Wolf parameters should be applied to geocentric coordinates, where the X axis points towards the Greenwich Prime Meridian, the Y axis points East, and the Z axis points North. The "Bursa-Wolf" formula is expressed in matrix form with 7 parameters:


since:
   2.1
version:
   $Id: BursaWolfParameters.java 20874 2006-08-07 10:00:01Z jgarnett $
author:
   Martin Desruisseaux


Field Summary
public  doubledx
     Bursa Wolf shift in meters.
public  doubledy
     Bursa Wolf shift in meters.
public  doubledz
     Bursa Wolf shift in meters.
public  doubleex
     Bursa Wolf rotation in arc seconds.
public  doubleey
     Bursa Wolf rotation in arc seconds.
public  doubleez
     Bursa Wolf rotation in arc seconds.
public  doubleppm
     Bursa Wolf scaling in parts per million.
final public  GeodeticDatumtargetDatum
     The target datum for this parameters.

Constructor Summary
public  BursaWolfParameters(GeodeticDatum target)
     Constructs a transformation info with all parameters set to 0.

Method Summary
public  Objectclone()
     Returns a copy of this object.
public  booleanequals(Object object)
     Compares the specified object with this object for equality.
protected  StringformatWKT(Formatter formatter)
     Format the inner part of a Well Known Text (WKT) element.
public  XMatrixgetAffineTransform()
     Returns an affine transform that can be used to define this Bursa Wolf transformation.
public  inthashCode()
     Returns a hash value for this object. The hash code value.
public  booleanisIdentity()
     Returns true if this Bursa Wolf parameters performs no operation.
public  booleanisTranslation()
     Returns true if this Bursa Wolf parameters contains only translation terms.
public  voidsetAffineTransform(Matrix matrix, double eps)
     Sets transformation info from the specified matrix, which must be affine. In addition, the matrix minus the last row and last column must be antisymmetric.
Parameters:
  matrix - The matrix to fit as a Bursa-Wolf construct.
Parameters:
  eps - The tolerance error for the antisymmetric matrix test.

Field Detail
dx
public double dx(Code)
Bursa Wolf shift in meters.



dy
public double dy(Code)
Bursa Wolf shift in meters.



dz
public double dz(Code)
Bursa Wolf shift in meters.



ex
public double ex(Code)
Bursa Wolf rotation in arc seconds.



ey
public double ey(Code)
Bursa Wolf rotation in arc seconds.



ez
public double ez(Code)
Bursa Wolf rotation in arc seconds.



ppm
public double ppm(Code)
Bursa Wolf scaling in parts per million.



targetDatum
final public GeodeticDatum targetDatum(Code)
The target datum for this parameters.




Constructor Detail
BursaWolfParameters
public BursaWolfParameters(GeodeticDatum target)(Code)
Constructs a transformation info with all parameters set to 0.
Parameters:
  target - The target datum for this parameters.




Method Detail
clone
public Object clone()(Code)
Returns a copy of this object.



equals
public boolean equals(Object object)(Code)
Compares the specified object with this object for equality.



formatWKT
protected String formatWKT(Formatter formatter)(Code)
Format the inner part of a Well Known Text (WKT) element. The WKT contains the parameters in translation, rotation, scale order, as in TOWGS84[ , , , , , , ].
Parameters:
  formatter - The formatter to use. The WKT element name.



getAffineTransform
public XMatrix getAffineTransform()(Code)
Returns an affine transform that can be used to define this Bursa Wolf transformation. The formula is as follows:
 S = 1 + 
BursaWolfParameters.ppm /1000000
 [ X’ ]    [     S   -
BursaWolfParameters.ez *S   +
BursaWolfParameters.ey *S   
BursaWolfParameters.dx  ]  [ X ]
 [ Y’ ]  = [ +
BursaWolfParameters.ez *S       S   -
BursaWolfParameters.ex *S   
BursaWolfParameters.dy  ]  [ Y }
 [ Z’ ]    [ -
BursaWolfParameters.ey *S   +
BursaWolfParameters.ex *S       S   
BursaWolfParameters.dz  ]  [ Z ]
 [ 1  ]    [     0       0       0    1 ]  [ 1 ]
 
This affine transform can be applied on geocentric coordinates.



hashCode
public int hashCode()(Code)
Returns a hash value for this object. The hash code value. This value doesn't need to be the samein past or future versions of this class.



isIdentity
public boolean isIdentity()(Code)
Returns true if this Bursa Wolf parameters performs no operation. This is true when all parameters are set to zero.



isTranslation
public boolean isTranslation()(Code)
Returns true if this Bursa Wolf parameters contains only translation terms.



setAffineTransform
public void setAffineTransform(Matrix matrix, double eps) throws IllegalArgumentException(Code)
Sets transformation info from the specified matrix, which must be affine. In addition, the matrix minus the last row and last column must be antisymmetric.
Parameters:
  matrix - The matrix to fit as a Bursa-Wolf construct.
Parameters:
  eps - The tolerance error for the antisymmetric matrix test. Should be a smallnumber like 1E-4 .
throws:
  IllegalArgumentException - if the specified matrix doesn't meet the conditions.
since:
   2.2



Methods inherited from org.geotools.referencing.wkt.Formattable
protected String formatWKT(Formatter formatter)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public String toWKT() throws UnformattableObjectException(Code)(Java Doc)
public String toWKT(int indentation) throws UnformattableObjectException(Code)(Java Doc)
public String toWKT(Citation authority, int indentation) throws UnformattableObjectException(Code)(Java Doc)

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.