Ejemplo n.º 1
0
 public static double TiltFromCell(this IOutdoorCell c, IGeoPoint<double> p)
 {
     double d = p.SimpleDistance(c);
     return Math.Atan2(c.Height, d * 1000) * 180 / Math.PI;
 }
Ejemplo n.º 2
0
 public void SetupComparableCell(IGeoPoint <double> point, IOutdoorCell cell)
 {
     Cell         = cell;
     Distance     = point.SimpleDistance(cell);
     AzimuthAngle = cell.AngleFromCellAzimuth(point);
 }
Ejemplo n.º 3
0
 public void SetupComparableCell(IGeoPoint<double> point, IOutdoorCell cell)
 {
     Cell = cell;
     Distance = point.SimpleDistance(cell);
     AzimuthAngle = cell.AngleFromCellAzimuth(point);
 }
Ejemplo n.º 4
0
        public static double TiltFromCell(this IOutdoorCell c, IGeoPoint <double> p)
        {
            double d = p.SimpleDistance(c);

            return(Math.Atan2(c.Height, d * 1000) * 180 / Math.PI);
        }