ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Geometry Namespace / GeographicTransformation Class / Create Method / Create(Int32,Boolean) Method
The well-known ID of the geographic transformation to be created.
(Optional) Default is true. If false, the created transformation is inverted.
Example

In This Topic
    Create(Int32,Boolean) Method
    In This Topic
    Creates a GeographicTransformation instance from a well-known ID.
    Syntax
    Public Overloads Shared Function Create( _
       ByVal wkid As Integer, _
       Optional ByVal transformForward As Boolean _
    ) As GeographicTransformation

    Parameters

    wkid
    The well-known ID of the geographic transformation to be created.
    transformForward
    (Optional) Default is true. If false, the created transformation is inverted.

    Return Value

    Example
    Create Geographic Transformation
    {
      // create from wkid
      GeographicTransformation gt1478 =
        ArcGIS.Core.Geometry.GeographicTransformation.Create(1478);
      string name = gt1478.Name;
      string wkt = gt1478.Wkt;
      int wkid = gt1478.Wkid;
    
      // create from wkt
      GeographicTransformation another_gt1478 =
           ArcGIS.Core.Geometry.GeographicTransformation.Create(wkt);
    
      // inverse
      GeographicTransformation inverse_gt148 =
                     another_gt1478.GetInverse() as GeographicTransformation;
      bool isForward = inverse_gt148.IsForward;
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also