如何计算以GPS坐标为中心的地球上的圆点?

时间:2012-01-17 19:08:22

标签: gps kml

用KML画一个圆圈

如何获取地球上某点的GPS坐标(以十进制度格式表示)并生成近似以该点为中心的圆的多边形坐标?

具有20个以上数据点的多边形看起来像一个圆圈。数据点越多 - 圈子看起来越好。

我正在编写一个生成KML的程序,不知道如何计算多边形顶点的坐标。

数据输入示例:

纬度,经度,圆半径(英尺),NumberOfDataPoints

26.128477,-80.105149,500,20

2 个答案:

答案 0 :(得分:7)

我不知道这是否是最简单的解决方案,它假定世界是一个球体。

定义:

R是球体的半径(即地球)。

r是圆的半径(以相同的单位表示)。

t是球体中心长度为r的大圆弧所对的角度,因此t = r / R弧度。

现在假设球体的半径为1,并且以原点为中心。

C是表示圆心的单位矢量。

想象一下围绕北极的圆圈,并考虑圆的平面与从地球中心到北极的直线相交的点。显然,这一点将位于北极之下。

K是“C”下方的对应点(即圆的平面与C相交的位置)所以K = cos(t)C

s是在3D空间中测量的圆的半径(即不在球体上),因此s = sin(t)

现在我们想要3D空间中圆的点,其中心为K,半径为s,位于穿过并垂直于K的平面中。

This answer(忽略旋转的东西)解释了如何找到平面的基矢量(即与正常K或C正交的矢量)。使用交叉产品找到第二个。

调用这些基础向量U和V.

// Pseudo-code to calculate 20 points on the circle
for (a = 0; a != 360; a += 18)
{
    // A point on the circle and the unit sphere
    P = K + s * (U * sin(a) + V * cos(a))
}

将每个点转换为球面坐标,您就完成了。

感到无聊,我用C#编写了这个。结果似乎是合理的:它们呈圆形并位于球体上。大多数代码实现了表示向量的struct。实际计算非常简单。

using System;

namespace gpsCircle
{
    struct Gps
    {
        // In degrees
        public readonly double Latitude;
        public readonly double Longtitude;

        public Gps(double latitude, double longtitude)
        {
            Latitude = latitude;
            Longtitude = longtitude;
        }

        public override string ToString()
        {
            return string.Format("({0},{1})", Latitude, Longtitude);
        }

        public Vector ToUnitVector()
        {
            double lat = Latitude / 180 * Math.PI;
            double lng = Longtitude / 180 * Math.PI;

            // Z is North
            // X points at the Greenwich meridian
            return new Vector(Math.Cos(lng) * Math.Cos(lat), Math.Sin(lng) * Math.Cos(lat), Math.Sin(lat));
        }
    }

    struct Vector
    {
        public readonly double X;
        public readonly double Y;
        public readonly double Z;

        public Vector(double x, double y, double z)
        {
            X = x;
            Y = y;
            Z = z;
        }

        public double MagnitudeSquared()
        {
            return X * X + Y * Y + Z * Z;
        }

        public double Magnitude()
        {
            return Math.Sqrt(MagnitudeSquared());
        }

        public Vector ToUnit()
        {
            double m = Magnitude();

            return new Vector(X / m, Y / m, Z / m);
        }

        public Gps ToGps()
        {
            Vector unit = ToUnit();
            // Rounding errors
            double z = unit.Z;
            if (z > 1)
                z = 1;

            double lat = Math.Asin(z);

            double lng = Math.Atan2(unit.Y, unit.X);

            return new Gps(lat * 180 / Math.PI, lng * 180 / Math.PI);
        }

        public static Vector operator*(double m, Vector v)
        {
            return new Vector(m * v.X, m * v.Y, m * v.Z);
        }

        public static Vector operator-(Vector a, Vector b)
        {
            return new Vector(a.X - b.X, a.Y - b.Y, a.Z - b.Z);
        }

        public static Vector operator+(Vector a, Vector b)
        {
            return new Vector(a.X + b.X, a.Y + b.Y, a.Z + b.Z);
        }

        public override string ToString()
        {
            return string.Format("({0},{1},{2})", X, Y, Z);
        }

        public double Dot(Vector that)
        {
            return X * that.X + Y * that.Y + Z * that.Z;
        }

        public Vector Cross(Vector that)
        {
            return new Vector(Y * that.Z - Z * that.Y, Z * that.X - X * that.Z, X * that.Y - Y * that.X);
        }

        // Pick a random orthogonal vector
        public Vector Orthogonal()
        {
            double minNormal = Math.Abs(X);
            int minIndex = 0;
            if (Math.Abs(Y) < minNormal)
            {
                minNormal = Math.Abs(Y);
                minIndex = 1;
            }
            if (Math.Abs(Z) < minNormal)
            {
                minNormal = Math.Abs(Z);
                minIndex = 2;
            }

            Vector B;
            switch (minIndex)
            {
                case 0:
                    B = new Vector(1, 0, 0);
                    break;
                case 1:
                    B = new Vector(0, 1, 0);
                    break;
                default:
                    B = new Vector(0, 0, 1);
                    break;
            }

            return (B - minNormal * this).ToUnit();
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            // Phnom Penh
            Gps centre = new Gps(11.55, 104.916667);

            // In metres
            double worldRadius = 6371000;
            // In metres
            double circleRadius = 1000;

            // Points representing circle of radius circleRadius round centre.
            Gps[] points  = new Gps[20];

            CirclePoints(points, centre, worldRadius, circleRadius);
        }

        static void CirclePoints(Gps[] points, Gps centre, double R, double r)
        {
            int count = points.Length;

            Vector C = centre.ToUnitVector();
            double t = r / R;
            Vector K = Math.Cos(t) * C;
            double s = Math.Sin(t);

            Vector U = K.Orthogonal();
            Vector V = K.Cross(U);
            // Improve orthogonality
            U = K.Cross(V);

            for (int point = 0; point != count; ++point)
            {
                double a = 2 * Math.PI * point / count;
                Vector P = K + s * (Math.Sin(a) * U + Math.Cos(a) * V);
                points[point] = P.ToGps();
            }
        }
    }
}

答案 1 :(得分:0)

我编写了Polycircles,这是一个用Python编写的小型开源软件包。它使用geographiclib进行地理空间计算。

enter image description here