mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Use a sane precision for speed/bearing
This commit is contained in:
parent
65c2e25bc6
commit
606269fcc1
@ -83,29 +83,29 @@ void MotionInfoItem::setDigitalZoom(qreal zoom)
|
|||||||
QString MotionInfoItem::speed(const QLocale &l) const
|
QString MotionInfoItem::speed(const QLocale &l) const
|
||||||
{
|
{
|
||||||
if (_units == Nautical)
|
if (_units == Nautical)
|
||||||
return l.toString(MS2KN * _speed) + UNIT_SPACE
|
return l.toString(MS2KN * _speed, 'f', 1) + UNIT_SPACE
|
||||||
+ qApp->translate("MotionInfoItem", "kn");
|
+ qApp->translate("MotionInfoItem", "kn");
|
||||||
else if (_units == Imperial)
|
else if (_units == Imperial)
|
||||||
return l.toString(MS2MIH * _speed) + UNIT_SPACE
|
return l.toString(MS2MIH * _speed, 'f', 1) + UNIT_SPACE
|
||||||
+ qApp->translate("MotionInfoItem", "mi/h");
|
+ qApp->translate("MotionInfoItem", "mi/h");
|
||||||
else
|
else
|
||||||
return l.toString(MS2KMH * _speed) + UNIT_SPACE
|
return l.toString(MS2KMH * _speed, 'f', 1) + UNIT_SPACE
|
||||||
+ qApp->translate("MotionInfoItem", "km/h");
|
+ qApp->translate("MotionInfoItem", "km/h");
|
||||||
}
|
}
|
||||||
|
|
||||||
QString MotionInfoItem::verticalSpeed(const QLocale &l) const
|
QString MotionInfoItem::verticalSpeed(const QLocale &l) const
|
||||||
{
|
{
|
||||||
if (_units == Nautical || _units == Imperial)
|
if (_units == Nautical || _units == Imperial)
|
||||||
return l.toString(MS2FTMIN * _verticalSpeed) + UNIT_SPACE
|
return l.toString(MS2FTMIN * _verticalSpeed, 'f', 1) + UNIT_SPACE
|
||||||
+ qApp->translate("MotionInfoItem", "ft/min");
|
+ qApp->translate("MotionInfoItem", "ft/min");
|
||||||
else
|
else
|
||||||
return l.toString(MS2MMIN * _verticalSpeed) + UNIT_SPACE
|
return l.toString(MS2MMIN * _verticalSpeed, 'f', 1) + UNIT_SPACE
|
||||||
+ qApp->translate("MotionInfoItem", "m/min");
|
+ qApp->translate("MotionInfoItem", "m/min");
|
||||||
}
|
}
|
||||||
|
|
||||||
static QString bearing(qreal val, const QLocale &l)
|
static QString bearing(qreal val, const QLocale &l)
|
||||||
{
|
{
|
||||||
return l.toString(val) + DEGREE_UNIT;
|
return l.toString(val, 'f', 0) + DEGREE_UNIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString MotionInfoItem::text() const
|
QString MotionInfoItem::text() const
|
||||||
|
Loading…
Reference in New Issue
Block a user