ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Geometry Namespace / SpatialReference Class / IsGeographic Property
Example

In This Topic
    IsGeographic Property (SpatialReference)
    In This Topic
    Gets if this is a geographic coordinate system.
    Syntax
    public bool IsGeographic {get;}
    Public ReadOnly Property IsGeographic As Boolean
    Example
    Use WGS84 SpatialReference
    SpatialReference wgs84 = SpatialReferences.WGS84;
    bool isProjected = wgs84.IsProjected;     // false
    bool isGeographic = wgs84.IsGeographic;   // true
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also