Determine spatial relationships between two geometries.
Use case
In case of a natural disaster, emergency services can represent the affected areas using polygons. By determining the spatial relationships between these and any other existing features such as populated areas, infrastructure, or natural resources, it is possible to quickly determine which of the existing features might be affected or is in further danger, helping to assess risk and define further action.
How to use the sample
Select one of the three graphics. The tree view will list the relationships the selected graphic has to the other graphic geometries.
How it works
- Get the geometry from two different graphics. In this example the geometry of the selected graphic is compared to the geometry of each unselected graphic.
- Use the methods in
GeometryEngine
to check the relationship between the geometries, e.g.contains
,disjoint
,intersects
, etc. If the method returnstrue
, the relationship exists.
Relevant API
- Geometry
- GeometryEngine
- GeometryEngine.Contains
- GeometryEngine.Crosses
- GeometryEngine.Disjoint
- GeometryEngine.Intersects
- GeometryEngine.Overlaps
- GeometryEngine.Touches
- GeometryEngine.Within
- GeometryType
- Graphic
- Point
- Polygon
- Polyline
Tags
geometries, relationship, spatial analysis
Sample Code
<UserControl x:Class="ArcGISRuntime.WinUI.Samples.SpatialRelationships.SpatialRelationships"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls">
<Grid>
<esriUI:MapView x:Name="MyMapView" />
<Border Style="{StaticResource BorderStyle}">
<TextBlock x:Name="ResultTextbox"
Grid.Column="0"
Text="Tap a graphic to see its relationship with the others."
TextWrapping="Wrap" />
</Border>
</Grid>
</UserControl>