From 1b8778226097c775d1439a0f97cbfbd1681b158f Mon Sep 17 00:00:00 2001 From: Alexander Schlenk Date: Mon, 4 Jul 2016 17:51:21 +0200 Subject: [PATCH] fixed formula in ppc --- 2016/ppc/README.mkd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2016/ppc/README.mkd b/2016/ppc/README.mkd index d91fb83..69c9a60 100644 --- a/2016/ppc/README.mkd +++ b/2016/ppc/README.mkd @@ -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