Correctly plot lat/long for CSV files

When writing out data point, lat/long were transposed.

Fixes: 136
This commit is contained in:
Gareth Coco
2010-10-25 23:19:50 -04:00
committed by Justin Knotzke
parent 91a66a7520
commit cee09061ff

View File

@@ -236,7 +236,7 @@ RideFile *CsvFileReader::openRideFile(QFile &file, QStringList &errors) const
watts = 0;
rideFile->appendPoint(minutes * 60.0, cad, hr, km,
kph, nm, watts, alt, lat, lon, headwind, interval);
kph, nm, watts, alt, lon, lat, headwind, interval);
}
++lineno;
}