mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Fixed speed info parsing
This commit is contained in:
parent
a815bc762f
commit
6b2bb96be7
@ -431,26 +431,7 @@ static quint32 readImageInfo(DataStream &stream, Waypoint &waypoint,
|
|||||||
|
|
||||||
static int speed(quint8 flags)
|
static int speed(quint8 flags)
|
||||||
{
|
{
|
||||||
switch (flags >> 4) {
|
return ((flags >> 3) & 0x0F) * 10;
|
||||||
case 0x8:
|
|
||||||
return 40;
|
|
||||||
case 0x9:
|
|
||||||
return 30;
|
|
||||||
case 0xA:
|
|
||||||
return 50;
|
|
||||||
case 0xB:
|
|
||||||
return 70;
|
|
||||||
case 0xC:
|
|
||||||
return 80;
|
|
||||||
case 0xD:
|
|
||||||
return 90;
|
|
||||||
case 0xE:
|
|
||||||
return 100;
|
|
||||||
case 0xF:
|
|
||||||
return 120;
|
|
||||||
default:
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static quint32 readCamera(DataStream &stream, QVector<Waypoint> &waypoints,
|
static quint32 readCamera(DataStream &stream, QVector<Waypoint> &waypoints,
|
||||||
|
Loading…
Reference in New Issue
Block a user