菜鸟教程小白 发表于 2022-12-13 11:57:17

ios - 如何检查 CLCircularRegions 是否相交


                                            <p><p>我正在开发一个 iOS 应用程序(使用 Swift)来记录用户的位置历史记录。作为搜索算法的一部分,我想检查两个 <code>CLCircularRegions</code> 是否相交,但我似乎找不到核心位置方法或函数来执行此操作。 <code>CLCircularRegion</code> 有 <code>containsCoordinate</code> 方法,但这并不是我所需要的。我也知道 Map Kit 包含检查相交 <code>MKMapRects</code> 的函数,但由于我实际上并没有使用 map ,这些解决方案似乎并不理想。</p>

<p>我希望我遗漏了一些明显的东西,但我似乎无法弄清楚。如何检查两个 <code>CLCircularRegions</code> 是否相交?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您不介意细微的误差,您可以假设这些区域足够小,以至于地球的曲率可以忽略不计,因此可以将这些区域视为平面。</p>

<p>在这种情况下,只需检查两个中心点的距离是否小于半径之和即可。两个圆相交当且仅当它们的圆心比它们的半径之和更近。</p>

<pre><code>CLCircularRegion r1, r2;

const double meanEarthRad = 6371009;
const double metersPerDegree = 2 * M_PI * meanEarthRad / 360;

double dLat = r2.center.latitude - r1.center.latitude;
double dLon = r2.center.longitude - r1.center.longitude;

double actCenterDist = hypot(dLat, dLon) * metersPerDegree;
double minCenterDist = r1.radius + r2.radius;

if (actCenterDist &lt; minCenterDist) {
    // the regions intersect
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何检查 CLCircularRegions 是否相交,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33372023/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33372023/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何检查 CLCircularRegions 是否相交