Could we transform it to decimal form? See https://gis.stackexchange.com/questions/136925/how-to-parse-exif-gps-information-to-lat-lng-decimal-numbers
Now it looks like this

To convert it we should `dec_degree = 55 / 1 + 40 / 1 / 60 + 515 / 100 / 3600 = 55.66810` (five decimal places are enough). General formula is `dec_degree = degreesNumerator / degreesDenominator + minutesNumerator / minutesDenominator / 60 + secondsNumerator / secondsDenominator / 3600`.
_Originally posted by @g in https://git.iamonlyherefortheicecream.ml/DIWHY/photovoter_backend/pulls/5#issuecomment-27_
Could we transform it to decimal form? See https://gis.stackexchange.com/questions/136925/how-to-parse-exif-gps-information-to-lat-lng-decimal-numbers

Now it looks like this
To convert it we should
dec_degree = 55 / 1 + 40 / 1 / 60 + 515 / 100 / 3600 = 55.66810(five decimal places are enough). General formula isdec_degree = degreesNumerator / degreesDenominator + minutesNumerator / minutesDenominator / 60 + secondsNumerator / secondsDenominator / 3600.Originally posted by @g in https://git.iamonlyherefortheicecream.ml/DIWHY/photovoter_backend/pulls/5#issuecomment-27