lynMarkdigRenderTest79 1.0.0
dotnet add package lynMarkdigRenderTest79 --version 1.0.0
NuGet\Install-Package lynMarkdigRenderTest79 -Version 1.0.0
<PackageReference Include="lynMarkdigRenderTest79" Version="1.0.0" />
paket add lynMarkdigRenderTest79 --version 1.0.0
#r "nuget: lynMarkdigRenderTest79, 1.0.0"
// Install lynMarkdigRenderTest79 as a Cake Addin #addin nuget:?package=lynMarkdigRenderTest79&version=1.0.0 // Install lynMarkdigRenderTest79 as a Cake Tool #tool nuget:?package=lynMarkdigRenderTest79&version=1.0.0
Convert map coordinates to a sequence of words and back.
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("---");
}
}
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("---");
}
}
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 |
---|---|---|
1.0.0 | 0 | 11/24/2020 |