package oolc
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=5549cec5aa8512c389b4cd3b4acc13937409a8949fcf750c5474de665959a3f3
md5=760e31b3be3eb5699d9d038760901e04
doc/oolc/Oolc/index.html
Module Oolc
An OCaml Implementation of Open Location Code.
type codeArea = {latitudeLo : float;longitudeLo : float;latitudeHi : float;longitudeHi : float;latitudeCenter : float;longitudeCenter : float;codeLength : int;
}Representation of an area indicated by a code.
Exception raised when asking to encode a location with too small a code length.
isValid s returns a boolean indicating whether the string is a valid Open Location Code sequence or not.
isShort s returns a boolean indicating whether the string is a valid short Open Location Code sequence or not.
isFull s returns a boolean indicating whether the string is a valid full Open Location Code sequence or not.
encode latitude longitude returns an Open Location code corresponding to the location given. An optional length can be given, if not specified, a code with 10 characters will be generated. If the length asked is too small, Invalid_Open_Location_Code-length is raised.
val decode : string -> codeAreadecode c returns the coordinates corresponding to the c, if the code is not valid, an exception is raised.
shortenBy4 c latitude longitude tries to remove the first four characters of c if it is a valid code. This will only succeed if both the latitude and longitude are less than 0.25 degrees from the code center. If not, the original code is returned.
shortenBy6 c latitude longitude tries to remove the first six characters of c if it is a valid code. This will only succeed if both the latitude and longitude are less than 0.0125 degrees from the code center. If not, the original code is returned.
recoverNearest c latitude longitude returns the nearest full Open Location Code matching with the short code c and the location provided by latitude and longitude.