RedCorners.Components.CoordsWords 5.10.0

.NET Standard 2.0
dotnet add package RedCorners.Components.CoordsWords --version 5.10.0
NuGet\Install-Package RedCorners.Components.CoordsWords -Version 5.10.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="RedCorners.Components.CoordsWords" Version="5.10.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RedCorners.Components.CoordsWords --version 5.10.0
#r "nuget: RedCorners.Components.CoordsWords, 5.10.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 RedCorners.Components.CoordsWords as a Cake Addin
#addin nuget:?package=RedCorners.Components.CoordsWords&version=5.10.0

// Install RedCorners.Components.CoordsWords as a Cake Tool
#tool nuget:?package=RedCorners.Components.CoordsWords&version=5.10.0

Convert map coordinates to a sequence of words and back.

NuGet: https://www.nuget.org/packages/RedCorners.Components.CoordsWords

GitHub: https://github.com/samafshari/RedCorners.Components.CoordsWords

Getting Started

Install the NuGet and use the RedCorners.Components namespace:

using RedCorners.Components;
var coordsWords = new CoordsWords();

You can convert a pair of latitude and longitudes to a sequence of words like this:

coordsWords.Latitude = latitude;
coordsWords.Longitude = longitude;
string[] sequence = coordsWords.Words;

You can convert back the sequence of words to the coordinates like this:

coordsWords.Words = sequence;
var latitude = coordsWords.Latitude;
var longitude = coordsWords.Longitude;

By default, the library comes with a list of English words. You can use an arbitrary array of strings instead of the default index. There are no limitations to what you can use, other than having more than one entries, and no repetitions:

var lines = File.ReadAllLines("words.txt");
var coordsWords = new CoordsWords(lines);

The more words in your index file, the less words the output sequence will have. The default index results in sequences with four words.

It is strongly recommended to use a custom index file, as the default index may change between releases, resulting in changes in the outputted sequence for a given input.

Example

Input:  1, 1
Words:  canadian provides certification one
Back:   1.0000, 1.0000
---
Input:  0, 0
Words:  designing reached proposed one
Back:   0.0000, 0.0000
---
Input:  -90, -180
Words:  prefers envelope warranty more
Back:   -90.0000, -180.0000
---
Input:  90, 180
Words:  accessibility rays marketing use
Back:   90.0000, 180.0000
---
Input:  -90, 180
Words:  guarantee boulder warranty more
Back:   -90.0000, 180.0000
---
Input:  90, -180
Words:  archives giants marketing use
Back:   90.0000, -180.0000
---
Input:  59.3232, 18.0757
Words:  deaths firmware two which
Back:   59.3232, 18.0757
---
Input:  59.32323232, 18.0757757757
Words:  deaths firmware two which
Back:   59.3232, 18.0757
using RedCorners.Components;

static void Main(string[] args)
{
    var testPoints = new[]
    {
        (1.0, 1.0),
        (0.0, 0.0),
        (-90.0, -180.0),
        (90.0, 180.0),
        (-90.0, 180.0),
        (90.0, -180.0),
        (59.3232,18.0757),
        (59.32323232,18.0757757757)
    };

	foreach (var p in testPoints)
	{
		Console.WriteLine($"Input:\t{p.Item1}, {p.Item2}");
		var coordsWords = new CoordsWords();
		coordsWords.Latitude = p.Item1;
		coordsWords.Longitude = p.Item2;
		var words = coordsWords.Words;
		Console.WriteLine($"Words:\t{coordsWords}");

		
		var reverse = new CoordsWords();
		reverse.Words = words;
		Console.WriteLine($"Back:\t{reverse.Latitude:N4}, {reverse.Longitude:N4}");
		Console.WriteLine("---");
	}
}
Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.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.

Version Downloads Last updated
5.10.0 569 12/31/2019
5.9.0 375 12/18/2019
5.8.0 359 11/29/2019
5.7.0 364 11/29/2019
5.6.0 362 11/21/2019
5.5.0 359 11/20/2019
5.4.0 361 11/20/2019
5.3.0 359 11/20/2019
5.2.0 367 11/16/2019
5.1.0 354 11/16/2019

Convert map coordinates to a sequence of words and back.