com.esri.arcgis.geometry
Interface IMolodenskyTransformation

All Superinterfaces:
IGeoTransformation, ITransformation, Serializable
All Known Implementing Classes:
AbridgedMolodenskyTransformation, MolodenskyTransformation

public interface IMolodenskyTransformation
extends IGeoTransformation, Serializable

Provides access to members that control the parameters of a Molodensky transformation.

Description

The Molodensky (and Abridged Molodensky) transformation methods 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 dx, dy and dz parameters.
 void putParameters(double dx, double dy, double dz)
          Sets the dx, dy and dz parameters.
 
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 dx, dy and dz parameters.

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 dx, dy and dz parameters.

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.