ST_LongFromGeoHash
MariaDB starting with 11.7
ST_LongFromGeoHash was added in MariaDB 11.7.
Syntax
ST_LongFromGeoHash(geohash)
Description
Decodes a given geohash
string and returns the longitude in the interval [180, -180].
If the argument is NULL, the return value is NULL. If the argument is invalid, an ER_INCORRECT_TYPE error is thrown.
The ST_GeoHash function can be used to generate geohashes.
Examples
SELECT ST_LongFromGeoHash('zzzzzzzzz'), ST_LongFromGeoHash('sj248j248j248j2'); +---------------------------------+---------------------------------------+ | ST_LongFromGeoHash('zzzzzzzzz') | ST_LongFromGeoHash('sj248j248j248j2') | +---------------------------------+---------------------------------------+ | 180 | 0 | +---------------------------------+---------------------------------------+
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.