Example #1
0
 /// <summary>
 ///     Creates a new topocentirc coordinate as a copy of the specified one
 /// </summary>
 /// <param name="topo">Object to copy from</param>
 public TopocentricObservation(TopocentricObservation topo)
 {
     Azimuth   = topo.Azimuth;
     Elevation = topo.Elevation;
     Range     = topo.Range;
     RangeRate = topo.RangeRate;
 }
Example #2
0
 /// <inheritdoc />
 protected bool Equals(TopocentricObservation other)
 {
     return(Azimuth.Equals(other.Azimuth) && Elevation.Equals(other.Elevation) && Range.Equals(other.Range) &&
            RangeRate.Equals(other.RangeRate));
 }