com.esri.arcgis.geometry
Interface IGeographic2DOffsetTransformation

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

public interface IGeographic2DOffsetTransformation
extends IGeoTransformation, Serializable

Provides access to members that control the geographic 2D offset transformation.

Description

The Geographic2DOffsetTransformation method converts between two geographic coordinates systems. It takes two parameter values in arc-seconds. The parameters are a shift in latitude and a shift, or offset, in longitude.

Product Availability

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


Method Summary
 void getParameters(double[] dlon, double[] dlat)
          Returns latitude and longitude translation values for the transformation.
 void putParameters(double dlon, double dlat)
          Sets latitude and longitude translation values for the transformation.
 
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

putParameters

void putParameters(double dlon,
                   double dlat)
                   throws IOException,
                          AutomationException
Sets latitude and longitude translation values for the transformation.

Product Availability

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

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

getParameters

void getParameters(double[] dlon,
                   double[] dlat)
                   throws IOException,
                          AutomationException
Returns latitude and longitude translation values for the transformation.

Product Availability

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

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