easy-fit icon indicating copy to clipboard operation
easy-fit copied to clipboard

gps coordinates

Open corand opened this issue 8 years ago • 3 comments

Hello,

I have realised that

activity -> sessions -> laps -> records -> [position_lat, position_long]

the coordinates are incorrect. I don't know the exact conversion, but at least negative values are represented as positive, and it needs some other conversion to place the record in the proper point.

corand avatar Jul 13 '16 10:07 corand

Mmh thank you @corand for this report, I didn't check them carefully. I will look into this as soon as I can.

pierremtb avatar Aug 06 '16 12:08 pierremtb

As far as I can tell the values are correct, aside from being in the range [0, 360] instead of [-180, 180].

The values are not offset, so the logic to fix them would be something like x > 180 ? x - 360 : x.

glenjamin avatar Oct 24 '16 10:10 glenjamin

Let close this issue?

jimmykane avatar Jun 24 '17 11:06 jimmykane