fixed formula in ppc

This commit is contained in:
Alexander Schlenk 2016-07-04 17:51:21 +02:00
parent b2b4c21fe8
commit 1b87782260
1 changed files with 2 additions and 2 deletions

View File

@ -25,11 +25,11 @@ You will have to complete the *GpsConverter.cpp* (and .h).
## Conversion between Arc-Degree and arc-milliseconds
1°2'5" == (1*3600+ 2*60 + 5)*1000
1°2'5" == (1*3600+ 2*60 + 5)*1000
## Conversion of raw values to Arc-Degree
value [degree] = 180/(2^31-1) * value[raw]
value [degree] = 180/(2^31-1) * value[raw]
#### HINT 1