Catégories :

Fonctions géospatiales

ST_GEOMPOINTFROMGEOHASH

Renvoie un objet GEOMETRY pour le point qui représente le centre d’un geohash.

Voir aussi :

ST_GEOHASH, ST_GEOMFROMGEOHASH

Syntaxe

ST_GEOMPOINTFROMGEOHASH( <geohash> )
Copy

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;
Copy
+----------------------------------+
| GEOMETRY_CENTER_POINT_OF_GEOHASH |
|----------------------------------|
| {                                |
|   "coordinates": [               |
|     -1.223061000000001e+02,      |
|     3.755416199999996e+01        |
|   ],                             |
|   "type": "Point"                |
| }                                |
+----------------------------------+