ST_LatFromGeoHash
You are viewing an old version of this article. View
the current version here.
MariaDB starting with 11.7
ST_LatFromGeoHash was added in MariaDB 11.7.
Syntax
ST_LatFromGeoHash(geohash)
Description
Decodes a given geohash
string and returns the latitude in the interval [90, -90].
If the argument is NULL, the return value is NULL. If the argument is invalid, an ER_INCORRECT_TYPE error is thrown.
Examples
SELECT ST_LatFromGeoHash('zzzzzzzzz'), ST_LatFromGeoHash('xvrfxvrfxvrfxvr'); +--------------------------------+--------------------------------------+ | ST_LatFromGeoHash('zzzzzzzzz') | ST_LatFromGeoHash('xvrfxvrfxvrfxvr') | +--------------------------------+--------------------------------------+ | 90 | 30 | +--------------------------------+--------------------------------------+
See Also
Comments
Comments loading...
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.