Пример #1
0
        /// <summary>
        /// Slant Range.
        /// </summary>
        public double SlantRangeWSG84(CGeoLatLong Other)
        {
            C3DPoint ptThis = new C3DPoint();

            GeocentricWSG84(ptThis);

            C3DPoint ptOther = new C3DPoint();

            Other.GeocentricWSG84(ptOther);

            return(ptThis.Distance(ptOther));
        }
Пример #2
0
        /// <summary>
        /// Slant Range.
        /// </summary>
        public double SlantRangeWSG84(CGeoLatLong Other)
        {
            C3DPoint ptThis = new C3DPoint();

            GeocentricWSG84(ptThis);

            C3DPoint ptOther = new C3DPoint();

            Other.GeocentricWSG84(ptOther);

            return ptThis.Distance(ptOther);
        }