Simplification 1.0.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Simplification --version 1.0.2
NuGet\Install-Package Simplification -Version 1.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Simplification" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Simplification --version 1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Simplification, 1.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Simplification as a Cake Addin #addin nuget:?package=Simplification&version=1.0.2 // Install Simplification as a Cake Tool #tool nuget:?package=Simplification&version=1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Simplification.NET
C# wrapper for Rust library by urschrei for Ramer-Douglas-Peucker and Visvalingam-Whyatt algorithms.
Usage
using Simplification.Algorithms;
double[][] input = [
[0.0, 0.0],
[5.0, 4.0],
[11.0, 5.5],
[17.3, 3.2],
[27.8, 0.1],
];
ISimplificationAlgorithm rdpAlgorithm = new RdpAlgorithm();
// For RDP, Try an epsilon of 1.0 to start with. Other sensible values include 0.01, 0.001
double[][] simplified = rdpAlgorithm.Simplify(input, 1.0); // returns simplified data
UIntPtr[] simplifiedIndices = rdpAlgorithm.SimplifyIdx(input, 1.0); // returns simplified indices
ISimplificationAlgorithm visvAlgorithm = new VisvalingamWhyattAlgorithm();
simplified = visvAlgorithm.Simplify(input, 1.0); // returns simplified data
simplifiedIndices = visvAlgorithm.SimplifyIdx(input, 1.0); // returns simplified indices
simplified = ((VisvalingamWhyattAlgorithm)visvAlgorithm)
.PreserveTopologySimplify(input, 1.0); // returns simplified data, while preserving topology
Benchmarks
Ramer-Douglas Peucker algorithm
Visvalingam-Whyatt algorithm
Simplified line
Before simplification
After simplification
RDP 5 tolerance
Visvalingam 10 tolerance
Visvalingam preserve topology 10 tolerance
Package
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Remove temporary array in Simplification proccess and reduce memory usage.