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