Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/extjs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Gis 找到5平方英里左右的感兴趣区域_Gis - Fatal编程技术网

Gis 找到5平方英里左右的感兴趣区域

Gis 找到5平方英里左右的感兴趣区域,gis,Gis,在使用Postgis的WebGIS课程中,我想在选定点的5平方英里范围内找到感兴趣的区域。我必须使用ST_ 这是我写的查询: select hw1.route,count(*) from hw as hw1, hw as hw2,aoi where st_within(hw1.the_geom,aoi.the_geom) group by hw1.route; 用于围绕关注点构建半径为5英里的旋转多边形。然后检查几何体是否在缓冲区内或与缓冲区相交,这取决于您的需要。谢谢。我也做了同样的事

在使用Postgis的WebGIS课程中,我想在选定点的5平方英里范围内找到感兴趣的区域。我必须使用ST_

这是我写的查询:

select hw1.route,count(*) from hw as hw1, hw as hw2,aoi where 
st_within(hw1.the_geom,aoi.the_geom) group by hw1.route;

用于围绕关注点构建半径为5英里的旋转多边形。然后检查几何体是否在缓冲区内或与缓冲区相交,这取决于您的需要。

谢谢。我也做了同样的事