ST_PointFromGeoHash — GeoHash文字列からポイントを返します。
point ST_PointFromGeoHash(
text geohash, integer precision=full_precision_of_geohash)
;
GeoHash文字列からポイントを返します。ポイントはGeoHashの中心点を表します。
If no precision
is specified ST_PointFromGeoHash returns a point based on full precision of the input GeoHash string.
precision
を指定した場合には、ST_PointFromGeoHashは、ポイント生成のために、GeoHasoから多数の文字を使用します。
Availability: 2.1.0
SELECT ST_AsText(ST_PointFromGeoHash('9qqj7nmxncgyy4d0dbxqz0')); st_astext ------------------------------ POINT(-115.172816 36.114646) SELECT ST_AsText(ST_PointFromGeoHash('9qqj7nmxncgyy4d0dbxqz0', 4)); st_astext ----------------------------------- POINT(-115.13671875 36.123046875) SELECT ST_AsText(ST_PointFromGeoHash('9qqj7nmxncgyy4d0dbxqz0', 10)); st_astext ------------------------------------------- POINT(-115.172815918922 36.1146435141563)