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.
我有大量的 GPS 点数据集。我想关注一个地理区域,因此我希望能够提取该区域内的 GPS 点。我该怎么做呢?
谢谢
您通过纬度、经度坐标中的多边形定义地理区域。
然后你使用一种isPointInPolygon(longitude, latitude)方法。
isPointInPolygon(longitude, latitude)
如果返回trueGPS 点在里面。
true
很简单。