com.esri.arcgis.geometry
Interface IProjectedCoordinateSystem4

All Superinterfaces:
IProjectedCoordinateSystem, IProjectedCoordinateSystem2, IProjectedCoordinateSystem3, ISpatialReference, ISpatialReferenceInfo, Serializable
All Known Subinterfaces:
IProjectedCoordinateSystem5
All Known Implementing Classes:
ProjectedCoordinateSystem

Deprecated. This interface uses C style arrays which is not supported in the Java API for ArcObjects. It is replaced by IProjectedCoordinateSystem4GEN. You can use the GEN interface proxy's Object-constructor to cast an instance of this interface to its GEN equivalent. Any ArcGIS class that implements this interface also implements the GEN interface.

public interface IProjectedCoordinateSystem4
extends IProjectedCoordinateSystem3, Serializable

Provides access to members that control additional properties and methods for projected coordinate systems.

Superseded By

IProjectedCoordinateSystem5

Product Availability

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


Method Summary
 double getCentralLongitude()
          Deprecated. Returns CentralLongitude of the projected coordinate system.
 _WKSPoint getNorthPole()
          Deprecated. Returns the north pole in projected coordinates, or an empty point if the north pole is outside the PCS horizon.
 int getNorthPoleGeometry()
          Deprecated. Returns type of north pole geometry.
 int getNorthPoleLocation()
          Deprecated. Returns type of location of north pole with respect to the PCS horizon.
 IGeometry getPCSHorizon(_WKSEnvelope[] horizonEnvelope, boolean[] inclusive)
          Deprecated. Returns PCS horizon polygon, its envelope and whether it is inclusive or exclusive; the horizon polygon may be 0.
 _WKSPoint getSouthPole()
          Deprecated. Returns the south pole in projected coordinates, or an empty point if the south pole is outside the PCS horizon.
 int getSouthPoleGeometry()
          Deprecated. Returns type of south pole geometry.
 int getSouthPoleLocation()
          Deprecated. Returns type of location of south pole with respect to the PCS horizon.
 boolean isHorizonConvexHull()
          Deprecated. Returns true if PCS horizon is convex.
 boolean isHorizonEdgeDuplicated()
          Deprecated. Returns true if some edges of PCS horizon project inversely to identical lines.
 boolean isHorizonEntireWorld()
          Deprecated. Returns true if PCS horizon contains the entire world.
 
Methods inherited from interface com.esri.arcgis.geometry.IProjectedCoordinateSystem3
getHeight, setHeight
 
Methods inherited from interface com.esri.arcgis.geometry.IProjectedCoordinateSystem2
getGCSParams, getHorizon, getLatitudeOfCenter, getLatitudeOfOrigin, getLongitudeOfCenter, getPseudoStandardParallel1, getRotation, getShiftedHorizon, getXScaleFactor, getYScaleFactor, inverseWithShift, isEqualNoNames, putLinearAndAngularUnits, setLatitudeOfCenter, setLatitudeOfOrigin, setLongitudeOfCenter, setPseudoStandardParallel1, setRotation, setXScaleFactor, setYScaleFactor
 
Methods inherited from interface com.esri.arcgis.geometry.IProjectedCoordinateSystem
forward, getAzimuth, getCentralMeridian, getCentralParallel, getCoordinateUnit, getFalseEasting, getFalseNorthing, getGeographicCoordinateSystem, getHorizon, getHorizonCount, getLatitudeOf1st, getLatitudeOf2nd, getLongitudeOf1st, getLongitudeOf2nd, getLongitudeOfOrigin, getParameters, getProjection, getScaleFactor, getStandardParallel1, getStandardParallel2, getUsage, inverse, setAzimuth, setCentralMeridian, setCentralParallel, setFalseEasting, setFalseNorthing, setLatitudeOf1st, setLatitudeOf2nd, setLongitudeOf1st, setLongitudeOf2nd, setLongitudeOfOrigin, setScaleFactor, setStandardParallel1, setStandardParallel2
 
Methods inherited from interface com.esri.arcgis.geometry.ISpatialReference
changed, getDomain, getFalseOriginAndUnits, getMDomain, getMFalseOriginAndUnits, getZCoordinateUnit, getZDomain, getZFalseOriginAndUnits, hasMPrecision, hasXYPrecision, hasZPrecision, isPrecisionEqual, setDomain, setFalseOriginAndUnits, setMDomain, setMFalseOriginAndUnits, setZCoordinateUnit, setZDomain, setZFalseOriginAndUnits
 
Methods inherited from interface com.esri.arcgis.geometry.ISpatialReferenceInfo
getAbbreviation, getAlias, getFactoryCode, getName, getRemarks
 

Method Detail

getPCSHorizon

IGeometry getPCSHorizon(_WKSEnvelope[] horizonEnvelope,
                        boolean[] inclusive)
                        throws IOException,
                               AutomationException
Deprecated. 
Returns PCS horizon polygon, its envelope and whether it is inclusive or exclusive; the horizon polygon may be 0.

Remarks

GetPCSHorizon retrieves the polygon that describes the valid area of a a projected coordinate system in PCS coordinates and unit of measure. Use IProjectedCoordinateSystem5::GetPCSHorizonEnvelope to retrieve the envelope of the PCS horizon.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
horizonEnvelope - A Structure: com.esri.arcgis.system._WKSEnvelope (A com.esri.arcgis.system._WKSEnvelope COM typedef) (out: use single element array)
inclusive - The inclusive (out: use single element array)
Returns:
A reference to a com.esri.arcgis.geometry.IGeometry
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getCentralLongitude

double getCentralLongitude()
                           throws IOException,
                                  AutomationException
Deprecated. 
Returns CentralLongitude of the projected coordinate system. Always defined, unlike CentralMeridian or LongitudeOfCenter.

Product Availability

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

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

getNorthPole

_WKSPoint getNorthPole()
                       throws IOException,
                              AutomationException
Deprecated. 
Returns the north pole in projected coordinates, or an empty point if the north pole is outside the PCS horizon.

Product Availability

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

Returns:
A Structure: com.esri.arcgis.system._WKSPoint (A com.esri.arcgis.system._WKSPoint COM typedef)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getSouthPole

_WKSPoint getSouthPole()
                       throws IOException,
                              AutomationException
Deprecated. 
Returns the south pole in projected coordinates, or an empty point if the south pole is outside the PCS horizon.

Product Availability

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

Returns:
A Structure: com.esri.arcgis.system._WKSPoint (A com.esri.arcgis.system._WKSPoint COM typedef)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getNorthPoleLocation

int getNorthPoleLocation()
                         throws IOException,
                                AutomationException
Deprecated. 
Returns type of location of north pole with respect to the PCS horizon.

Product Availability

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

Returns:
A com.esri.arcgis.geometry.esriSRPoleLocation constant
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getSouthPoleLocation

int getSouthPoleLocation()
                         throws IOException,
                                AutomationException
Deprecated. 
Returns type of location of south pole with respect to the PCS horizon.

Product Availability

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

Returns:
A com.esri.arcgis.geometry.esriSRPoleLocation constant
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getNorthPoleGeometry

int getNorthPoleGeometry()
                         throws IOException,
                                AutomationException
Deprecated. 
Returns type of north pole geometry.

Product Availability

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

Returns:
A com.esri.arcgis.geometry.esriSRPoleGeometry constant
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getSouthPoleGeometry

int getSouthPoleGeometry()
                         throws IOException,
                                AutomationException
Deprecated. 
Returns type of south pole geometry.

Product Availability

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

Returns:
A com.esri.arcgis.geometry.esriSRPoleGeometry constant
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isHorizonEdgeDuplicated

boolean isHorizonEdgeDuplicated()
                                throws IOException,
                                       AutomationException
Deprecated. 
Returns true if some edges of PCS horizon project inversely to identical lines.

Remarks

The PCS horizon is the valid area of a projected coordinate system, in the units of the PCS.

Product Availability

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

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

isHorizonConvexHull

boolean isHorizonConvexHull()
                            throws IOException,
                                   AutomationException
Deprecated. 
Returns true if PCS horizon is convex.

Remarks

The PCS horizon is the valid area of a projected coordinate system, in the units of the PCS.

Product Availability

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

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

isHorizonEntireWorld

boolean isHorizonEntireWorld()
                             throws IOException,
                                    AutomationException
Deprecated. 
Returns true if PCS horizon contains the entire world.

Remarks

The PCS horizon is the valid area of a projected coordinate system, in the units of the PCS.

Product Availability

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

Returns:
The isWorld
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
See Also:
IProjectedCoordinateSystem4.isHorizonEntireWorld(), IProjectedCoordinateSystem5, IProjectedCoordinateSystem4.isHorizonConvexHull()