mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
Correctly plot lat/long for CSV files
When writing out data point, lat/long were transposed. Fixes: 136
This commit is contained in:
committed by
Justin Knotzke
parent
91a66a7520
commit
cee09061ff
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user