com.esri.arcgis.carto
Interface IGeoReference

All Superinterfaces:
Serializable
All Known Implementing Classes:
CadAnnotationLayer, CadFeatureLayer, CadLayer, RasterLayer

public interface IGeoReference
extends Serializable

Provides access to members that control the georeferencing operations.

Product Availability

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


Method Summary
 void flip()
          Flip operation of layer.
 boolean isCanGeoRef()
          Indicates if layer can be georeferenced.
 void mirror()
          Mirror operation of layer.
 IPointCollection pointsTransform(IPointCollection inPoints, boolean isForward)
          Transform operation of Raster.
 void rectify(String fullpath, String format)
          Save transformed result to a new dataset.
 void register()
          Save transformation parameters and tie-points.
 void reScale(double xScale, double yScale)
          ReScale operation of layer.
 void reset()
          Reset operation of layer.
 void rotate(IPoint ipPivotPoint, double angle)
          Rotate operation of layer.
 void shift(double deltaX, double deltaY)
          Shift operation of layer.
 void twoPointsAdjust(IPointCollection fromPoints, IPointCollection toPoints)
          Two points adjust operation of layer.
 void warp(IPointCollection fromPoints, IPointCollection toPoints, int order)
          Warp operation of layer.
 

Method Detail

isCanGeoRef

boolean isCanGeoRef()
                    throws IOException,
                           AutomationException
Indicates if layer can be georeferenced.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Returns:
The canGeoRef
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

shift

void shift(double deltaX,
           double deltaY)
           throws IOException,
                  AutomationException
Shift operation of layer.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

reScale

void reScale(double xScale,
             double yScale)
             throws IOException,
                    AutomationException
ReScale operation of layer.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

flip

void flip()
          throws IOException,
                 AutomationException
Flip operation of layer.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

mirror

void mirror()
            throws IOException,
                   AutomationException
Mirror operation of layer.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

rotate

void rotate(IPoint ipPivotPoint,
            double angle)
            throws IOException,
                   AutomationException
Rotate operation of layer.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
ipPivotPoint - A reference to a com.esri.arcgis.geometry.IPoint (in)
angle - The angle (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

pointsTransform

IPointCollection pointsTransform(IPointCollection inPoints,
                                 boolean isForward)
                                 throws IOException,
                                        AutomationException
Transform operation of Raster.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
inPoints - A reference to a com.esri.arcgis.geometry.IPointCollection (in)
isForward - The isForward (in)
Returns:
A reference to a com.esri.arcgis.geometry.IPointCollection
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

twoPointsAdjust

void twoPointsAdjust(IPointCollection fromPoints,
                     IPointCollection toPoints)
                     throws IOException,
                            AutomationException
Two points adjust operation of layer.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
fromPoints - A reference to a com.esri.arcgis.geometry.IPointCollection (in)
toPoints - A reference to a com.esri.arcgis.geometry.IPointCollection (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

warp

void warp(IPointCollection fromPoints,
          IPointCollection toPoints,
          int order)
          throws IOException,
                 AutomationException
Warp operation of layer.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
fromPoints - A reference to a com.esri.arcgis.geometry.IPointCollection (in)
toPoints - A reference to a com.esri.arcgis.geometry.IPointCollection (in)
order - The order (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

reset

void reset()
           throws IOException,
                  AutomationException
Reset operation of layer.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

register

void register()
              throws IOException,
                     AutomationException
Save transformation parameters and tie-points.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

rectify

void rectify(String fullpath,
             String format)
             throws IOException,
                    AutomationException
Save transformed result to a new dataset.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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