Changed Range to Rng and RangeRate to Rng Rt

feature/19
Daniel Warner 2011-05-27 20:40:26 +00:00
parent 0b43b14b18
commit 7eeefb82d5
1 changed files with 2 additions and 2 deletions

4
CoordTopographic.cpp Normal file → Executable file
View File

@ -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;
} }