嗨我正在尝试从
http://www.nyc.gov/html/dcp/html/bytes/bytesarchive.shtml
到 postgis 数据库中。当我使用 shp2pgsql 导入时,上述文件会创建 MULTIPOLYGONS。
然后我试图简单地确定我的多面体中是否包含纬度/经度点
但是我的选择不起作用,当我打印出我的 the_geom 列的点时,它似乎很破碎。
select st_astext(geom) from (select (st_dumppoints(the_geom)).* from nybb where borocode =1) foo;
给出结果...
st_astext
------------------------------------------
POINT(1007193.83859999 257820.786899999)
POINT(1007209.40620001 257829.435100004)
POINT(1007244.8654 257833.326199993)
POINT(1007283.3496 257839.812399998)
POINT(1007299.3502 257851.488900006)
POINT(1007320.1081 257869.218500003)
POINT(1007356.64669999 257891.055800006)
POINT(1007385.6197 257901.432999998)
POINT(1007421.94509999 257894.084000006)
POINT(1007516.85959999 257890.406100005)
POINT(1007582.59110001 257884.7861)
POINT(1007639.02150001 257877.217199996)
POINT(1007701.29170001 257872.893099993)
...
对于纽约市的积分,这很不合适..我做错了什么?