We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea8be5a commit a80e22fCopy full SHA for a80e22f
Algorithms/Other/Geohash.cs
@@ -6,10 +6,10 @@
6
7
namespace Algorithms.Other
8
{
9
- public class Geohash
+ public static class Geohash
10
11
- private static readonly string Base32Characters = "0123456789bcdefghjkmnpqrstuvwxyz"; // Convert latitude and longitude coordinates into a concise string
12
- private static readonly int GeohashLength = 12; // ± 1.86 cm
+ private const string Base32Characters = "0123456789bcdefghjkmnpqrstuvwxyz"; // Convert latitude and longitude coordinates into a concise string
+ private const int GeohashLength = 12; // ± 1.86 cm
13
14
/// <summary>
15
/// Encodes the provided latitude and longitude coordinates into a Geohash string.
0 commit comments