A multipart geometry can be densified by adding interpolated points at regular intervals. Generalizing multipart geometry simplifies it while preserving its general shape. Densifying a multipart geometry adds more vertices at regular intervals.
Use case
The sample shows a polyline representing a ship's location at irregular intervals. The density of vertices along the ship's route is appropriate to represent the path of the ship at the sample map view's initial scale. However, that level of detail may be too great if you wanted to show a polyline of the ship's movement down the whole of the Willamette river. Then, you might consider generalizing the polyline to still faithfully represent the ship's passage on the river without having an overly complicated geometry.
Densifying a multipart geometry can be used to more accurately represent curved lines or to add more regularity to the vertices making up a multipart geometry.
How to use the sample
Use the sliders to control the parameters of the densify and generalize methods.
How it works
- Use the static method
GeometryEngine.Densify(polyline, maxSegmentLength)
to densify the polyline object. The resulting polyline object will have more points along the line, so that there are no points greater thanmaxSegmentLength
from the next point. - Use the static method
GeometryEngine.Generalize(polyline, maxDeviation, true)
to generalize the polyline object. The resulting polyline object will have points shifted from the original line to simplify the shape. None of these points can deviate farther from the original line thanmaxDeviation
. The last parameter,removeDegenerateParts
, will clean up extraneous parts of a multipart geometry. This will have no effect in this sample as the polyline does not contain extraneous parts. - Note that
maxSegmentLength
andmaxDeviation
are in the units of the geometry's coordinate system. In this example, a cartesian coordinate system is used and at a small enough scale that geodesic distances are not required.
Relevant API
- GeometryEngine
- Multipoint
- Point
- PointCollection
- Polyline
- SimpleLineSymbol
- SpatialReference
Tags
data, densify, generalize, simplify
Sample Code
<UserControl
x:Class="ArcGIS.UWP.Samples.DensifyAndGeneralize.DensifyAndGeneralize"
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}">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
Text="Adjust the sliders to see the resulting generalized or densified polyline."
TextWrapping="Wrap"
FontWeight="SemiBold" />
<TextBlock Grid.Row="1"
Text="Max. Deviation (Generalize)" FontWeight="Bold" />
<Slider x:Name="DeviationSlider"
Value="10" Minimum="1" Maximum="250"
Grid.Row="2" Margin="5" />
<TextBlock Grid.Row="3"
Text="Max. Segment length (Densify)" FontWeight="Bold" />
<Slider x:Name="SegmentLengthSlider"
Grid.Row="4" Margin="5"
Value="100" Minimum="100" Maximum="500" />
<TextBlock x:Name="ResultLabel" Grid.Row="5"
Text="Adjust a slider to start"
TextWrapping="Wrap"
FontWeight="SemiBold"
Foreground="RoyalBlue" />
</Grid>
</Border>
</Grid>
</UserControl>