Identify raster cell

View inAndroidFormsUWPWPFWinUIiOSView on GitHub

Get the cell value of a local raster at the tapped location and display the result in a callout.

Image of identify raster cell

Use case

You may want to identify a raster layer to get its exact cell value in the case the approximate value conveyed by its symbology is not sufficient. The information available for the raster cell depends on the type of raster layer being identified. For example, a 3-band satellite or aerial image might provide 8-bit RGB values, whereas a digital elevation model (DEM) would provide floating point z values. By identifying a raster cell of a DEM, you can retrieve the precise elevation of a location.

How to use the sample

Tap or move your cursor over an area of the raster to identify a raster cell and display it's attributes in a callout.

How it works

  1. Create a GeoViewTapped event on the MapView.
  2. On tap:
  • Call IdentifyLayerAsync passing in the screen point, tolerance, and maximum number of results per layer.
  • Await the result of the identify and then get the GeoElement from the layer result.
  • Create a callout at the calculated map point and populate the callout content with text from the RasterCell attributes.

Relevant API

  • GeoView.IdentifyLayerAsync
  • IdentifyLayerResult
  • RasterCell
  • RasterCell.Attributes
  • RasterLayer

Offline data

This sample uses MODIS raster imagery. Data is downloaded from ArcGIS Online automatically.

About the data

The data shown is an NDVI classification derived from MODIS imagery between 27 Apr 2020 and 4 May 2020. It comes from the NASA Worldview application. In a normalized difference vegetation index, or NDVI, values range between -1 and +1 with the positive end of the spectrum showing green vegetation.

Tags

band, cell, cell value, continuous, discrete, identify, NDVI, pixel, pixel value, raster

Sample Code

IdentifyRasterCell.xamlIdentifyRasterCell.xamlIdentifyRasterCell.xaml.cs
Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<ContentPage x:Class="ArcGISRuntimeXamarin.Samples.IdentifyRasterCell.IdentifyRasterCell"
             xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:esriUI="clr-namespace:Esri.ArcGISRuntime.Xamarin.Forms;assembly=Esri.ArcGISRuntime.Xamarin.Forms"
             xmlns:resources="clr-namespace:Forms.Resources">
    <RelativeLayout>
        <esriUI:MapView x:Name="MyMapView"
                        BindingContext="{x:Reference Name=ResponsiveFormContainer}"
                        Style="{StaticResource MapWithFormStyle}" />
        <resources:ResponsiveFormContainer x:Name="ResponsiveFormContainer">
            <Label Grid.Row="1"
                   Grid.Column="1"
                   Text="Tap to identify raster cell." />
        </resources:ResponsiveFormContainer>
    </RelativeLayout>
</ContentPage>

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