From 3c138c83456f131eb656948ded3667effc804397 Mon Sep 17 00:00:00 2001 From: torsten Date: Wed, 6 May 2009 17:26:05 +0000 Subject: [PATCH] Fix broken ATC/AI-Frequencies dialog. --- src/ATCDCL/ATC.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ATCDCL/ATC.hxx b/src/ATCDCL/ATC.hxx index 22bb8370b..0a6d55a8b 100644 --- a/src/ATCDCL/ATC.hxx +++ b/src/ATCDCL/ATC.hxx @@ -297,7 +297,7 @@ operator >> ( std::istream& fin, ATCData& a ) // cout << a.ident << endl; // generate cartesian coordinates - SGVec3d cart = SGVec3d::fromGeod(SGGeod::fromRadM(a.lon, a.lat, a.elev)); + SGVec3d cart = SGVec3d::fromGeod(SGGeod::fromDegM(a.lon, a.lat, a.elev)); a.x = cart.x(); a.y = cart.y(); a.z = cart.z(); -- 2.39.5