ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data.Raster Namespace / Raster Class / PixelToMap Method
Pixel space coordinate column
Pixel space coordinate row

In This Topic
    PixelToMap Method
    In This Topic
    Converts a location in pixel space (Column and Row) to map space (X and Y). This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public Tuple<double,double> PixelToMap( 
       int column,
       int row
    )
    Public Function PixelToMap( _
       ByVal column As Integer, _
       ByVal row As Integer _
    ) As Tuple(Of Double,Double)

    Parameters

    column
    Pixel space coordinate column
    row
    Pixel space coordinate row

    Return Value

    A tuple containing two double precision values representing the map space coordinates x and y respectively.
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also