From e29bdcfe59763c38d98defe2885ba00cd8ce4ffd Mon Sep 17 00:00:00 2001 From: Ralf Gerlich Date: Fri, 8 Feb 2008 12:13:11 +0100 Subject: [PATCH] Removed test printouts. --- src/Airports/GenAirports/apt_surface.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Airports/GenAirports/apt_surface.cxx b/src/Airports/GenAirports/apt_surface.cxx index d8cd688d..1dbab8ea 100644 --- a/src/Airports/GenAirports/apt_surface.cxx +++ b/src/Airports/GenAirports/apt_surface.cxx @@ -267,7 +267,7 @@ TGAptSurface::TGAptSurface( const string& path, double clon = (min_deg.lon() + max_deg.lon()) / 2.0; double clat = (min_deg.lat() + max_deg.lat()) / 2.0; offset = Point3D( clon, clat, average_elev_m ); - cout << "Central offset point = " << offset << endl; + SG_LOG(SG_GENERAL, SG_DEBUG, "Central offset point = " << offset); // Create the fitted surface SG_LOG(SG_GENERAL, SG_DEBUG, "ready to create fitted surface"); @@ -405,7 +405,7 @@ void TGAptSurface::fit() { Real x = p.x() - offset.x(); Real y = p.y() - offset.y(); Real z = p.z() - offset.z(); - cout << "pt = " << x << "," << y << "," << z << endl; + //cout << "pt = " << x << "," << y << "," << z << endl; tz[index] = z; t1[index] = x; t2[index] = x*y;