Columbae.GeoJson 1.1.0

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Columbae.GeoJson --version 1.1.0
NuGet\Install-Package Columbae.GeoJson -Version 1.1.0
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="Columbae.GeoJson" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Columbae.GeoJson --version 1.1.0
#r "nuget: Columbae.GeoJson, 1.1.0"
#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 Columbae.GeoJson as a Cake Addin
#addin nuget:?package=Columbae.GeoJson&version=1.1.0

// Install Columbae.GeoJson as a Cake Tool
#tool nuget:?package=Columbae.GeoJson&version=1.1.0

Columbae

A geo library, based on Polylines, for dotnet core

Polylines

The polylines concept is designed by google: https://developers.google.com/maps/documentation/utilities/polylinealgorithm

Documentation

Encoding & decoding

Encoding multiple points

Encoding polyline can be done, just by executing the ToString() method overload.

var points = new List<Polypoint> {
    new Polypoint(latitude: 41.86231, longitude: -87.63804),
    new Polypoint(latitude: 41.87458, longitude: -87.63460),
};
var polyline = new Polyline(points);

Console.WriteLine(polyline.ToString()); // mfo~Fvx{uOukAoT

Decoding a polyline string to Points

Decoding a polyline can be done, just by passing the poly line string to the constructor.

var polylineString = "mfo~Fvx{uOukAoT";
var polyline = new Polyline(polylineString);

foreach(var point in polyline.Points)
{
    Console.WriteLine(point);
}

Origin

Credits

The actual parsing logic is based on the repo of Polyliner.NET by sglogowski.

Name

Named after the fast moving star Mu Columbae, which is a Runaway star. A runaway star is one that is moving through space with an abnormally high velocity relative to the surrounding interstellar medium. The proper motion of a runaway star often points exactly away from a stellar association, of which the star was formerly a member, before it was hurled out.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.1-preview 295 10/26/2020
1.1.0 423 10/26/2020