]> git.mxchange.org Git - flightgear.git/blobdiff - utils/GPSsmooth/gps.cxx
Allow setting of NED velocities.
[flightgear.git] / utils / GPSsmooth / gps.cxx
index 670353ed24eb193706b4473cb1ae892c4d605eb2..fd783398f6ec197a045ba25b1bcd02b20b7dcc6f 100644 (file)
@@ -10,8 +10,8 @@
 
 #include "gps.hxx"
 
-SG_USING_STD(cout);
-SG_USING_STD(endl);
+using std::cout;
+using std::endl;
 
 
 GPSTrack::GPSTrack() {};
@@ -84,7 +84,7 @@ int GPSTrack::load( const string &file ) {
         } else if ( tokens[0] == "$GPGGA" && tokens.size() == 15 ) {
             double raw_time = atof(tokens[1].c_str());
             GPSTime gps_time = GPSTime( raw_time );
-            if ( fabs(gps_time.get_time() - p.gps_time.get_time()) < 0.0001 &&
+            if ( fabs(gps_time.get_time() - p.gps_time.get_time()) > 0.0001 &&
                  (p.gps_time.get_time() > 1.0) ) {
                 // new data cycle store last data before continuing
                 data.push_back( p );