Changed Range to Rng and RangeRate to Rng Rt
parent
0b43b14b18
commit
7eeefb82d5
|
@ -54,8 +54,8 @@ std::ostream& operator<< (std::ostream& stream, const CoordTopographic& topo) {
|
||||||
out << std::right << std::fixed << std::setprecision(2);
|
out << std::right << std::fixed << std::setprecision(2);
|
||||||
out << "Az: " << std::setw(7) << RadiansToDegrees(topo.azimuth);
|
out << "Az: " << std::setw(7) << RadiansToDegrees(topo.azimuth);
|
||||||
out << ", El: " << std::setw(7) << RadiansToDegrees(topo.elevation);
|
out << ", El: " << std::setw(7) << RadiansToDegrees(topo.elevation);
|
||||||
out << ", Range: " << std::setw(9) << topo.range;
|
out << ", Rng: " << std::setw(9) << topo.range;
|
||||||
out << ", RangeRate: " << std::setw(6) << topo.range_rate;
|
out << ", Rng Rt: " << std::setw(6) << topo.range_rate;
|
||||||
stream << out.str();
|
stream << out.str();
|
||||||
return stream;
|
return stream;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue