基于GeoHash字符串构造Box2D对象。

语法

box2d  ST_Box2dFromGeoHash(text  geohash , integer  precision);

参数

参数名称 描述
geohash GeoHash字符串。
precision 精度。如果不指定精度,则函数根据输入值全精度返回。

示例

  • 全精度返回:
    SELECT ST_Box2dFromGeoHash('wx47x9u8gumnhzp791zb');
           st_box2dfromgeohash
    ----------------------------------
     BOX(116 39.9999999999999,116 40)
    (1 row)
                        
  • 指定精度返回:
    SELECT ST_Box2dFromGeoHash('wx47x9u8gumnhzp791zb',5);
                        st_box2dfromgeohash
    -----------------------------------------------------------
     BOX(115.9716796875 39.990234375,116.015625 40.0341796875)
    (1 row)