GeoHashFromLongValue Method |
Creates a
GeoHash from a long value
Namespace:
VelocityDBExtensions.Geo
Assembly:
VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 11.1.0.0 (11.1.0)
Syntaxpublic static GeoHash FromLongValue(
long hashVal,
int significantBits = 64
)
Public Shared Function FromLongValue (
hashVal As Long,
Optional significantBits As Integer = 64
) As GeoHash
public:
static GeoHash^ FromLongValue(
long long hashVal,
int significantBits = 64
)
static member FromLongValue :
hashVal : int64 *
?significantBits : int
(* Defaults:
let _significantBits = defaultArg significantBits 64
*)
-> GeoHash
Parameters
- hashVal
- Type: SystemInt64
the GeoHash as a Int64 - significantBits (Optional)
- Type: SystemInt32
How many bits to use from the long value (64 recommended and is default)
Return Value
Type:
GeoHashA
GeoHash
See Also