com.esri.arcgis.geometry
Interface IGeocentricTranslation

All Superinterfaces:
IGeoTransformation, ITransformation, Serializable
All Known Implementing Classes:
GeocentricTranslation

public interface IGeocentricTranslation
extends IGeoTransformation, Serializable

Provides access to members that control the 3D vector transformation with 3 translation values.

Description

The geocentric translation method converts data between geographic coordinate systems. It's a three parameter method. The parameters are three translations in a XYZ system and are defined in meters.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void getParameters(double[] dx, double[] dy, double[] dz)
          Returns the translation values in meters for the X, Y and Z axis.
 void putParameters(double dx, double dy, double dz)
          Sets the translation values in meters for the X, Y and Z axis.
 
Methods inherited from interface com.esri.arcgis.geometry.IGeoTransformation
getName, getSpatialReferences, putSpatialReferences, setName
 
Methods inherited from interface com.esri.arcgis.geometry.ITransformation
transformMeasuresFF, transformMeasuresFI, transformMeasuresIF, transformMeasuresII, transformPointsFF, transformPointsFI, transformPointsIF, transformPointsII
 

Method Detail

getParameters

void getParameters(double[] dx,
                   double[] dy,
                   double[] dz)
                   throws IOException,
                          AutomationException
Returns the translation values in meters for the X, Y and Z axis.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
dx - The dx (out: use single element array)
dy - The dy (out: use single element array)
dz - The dz (out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

putParameters

void putParameters(double dx,
                   double dy,
                   double dz)
                   throws IOException,
                          AutomationException
Sets the translation values in meters for the X, Y and Z axis.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
dx - The dx (in)
dy - The dy (in)
dz - The dz (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.