Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何确定给定点(纬度,经度)是否在路段中?
关于我想要实现的进一步解释:
我有一个参考点(lat1,lon1)。我确定了一个半径为 30 米的圆和一个中心 (lat1, lon1)。如果想知道这个圈子是否与道路相交。
我是否必须使用超过 OSM DB(wms 服务来获取特征和计算交集?)
你可以用Overpass API做类似的事情。您将需要around -query。语法如下所示:
way(around:<radius>,<lat>,<lng>);
…或者看看这个例子。