我如何比较CLLocationCoordinate2D

时间:2012-04-17 21:04:47

标签: core-location cllocation equatable

我需要一种比较两个CLLocationCoordinate2D的方法,但是当我尝试使用==时,它无法正常工作。请有人帮助我找出比较它们的最佳方法吗?

12 个答案:

答案 0 :(得分:56)

用于比较任何给定结构类型的两个实例的通用方法:

memcmp(&cllc2d1, &second_cllc2d, sizeof(CLLocationCoordinate2D))

cllc2d1.latitude == cllc2d2.latitude && cllc2d1.longitude == cllc2d2.longitude

应该有用,如果你真的想确定它们完全相等。但是,鉴于纬度和经度被定义为双倍,你可能真的想做一个“足够接近”的比较:

fabs(cllc2d1.latitude - cllc2d2.latitude) <= epsilon && fabs(cllc2d1.longitude - cllc2d2.longitude) <= epsilon

其中epsilon是您想要接受的任何错误级别。

答案 1 :(得分:33)

作为所有这些答案的一小部分,将比较定义为预处理器定义非常方便:

#define CLCOORDINATES_EQUAL( coord1, coord2 ) (coord1.latitude == coord2.latitude && coord1.longitude == coord2.longitude)

或与epsilon:

#define CLCOORDINATE_EPSILON 0.005f
#define CLCOORDINATES_EQUAL2( coord1, coord2 ) (fabs(coord1.latitude - coord2.latitude) < CLCOORDINATE_EPSILON && fabs(coord1.longitude - coord2.longitude) < CLCOORDINATE_EPSILON)

这允许您进行如下比较:

CLLocationCoordinate2D resultingCoordinate = ... a method call ...;
CLLocationCoordinate2D expectedCoordinate = CLLocationCoordinate2DMake(48.11, 11.12);

if(CLCOORDINATES_EQUAL( resultingCoordinate, expectedCoordinate)) {
    NSLog(@"equal");
} else {
    NSLog(@"not equal");
}

另一种方法是使用内联方法,如果你不喜欢预处理器。

答案 2 :(得分:18)

Swift扩展程序:

import MapKit

extension CLLocationCoordinate2D: Equatable {}

public func ==(lhs: CLLocationCoordinate2D, rhs: CLLocationCoordinate2D) -> Bool {
    return (lhs.latitude == rhs.latitude && lhs.longitude == rhs.longitude)
}

[从Xcode 7.3.1开始测试,Swift 2.2] [当然,仍然存在比较浮点值的内在危险,因此您可能需要考虑使用前面答案中提到的epsilon]

答案 3 :(得分:12)

您可以使用CLLocation课程&#39; distanceFromLocation:方法。返回值是CLLocationDistance,实际上只是一个双倍。

- (CLLocationDistance)distanceFromLocation:(const CLLocation *)location

答案 4 :(得分:8)

你可以定义一个感觉非常类似来自CoreLocation的函数:

BOOL CLLocationCoordinateEqual(CLLocationCoordinate2D coordinate1, CLLocationCoordinate2D coordinate2) { return (fabs(coordinate1.latitude - coordinate2.latitude) <= DBL_EPSILON && fabs(coordinate1.longitude - coordinate2.longitude) <= DBL_EPSILON); }

答案 5 :(得分:6)

在Swift 3中,DBL_EPSILON已弃用。使用Double.ulpOfOne

extension CLLocationCoordinate2D {
    func isEqual(_ coord: CLLocationCoordinate2D) -> Bool {
        return (fabs(self.latitude - coord.latitude) < .ulpOfOne) && (fabs(self.longitude - coord.longitude) < .ulpOfOne)
    }
}

答案 6 :(得分:2)

CLLocationCoordinate2D c1, c2;
if (c1.latitude == c2.latitude && c1.longitude == c2.longitude)
{
    // ...
}

我不是在开玩笑。 CLLocationCoordinate2D是一个C结构,除了比较各个成员之外,没有简单的方法来比较C结构。

答案 7 :(得分:1)

CLLocationCoordinate2D是一个C结构,因此,您需要比较它的字段:

CLLocationCoordinate2D coord1, coord2;
if (coord1.latitude == coord2.latitude && coord1.longitude == coord2.longitude) {
    // coordinates are equal
}

注意,CLLocationCoordinate2D字段为double,因此,您可能会遇到与任何其他浮点比较相同的问题。因此,我建议对一些值进行舍入,例如:

CLLocationCoordinate2D coord1, coord2;
if (round(coord1.latitude * 1000.0) == round(coord2.latitude * 1000.0)
    && round(coord1.longitude * 1000.0) == round(coord2.longitude * 1000.0)) {
    // coordinates are equal
}

是的,这个,代码速度较慢,但​​这可以帮助您避免因浮点数不太精确而导致的问题。

答案 8 :(得分:1)

您可以使用此函数CLLocationCoordinateNSValue打包到+ (NSValue *)valueWithMKCoordinate:(CLLocationCoordinate2D)coordinate

然后使用isEqualToValue进行比较。

引用来自isEqualToValue函数的Apple文档:

  

NSValue类比较每个值对象的类型和内容以确定相等。

参考:NSValue的Apple文档

答案 9 :(得分:0)

我们可以将纬度和经度转换为NSString并进行字符串比较。

+ (BOOL)isEqualWithCoordinate:(CLLocationCoordinate2D)location1 withAnotherCoordinate:(CLLocationCoordinate2D)location2{
NSString *locationString1 = [NSString stringWithFormat:@"%g, %g", location1.latitude, location1.longitude];
NSString *locationString2 = [NSString stringWithFormat:@"%g, %g", location2.latitude, location2.longitude];

if ([locationString1 isEqualToString:locationString2]) {
    return YES;
}else{
    return NO;
}

}

因为%g会将截断十进制数转换为4位数。

答案 10 :(得分:0)

已基于leann's answer为Swift 5更新。

import CoreLocation

extension CLLocationCoordinate2D: Equatable {
    static public func ==(lhs: Self, rhs: Self) -> Bool {
        return lhs.latitude == rhs.latitude && lhs.longitude == rhs.longitude
    }
}

答案 11 :(得分:0)

Swift 5.3 方式

我创建了一个 gist

extension CLLocationCoordinate2D: Equatable {
    public static func == (lhs: CLLocationCoordinate2D, rhs: CLLocationCoordinate2D) -> Bool {
        let numbersAfterCommaAccuracy: Double = 4
        let ratio = numbersAfterCommaAccuracy * 10
        let isLatitudeEqual = ((lhs.latitude - rhs.latitude) * ratio).rounded(.down) == 0
        let isLongitudeEqual = ((lhs.latitude - rhs.latitude) * ratio).rounded(.down) == 0
        return isLatitudeEqual && isLongitudeEqual
    }
}