- Catégories :
ST_GEOMPOINTFROMGEOHASH¶
Renvoie un objet GEOMETRY pour le point qui représente le centre d’un geohash.
- Voir aussi :
Syntaxe¶
ST_GEOMPOINTFROMGEOHASH( <geohash> )
Arguments¶
geohash
L’argument doit être un geohash.
Renvoie¶
Renvoie une valeur de type GEOMETRY qui représente le point qui est le centre du geohash.
Exemples¶
L’exemple suivant renvoie l’objet GEOMETRY pour le point au centre d’un geohash :
SELECT ST_GEOMPOINTFROMGEOHASH('9q9j8ue2v71y5zzy0s4q')
AS geometry_center_point_of_geohash;
+----------------------------------+
| GEOMETRY_CENTER_POINT_OF_GEOHASH |
|----------------------------------|
| { |
| "coordinates": [ |
| -1.223061000000001e+02, |
| 3.755416199999996e+01 |
| ], |
| "type": "Point" |
| } |
+----------------------------------+