0

我想在 ObjC 中计算几个地理点(由经度、纬度指定)的中间

- (CLLocationCoordinate2D)middleOfPoints:(NSOrderedSet *)points
{
    int i = 0; i = points.count;
    double x,y,z = 0;

    for (BuildingPoint *point in points) 
    {
        // Iterate through Set
        x += cos(point.latitude.doubleValue*(M_PI/180)) * cos(point.longitude.doubleValue*(M_PI/180));
        y += cos(point.latitude.doubleValue*(M_PI/180)) * sin(point.longitude.doubleValue*(M_PI/180)); 
        z += sin(point.latitude.doubleValue*(M_PI/180)); 
    }

    x = x/i;
    y = y/i;
    z = z/i;

    double longitude = 180/M_PI * atan2(y,x);
    double t = sqrt(x * x + y * y);
    double latitude = 180/M_PI * atan2(z,t);

    return CLLocationCoordinate2DMake(latitude, longitude);
}

但是由于某种原因,当我使用相同的输入集调用该方法 5 次时,我得到了不同的值。有任何想法吗 ?

4

1 回答 1

0
double x,y,z = 0;

仅初始化z为零,但x具有y未定义的(随机)值。将其更改为

double x = 0, y = 0, z = 0;
于 2012-09-25T18:24:18.613 回答