IProjectedCoordinateSystem4GEN Interface

Provides access to members that control additional properties and methods for projected coordinate systems. IProjectedCoordinateSystem4GEN is generic version of IProjectedCoordinateSystem4.

Members

Name Description
Read-only property Abbreviation The abbreviated name of this spatial reference component.
Read-only property Alias The alias of this spatial reference component.
Read/write property Azimuth The azimuth of a projected coordinate system.
Read/write property CentralMeridian The central meridian (Lambda0) of a projected coordinate system.
Read/write property CentralParallel The central parallel (Phi 0) of a projected coordinate system.
Method Changed Notify this object that some of its parts have changed (parameter values, z unit, etc.).
Read-only property CoordinateUnit The linear unit of a projected coordinate system.
Read-only property FactoryCode The factory code of the spatial reference.
Read/write property FalseEasting The false easting (X0) of a projected coordinate system.
Read/write property FalseNorthing The false northing (Y0) of a projected coordinate system.
Method Forward Projects points from geographic to planar coordinates.
Read-only property GeographicCoordinateSystem The geographic coordinate system of a projected coordinate system.
Method GetCentralLongitude Returns CentralLongitude of the projected coordinate system. Always defined, unlike CentralMeridian or LongitudeOfCenter.
Method GetDomain Get the domain extent.
Method GetFalseOriginAndUnits Get the false origin and units.
Method GetGCSParams Returns 180 degrees and horizon delta in proper GCS units.
Method GetHorizon Returns the standard horizon polygon, its envelope, and whether it is inclusive or exclusive; the horizon polygon may be 0.
Method GetMDomain Get the measure domain extent.
Method GetMFalseOriginAndUnits Get the measure false origin and units.
Method GetNorthPole Returns north pole in projected coordinates, or an empty point if north pole is outside the PCS horizon.
Method GetNorthPoleGeometry Returns type of north pole geometry.
Method GetNorthPoleLocation Returns type of location of north pole with respect to PCS horizon.
Method GetParameters Gets the map projection parameters of a projected coordinate system. The array size needs to be esriSR_​MaxParameterCountPrivate.
Method GetPCSHorizon Returns PCS horizon polygon, its envelope and whether it is inclusive or exclusive; the horizon polygon may be 0.
Method GetShiftedHorizon Returns the horizon polygon, shifted once or twice, west/east of standard horizon for a negative/positive shift.
Method GetSouthPole Returns south pole in projected coordinates, or an empty point if south pole is outside the PCS horizon.
Method GetSouthPoleGeometry Returns type of south pole geometry.
Method GetSouthPoleLocation Returns type of location of south pole with respect to PCS horizon.
Method GetZDomain Get the Z domain extent.
Method GetZFalseOriginAndUnits Get the Z false origin and units.
Method HasMPrecision Returns true when m-value precision information has been defined.
Method HasXYPrecision Returns true when (x,y) precision information has been defined.
Method HasZPrecision Returns true when z-value precision information has been defined.
Read/write property Height The height above the sphere in projected coordinate system units.
Read-only property Horizon The mathematical limits of a projected coordinate system.
Read-only property HorizonCount The number of shapes that describe the limits of a ProjCS.
Method Inverse Projects points from planar to geographic coordinates.
Method InverseWithShift Projects points from planar to geographic coordinates. Deals with geographic coordinates in ranges other than +-180.
Method IsEqualNoNames Compares two projected coordinate systems for equality but ignores their names.
Method IsHorizonConvexHull Returns true if PCS horizon is convex.
Method IsHorizonEdgeDuplicated Returns true if some edges of PCS horizon project inversely to identical lines.
Method IsHorizonEntireWorld Returns true if PCS horizon contains the entire world.
Method IsPrecisionEqual Returns TRUE when the precision information for the two spatial references is the same.
Read/write property LatitudeOf1st The latitude of the first point (Phi 1) of a projected coordinate system.
Read/write property LatitudeOf2nd The latitude of the second point (Phi 2) of a projected coordinate system.
Read/write property LatitudeOfCenter The latitude of center (Phi C) of a projected coordinate system.
Read/write property LatitudeOfOrigin The latitude of the origin (Phi 0) of a projected coordinate system.
Read/write property LongitudeOf1st The longitude of the first point (Lambda 1) of a projected coordinate system.
Read/write property LongitudeOf2nd The longitude of the second point (Lambda 2) of a projected coordinate system.
Read/write property LongitudeOfCenter The longitude of center (Lam C) of a projected coordinate system.
Read/write property LongitudeOfOrigin The longitude of origin (Lambda0) of a projected coordinate system.
Read-only property Name The name of this spatial reference component.
Read-only property PrecisionExImpl An opaque reference to the precision information (including z/m awareness) implementation for this spatial reference.
Read-only property PrecisionImpl An opaque reference to the precision information implementation for this spatial reference.
Read-only property Projection The map projection of a projected coordinate system.
Read/write property PseudoStandardParallel1 The latitude on an oblique spheroid that defines the oblique cone for a Krovak projected coordinate system.
Method PutLinearAndAngularUnits Modify linear unit of projected coordinates and angular unit of associated geographic coordinates.
Read-only property Remarks The comment string of this spatial reference component.
Read/write property Rotation The rotation value used to change the axis directions in a Krovak projected coordinate system.
Read/write property ScaleFactor The scale factor (K0) of a projected coordinate system.
Method SetDomain Set the xy domain extent.
Method SetFalseOriginAndUnits Set the false origin and units.
Method SetMDomain Set the measure domain extent.
Method SetMFalseOriginAndUnits Set the measure false origin and units.
Method SetZDomain Set the z domain extent.
Method SetZFalseOriginAndUnits Set the Z false origin and units.
Read-only property SpatialReferenceImpl SpatialReferenceImpl.
Read/write property StandardParallel1 The first parallel (Phi 1) of a projected coordinate system.
Read/write property StandardParallel2 The second parallel (Phi 2) of a projected coordinate system.
Read-only property Usage The usage notes of a projected coordinate system.
Read/write property XScaleFactor The X axis scale value used to flip the axis direction in a Krovak projected coordinate system.
Read/write property YScaleFactor The Y axis scale value used to flip the axis direction in a Krovak projected coordinate system.
Read/write property ZCoordinateUnit The unit for the Z coordinate.

IProjectedCoordinateSystem4GEN.Abbreviation Property

The abbreviated name of this spatial reference component.

Public ReadOnly Property Abbreviation As String
public string Abbreviation {get;}

IProjectedCoordinateSystem4GEN.Alias Property

The alias of this spatial reference component.

Public ReadOnly Property Alias As String
public string Alias {get;}

IProjectedCoordinateSystem4GEN.Azimuth Property

The azimuth of a projected coordinate system.

Public Property Azimuth As Double
public double Azimuth {get; set;}

IProjectedCoordinateSystem4GEN.CentralMeridian Property

The central meridian (Lambda0) of a projected coordinate system.

Public Function get_CentralMeridian ( _
    ByVal inDegrees As Boolean _
) As Double
Public Sub set_CentralMeridian ( _
    ByVal inDegrees As Boolean, _
    ByVal CentralMeridian As Double _
)
public double get_CentralMeridian (
    bool inDegrees
);
public void set_CentralMeridian (
    bool inDegrees,
    double CentralMeridian
);

IProjectedCoordinateSystem4GEN.CentralParallel Property

The central parallel (Phi 0) of a projected coordinate system.

Public Property CentralParallel As Double
public double CentralParallel {get; set;}

IProjectedCoordinateSystem4GEN.Changed Method

Notify this object that some of its parts have changed (parameter values, z unit, etc.).

Public Sub Changed ( _
)
public void Changed (
);

IProjectedCoordinateSystem4GEN.CoordinateUnit Property

The linear unit of a projected coordinate system.

Public ReadOnly Property CoordinateUnit As ILinearUnit
public ILinearUnit CoordinateUnit {get;}

IProjectedCoordinateSystem4GEN.FactoryCode Property

The factory code of the spatial reference.

Public ReadOnly Property FactoryCode As Integer
public int FactoryCode {get;}

Remarks

The factory code is an integer identifier that is unique by projection engine object type, such as a projected coordinate system. You can use a factory code in the ISpatialReferenceFactory::CreateProjectedCoordinateSystem method. If you create a custom projected coordinate system, the factory code is zero.

IProjectedCoordinateSystem4GEN.FalseEasting Property

The false easting (X0) of a projected coordinate system.

Public Property FalseEasting As Double
public double FalseEasting {get; set;}

IProjectedCoordinateSystem4GEN.FalseNorthing Property

The false northing (Y0) of a projected coordinate system.

Public Property FalseNorthing As Double
public double FalseNorthing {get; set;}

IProjectedCoordinateSystem4GEN.Forward Method

Projects points from geographic to planar coordinates.

Public Sub Forward ( _
    ByRef Points As WKSPoint[] _
)
public void Forward (
    ref WKSPoint[] Points
);

IProjectedCoordinateSystem4GEN.GeographicCoordinateSystem Property

The geographic coordinate system of a projected coordinate system.

Public ReadOnly Property GeographicCoordinateSystem As IGeographicCoordinateSystem
public IGeographicCoordinateSystem GeographicCoordinateSystem {get;}

IProjectedCoordinateSystem4GEN.GetCentralLongitude Method

Returns CentralLongitude of the projected coordinate system. Always defined, unlike CentralMeridian or LongitudeOfCenter.

Public Function GetCentralLongitude ( _
) As Double
public double GetCentralLongitude (
);

IProjectedCoordinateSystem4GEN.GetDomain Method

Get the domain extent.

Public Sub GetDomain ( _
    ByRef XMin As Double, _
    ByRef XMax As Double, _
    ByRef YMin As Double, _
    ByRef YMax As Double _
)
public void GetDomain (
    ref double XMin,
    ref double XMax,
    ref double YMin,
    ref double YMax
);

IProjectedCoordinateSystem4GEN.GetFalseOriginAndUnits Method

Get the false origin and units.

Public Sub GetFalseOriginAndUnits ( _
    ByRef falseX As Double, _
    ByRef falseY As Double, _
    ByRef xyUnits As Double _
)
public void GetFalseOriginAndUnits (
    ref double falseX,
    ref double falseY,
    ref double xyUnits
);

IProjectedCoordinateSystem4GEN.GetGCSParams Method

Returns 180 degrees and horizon delta in proper GCS units.

Public Sub GetGCSParams ( _
    ByRef p_180 As Double, _
    ByRef pDelta As Double _
)
public void GetGCSParams (
    ref double p_180,
    ref double pDelta
);

IProjectedCoordinateSystem4GEN.GetHorizon Method

Returns the standard horizon polygon, its envelope, and whether it is inclusive or exclusive; the horizon polygon may be 0.

Public Function GetHorizon ( _
    ByRef horizonEnvelope As WKSEnvelope, _
    ByRef Inclusive As Boolean _
) As IGeometry
public IGeometry GetHorizon (
    ref WKSEnvelope horizonEnvelope,
    ref bool Inclusive
);

Remarks

GetHorizon returns, in geographic coordinate system coordinates and unit of measure, the valid geometry of a projected coordinate system. The method also returns whether the geometry should be considered inclusive or exclusive, and its envelope.

IProjectedCoordinateSystem4GEN.GetMDomain Method

Get the measure domain extent.

Public Sub GetMDomain ( _
    ByRef outMMin As Double, _
    ByRef outMMax As Double _
)
public void GetMDomain (
    ref double outMMin,
    ref double outMMax
);

IProjectedCoordinateSystem4GEN.GetMFalseOriginAndUnits Method

Get the measure false origin and units.

Public Sub GetMFalseOriginAndUnits ( _
    ByRef falseM As Double, _
    ByRef mUnits As Double _
)
public void GetMFalseOriginAndUnits (
    ref double falseM,
    ref double mUnits
);

IProjectedCoordinateSystem4GEN.GetNorthPole Method

Returns north pole in projected coordinates, or an empty point if north pole is outside the PCS horizon.

Public Function GetNorthPole ( _
) As WKSPoint
public WKSPoint GetNorthPole (
);

IProjectedCoordinateSystem4GEN.GetNorthPoleGeometry Method

Returns type of north pole geometry.

Public Function GetNorthPoleGeometry ( _
) As esriSRPoleGeometry
public esriSRPoleGeometry GetNorthPoleGeometry (
);

IProjectedCoordinateSystem4GEN.GetNorthPoleLocation Method

Returns type of location of north pole with respect to PCS horizon.

Public Function GetNorthPoleLocation ( _
) As esriSRPoleLocation
public esriSRPoleLocation GetNorthPoleLocation (
);

IProjectedCoordinateSystem4GEN.GetParameters Method

Gets the map projection parameters of a projected coordinate system. The array size needs to be esriSR_MaxParameterCountPrivate.

Public Sub GetParameters ( _
    ByRef parameters As IParameter[] _
)
public void GetParameters (
    ref IParameter[] parameters
);

IProjectedCoordinateSystem4GEN.GetPCSHorizon Method

Returns PCS horizon polygon, its envelope and whether it is inclusive or exclusive; the horizon polygon may be 0.

Public Function GetPCSHorizon ( _
    ByRef horizonEnvelope As WKSEnvelope, _
    ByRef Inclusive As Boolean _
) As IGeometry
public IGeometry GetPCSHorizon (
    ref WKSEnvelope horizonEnvelope,
    ref bool Inclusive
);

IProjectedCoordinateSystem4GEN.GetShiftedHorizon Method

Returns the horizon polygon, shifted once or twice, west/east of standard horizon for a negative/positive shift.

Public Function GetShiftedHorizon ( _
    ByVal shift As Integer _
) As IGeometry
public IGeometry GetShiftedHorizon (
    int shift
);

Remarks

The standard horizon is the valid area of a projected coordinate system, but in geographic coordinate system coordinates and unit of measure. The standard horizon usually has longitude values between +/-180 (or equivalent). If you use -2, -1, 1 or 2 for the shift value, GetShiftedHorizon will translate the horizon by 360 degrees to the left or right.

IProjectedCoordinateSystem4GEN.GetSouthPole Method

Returns south pole in projected coordinates, or an empty point if south pole is outside the PCS horizon.

Public Function GetSouthPole ( _
) As WKSPoint
public WKSPoint GetSouthPole (
);

IProjectedCoordinateSystem4GEN.GetSouthPoleGeometry Method

Returns type of south pole geometry.

Public Function GetSouthPoleGeometry ( _
) As esriSRPoleGeometry
public esriSRPoleGeometry GetSouthPoleGeometry (
);

IProjectedCoordinateSystem4GEN.GetSouthPoleLocation Method

Returns type of location of south pole with respect to PCS horizon.

Public Function GetSouthPoleLocation ( _
) As esriSRPoleLocation
public esriSRPoleLocation GetSouthPoleLocation (
);

IProjectedCoordinateSystem4GEN.GetZDomain Method

Get the Z domain extent.

Public Sub GetZDomain ( _
    ByRef outZMin As Double, _
    ByRef outZMax As Double _
)
public void GetZDomain (
    ref double outZMin,
    ref double outZMax
);

IProjectedCoordinateSystem4GEN.GetZFalseOriginAndUnits Method

Get the Z false origin and units.

Public Sub GetZFalseOriginAndUnits ( _
    ByRef falseZ As Double, _
    ByRef zUnits As Double _
)
public void GetZFalseOriginAndUnits (
    ref double falseZ,
    ref double zUnits
);

IProjectedCoordinateSystem4GEN.HasMPrecision Method

Returns true when m-value precision information has been defined.

Public Function HasMPrecision ( _
) As Boolean
public bool HasMPrecision (
);

IProjectedCoordinateSystem4GEN.HasXYPrecision Method

Returns true when (x,y) precision information has been defined.

Public Function HasXYPrecision ( _
) As Boolean
public bool HasXYPrecision (
);

IProjectedCoordinateSystem4GEN.HasZPrecision Method

Returns true when z-value precision information has been defined.

Public Function HasZPrecision ( _
) As Boolean
public bool HasZPrecision (
);

IProjectedCoordinateSystem4GEN.Height Property

The height above the sphere in projected coordinate system units.

Public Property Height As Double
public double Height {get; set;}

IProjectedCoordinateSystem4GEN.Horizon Property

The mathematical limits of a projected coordinate system.

Public Function get_Horizon ( _
    ByVal horizonIndex As Integer _
) As IntPtr
public IntPtr get_Horizon (
    int horizonIndex
);

Remarks

Obsolete. Use IProjectedCoordinateSystem2::GetHorizon.

IProjectedCoordinateSystem4GEN.HorizonCount Property

The number of shapes that describe the limits of a ProjCS.

Public ReadOnly Property HorizonCount As Integer
public int HorizonCount {get;}

Remarks

Obsolete. Use IProjectedCoordinateSystem2::GetHorizon.

IProjectedCoordinateSystem4GEN.Inverse Method

Projects points from planar to geographic coordinates.

Public Sub Inverse ( _
    ByRef Points As WKSPoint[] _
)
public void Inverse (
    ref WKSPoint[] Points
);

IProjectedCoordinateSystem4GEN.InverseWithShift Method

Projects points from planar to geographic coordinates. Deals with geographic coordinates in ranges other than +-180.

Public Sub InverseWithShift ( _
    ByVal shift As Double, _
    ByRef Points As WKSPoint[] _
)
public void InverseWithShift (
    double shift,
    ref WKSPoint[] Points
);

IProjectedCoordinateSystem4GEN.IsEqualNoNames Method

Compares two projected coordinate systems for equality but ignores their names.

Public Function IsEqualNoNames ( _
    ByVal pOther As IProjectedCoordinateSystem _
) As Boolean
public bool IsEqualNoNames (
    IProjectedCoordinateSystem pOther
);

IProjectedCoordinateSystem4GEN.IsHorizonConvexHull Method

Returns true if PCS horizon is convex.

Public Function IsHorizonConvexHull ( _
) As Boolean
public bool IsHorizonConvexHull (
);

Remarks

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

IProjectedCoordinateSystem4GEN.IsHorizonEdgeDuplicated Method

Returns true if some edges of PCS horizon project inversely to identical lines.

Public Function IsHorizonEdgeDuplicated ( _
) As Boolean
public bool IsHorizonEdgeDuplicated (
);

Remarks

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

IProjectedCoordinateSystem4GEN.IsHorizonEntireWorld Method

Returns true if PCS horizon contains the entire world.

Public Function IsHorizonEntireWorld ( _
) As Boolean
public bool IsHorizonEntireWorld (
);

Remarks

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

IProjectedCoordinateSystem4GEN.IsPrecisionEqual Method

Returns TRUE when the precision information for the two spatial references is the same.

Public Sub IsPrecisionEqual ( _
    ByVal otherSR As ISpatialReference, _
    ByRef IsPrecisionEqual As Boolean _
)
public void IsPrecisionEqual (
    ISpatialReference otherSR,
    ref bool IsPrecisionEqual
);

IProjectedCoordinateSystem4GEN.LatitudeOf1st Property

The latitude of the first point (Phi 1) of a projected coordinate system.

Public Property LatitudeOf1st As Double
public double LatitudeOf1st {get; set;}

IProjectedCoordinateSystem4GEN.LatitudeOf2nd Property

The latitude of the second point (Phi 2) of a projected coordinate system.

Public Property LatitudeOf2nd As Double
public double LatitudeOf2nd {get; set;}

IProjectedCoordinateSystem4GEN.LatitudeOfCenter Property

The latitude of center (Phi C) of a projected coordinate system.

Public Property LatitudeOfCenter As Double
public double LatitudeOfCenter {get; set;}

IProjectedCoordinateSystem4GEN.LatitudeOfOrigin Property

The latitude of the origin (Phi 0) of a projected coordinate system.

Public Property LatitudeOfOrigin As Double
public double LatitudeOfOrigin {get; set;}

IProjectedCoordinateSystem4GEN.LongitudeOf1st Property

The longitude of the first point (Lambda 1) of a projected coordinate system.

Public Property LongitudeOf1st As Double
public double LongitudeOf1st {get; set;}

IProjectedCoordinateSystem4GEN.LongitudeOf2nd Property

The longitude of the second point (Lambda 2) of a projected coordinate system.

Public Property LongitudeOf2nd As Double
public double LongitudeOf2nd {get; set;}

IProjectedCoordinateSystem4GEN.LongitudeOfCenter Property

The longitude of center (Lam C) of a projected coordinate system.

Public Property LongitudeOfCenter As Double
public double LongitudeOfCenter {get; set;}

IProjectedCoordinateSystem4GEN.LongitudeOfOrigin Property

The longitude of origin (Lambda0) of a projected coordinate system.

Public Property LongitudeOfOrigin As Double
public double LongitudeOfOrigin {get; set;}

IProjectedCoordinateSystem4GEN.Name Property

The name of this spatial reference component.

Public ReadOnly Property Name As String
public string Name {get;}

IProjectedCoordinateSystem4GEN.PrecisionExImpl Property

An opaque reference to the precision information (including z/m awareness) implementation for this spatial reference.

Public ReadOnly Property PrecisionExImpl As Long
public long PrecisionExImpl {get;}

IProjectedCoordinateSystem4GEN.PrecisionImpl Property

An opaque reference to the precision information implementation for this spatial reference.

Public ReadOnly Property PrecisionImpl As Long
public long PrecisionImpl {get;}

IProjectedCoordinateSystem4GEN.Projection Property

The map projection of a projected coordinate system.

Public ReadOnly Property Projection As IProjection
public IProjection Projection {get;}

IProjectedCoordinateSystem4GEN.PseudoStandardParallel1 Property

The latitude on an oblique spheroid that defines the oblique cone for a Krovak projected coordinate system.

Public Property PseudoStandardParallel1 As Double
public double PseudoStandardParallel1 {get; set;}

IProjectedCoordinateSystem4GEN.PutLinearAndAngularUnits Method

Modify linear unit of projected coordinates and angular unit of associated geographic coordinates.

Public Sub PutLinearAndAngularUnits ( _
    ByVal LinearUnit As ILinearUnit, _
    ByVal AngularUnit As IAngularUnit _
)
public void PutLinearAndAngularUnits (
    ILinearUnit LinearUnit,
    IAngularUnit AngularUnit
);

IProjectedCoordinateSystem4GEN.Remarks Property

The comment string of this spatial reference component.

Public ReadOnly Property Remarks As String
public string Remarks {get;}

IProjectedCoordinateSystem4GEN.Rotation Property

The rotation value used to change the axis directions in a Krovak projected coordinate system.

Public Property Rotation As Double
public double Rotation {get; set;}

IProjectedCoordinateSystem4GEN.ScaleFactor Property

The scale factor (K0) of a projected coordinate system.

Public Property ScaleFactor As Double
public double ScaleFactor {get; set;}

IProjectedCoordinateSystem4GEN.SetDomain Method

Set the xy domain extent.

Public Sub SetDomain ( _
    ByVal XMin As Double, _
    ByVal XMax As Double, _
    ByVal YMin As Double, _
    ByVal YMax As Double _
)
public void SetDomain (
    double XMin,
    double XMax,
    double YMin,
    double YMax
);

IProjectedCoordinateSystem4GEN.SetFalseOriginAndUnits Method

Set the false origin and units.

Public Sub SetFalseOriginAndUnits ( _
    ByVal falseX As Double, _
    ByVal falseY As Double, _
    ByVal xyUnits As Double _
)
public void SetFalseOriginAndUnits (
    double falseX,
    double falseY,
    double xyUnits
);

IProjectedCoordinateSystem4GEN.SetMDomain Method

Set the measure domain extent.

Public Sub SetMDomain ( _
    ByVal inMMin As Double, _
    ByVal inMMax As Double _
)
public void SetMDomain (
    double inMMin,
    double inMMax
);

IProjectedCoordinateSystem4GEN.SetMFalseOriginAndUnits Method

Set the measure false origin and units.

Public Sub SetMFalseOriginAndUnits ( _
    ByVal falseM As Double, _
    ByVal mUnits As Double _
)
public void SetMFalseOriginAndUnits (
    double falseM,
    double mUnits
);

IProjectedCoordinateSystem4GEN.SetZDomain Method

Set the z domain extent.

Public Sub SetZDomain ( _
    ByVal inZMin As Double, _
    ByVal inZMax As Double _
)
public void SetZDomain (
    double inZMin,
    double inZMax
);

IProjectedCoordinateSystem4GEN.SetZFalseOriginAndUnits Method

Set the Z false origin and units.

Public Sub SetZFalseOriginAndUnits ( _
    ByVal falseZ As Double, _
    ByVal zUnits As Double _
)
public void SetZFalseOriginAndUnits (
    double falseZ,
    double zUnits
);

IProjectedCoordinateSystem4GEN.SpatialReferenceImpl Property

SpatialReferenceImpl.

Public ReadOnly Property SpatialReferenceImpl As Long
public long SpatialReferenceImpl {get;}

IProjectedCoordinateSystem4GEN.StandardParallel1 Property

The first parallel (Phi 1) of a projected coordinate system.

Public Property StandardParallel1 As Double
public double StandardParallel1 {get; set;}

IProjectedCoordinateSystem4GEN.StandardParallel2 Property

The second parallel (Phi 2) of a projected coordinate system.

Public Property StandardParallel2 As Double
public double StandardParallel2 {get; set;}

IProjectedCoordinateSystem4GEN.Usage Property

The usage notes of a projected coordinate system.

Public ReadOnly Property Usage As String
public string Usage {get;}

IProjectedCoordinateSystem4GEN.XScaleFactor Property

The X axis scale value used to flip the axis direction in a Krovak projected coordinate system.

Public Property XScaleFactor As Double
public double XScaleFactor {get; set;}

IProjectedCoordinateSystem4GEN.YScaleFactor Property

The Y axis scale value used to flip the axis direction in a Krovak projected coordinate system.

Public Property YScaleFactor As Double
public double YScaleFactor {get; set;}

IProjectedCoordinateSystem4GEN.ZCoordinateUnit Property

The unit for the Z coordinate.

Public Property ZCoordinateUnit As ILinearUnit
public ILinearUnit ZCoordinateUnit {get; set;}

Classes that implement IProjectedCoordinateSystem4GEN

Classes Description
ProjectedCoordinateSystem Creates a projected coordinate system.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.