- Kategorien:
ST_GEOGPOINTFROMGEOHASH¶
Gibt ein GEOGRAPHY-Objekt für den Punkt zurück, der das Zentrum eines Geohash darstellt.
- Siehe auch:
Syntax¶
ST_GEOGPOINTFROMGEOHASH( <geohash> )
Argumente¶
geohash
Das Argument muss ein Geohash sein.
Rückgabewerte¶
Die Funktion gibt einen Wert vom Typ GEOGRAPHY zurück, der den Punkt darstellt, der das Zentrum des Geohash ist.
Beispiele¶
Das folgende Beispiel gibt das GEOGRAPHY-Objekt für den Punkt in der Mitte eines Geohash zurück:
SELECT ST_GEOGPOINTFROMGEOHASH('9q9j8ue2v71y5zzy0s4q') AS geography_center_point_of_geohash; +-----------------------------------+ | GEOGRAPHY_CENTER_POINT_OF_GEOHASH | |-----------------------------------| | { | | "coordinates": [ | | -1.223060999999999e+02, | | 3.755416200000003e+01 | | ], | | "type": "Point" | | } | +-----------------------------------+