查找给定位置(纬度、经度)是否在两个坐标的 BoundingBox 内(route-me)

发布于 2024-11-19 15:33:25 字数 197 浏览 3 评论 0原文

我正在使用 Route-Me 项目开发 iPhone 应用程序。 我正在使用一种名为“latitudeLongitudeBoundingBoxForScreen”的方法,它返回一组两个坐标。以屏幕的纬度/经度定义东北角和西南角。这似乎工作正常。

我的问题是如何确定给定点(纬度/经度)是否在这两个坐标(东北、西南)的边界内?

预先非常感谢您的帮助。

I am working on an iPhone app using the Route-Me project.
I am using a method called 'latitudeLongitudeBoundingBoxForScreen' which returns a set of two cooördinates. Defining the Northeast and Southwest corners in lat/lon of your screen. This seems to work fine.

My question is how can I determine whether a given point (lat/lon) is within the boundaries of these two coordinates (northeast,southwest)?

Thank you very much in advance for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

宫墨修音 2024-11-26 15:33:25

对于多边形中的一般点,点包含测试似乎可以假设一个简单的等矩形投影(x = lon,y = lat)。

由于您知道东北角和西南角,因此可以计算西北角和东南角。另外,请记住,您的边界多边形(盒子)必须遵循缠绕约定(您不能在点包含测试中抛出点)。

如果边界框越过 180 lon 线,这将会中断。简单的解决方法是,如果穿过 180 经线的框将负经度添加 360。这不是一个有效的导航点,但它使数学有效。

这在两极周围也不起作用。

For general point in a polygon, the Point Inclusion Test seems to work assuming a trivial Equirectanglular projection (x = lon, y = lat).

Since you know the north-east and south-west, you can compute the north-west and south-east corners. Also, keep in mind that your bounding polygon (box) must following a winding convention (you just can't throw points at the Point Inclusion Test).

This will break if the bounding box goes across the 180 lon line. The simple fix is if the box that crosses 180 lon line is to add 360 to the negative longitude. This isn't a valid navigation point but it makes the math work.

This also will not work around the poles.

没有伤那来痛 2024-11-26 15:33:25

我知道已经过去很长时间了,但也许有人仍然感兴趣。

    Double lat_A, lat_B,lng_A, lng_B, curr_lat,curr_lng;
    LatLng nw_corner, sw_corner;
    Boolean lat_OK,lng_OK,all_OK;
    int t_segs, points;
    t_segs = segments.size()-1;
    curr_lat = curr_LatLng.latitude;
    curr_lng = curr_LatLng.longitude;
    lat_A = list_segm_points.get(0).latitude;
    lng_A = list_segm_points.get(0).longitude;
    lat_B = list_segm_points.get(t_segs).latitude;
    lng_B = list_segm_points.get(t_segs).longitude;

    if (lat_A > lat_B ) {
        lat_OK = curr_lat < lat_A && curr_lat > lat_B;
    } else {
        lat_OK = curr_lat > lat_A && curr_lat < lat_B;
    }
    if (lng_A > lng_B ) {
        lng_OK = curr_lng < lng_A && curr_lng > lng_B;
    } else {
        lng_OK = curr_lng > lng_A && curr_lng < lng_B;
    }
    all_OK = lat_OK && lng_OK;
    return all_OK;

I know that a long time has passedby, but maybe someone still interested.

    Double lat_A, lat_B,lng_A, lng_B, curr_lat,curr_lng;
    LatLng nw_corner, sw_corner;
    Boolean lat_OK,lng_OK,all_OK;
    int t_segs, points;
    t_segs = segments.size()-1;
    curr_lat = curr_LatLng.latitude;
    curr_lng = curr_LatLng.longitude;
    lat_A = list_segm_points.get(0).latitude;
    lng_A = list_segm_points.get(0).longitude;
    lat_B = list_segm_points.get(t_segs).latitude;
    lng_B = list_segm_points.get(t_segs).longitude;

    if (lat_A > lat_B ) {
        lat_OK = curr_lat < lat_A && curr_lat > lat_B;
    } else {
        lat_OK = curr_lat > lat_A && curr_lat < lat_B;
    }
    if (lng_A > lng_B ) {
        lng_OK = curr_lng < lng_A && curr_lng > lng_B;
    } else {
        lng_OK = curr_lng > lng_A && curr_lng < lng_B;
    }
    all_OK = lat_OK && lng_OK;
    return all_OK;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文