Use a geoprocessing service and a set of features to identify statistically significant hot spots and cold spots.
Use case
This tool identifies statistically significant spatial clusters of high values (hot spots) and low values (cold spots). For example, a hotspot analysis based on the frequency of 911 calls within a set region.
How to use the sample
Select a date range (between 1998-01-01 and 1998-05-31) from the dialog and tap on Analyze. The results will be shown on the map upon successful completion of the GeoprocessingJob
.
How it works
- Create a
GeoprocessingTask
with the URL set to the endpoint of a geoprocessing service. - Create a query string with the date range as an input of
GeoprocessingParameters
. - Use the
GeoprocessingTask
to create aGeoprocessingJob
with theGeoprocessingParameters
instance. - Start the
GeoprocessingJob
and wait for it to complete and return aGeoprocessingResult
. - Get the resulting
ArcGISMapImageLayer
usingGeoprocessingResult.MapImageLayer
. - Add the layer to the map's operational layers.
Relevant API
- GeoprocessingJob
- GeoprocessingParameters
- GeoprocessingResult
- GeoprocessingTask
Tags
analysis, density, geoprocessing, hot spots, hotspots
Sample Code
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage x:Class="ArcGISRuntime.Samples.AnalyzeHotspots.AnalyzeHotspots"
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">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Label Grid.Row="0"
Grid.Column="0"
HorizontalTextAlignment="Start"
Text="Start date:"
VerticalTextAlignment="Center" />
<DatePicker x:Name="StartDate"
Grid.Row="0"
Grid.Column="1"
Date="1/01/98" />
<Label Grid.Row="1"
Grid.Column="0"
HorizontalTextAlignment="Start"
Text="End date:"
VerticalTextAlignment="Center" />
<DatePicker x:Name="EndDate"
Grid.Row="1"
Grid.Column="1"
Date="1/31/98" />
<Button Grid.Row="2"
Grid.Column="0"
Grid.ColumnSpan="2"
Clicked="OnRunAnalysisClicked"
Text="Run Analysis" />
<ActivityIndicator x:Name="MyActivityIndicator"
Grid.Row="3"
Grid.Column="0"
Grid.ColumnSpan="2"
IsVisible="False" />
<esriUI:MapView x:Name="MyMapView"
Grid.Row="4"
Grid.Column="0"
Grid.ColumnSpan="2" />
</Grid>
</ContentPage>