Hi!
I have some binary data stream which passes geo location coordinates - latitude and longitude. I need to find the method they are encoded.
1st value is hex value. 2nd & 3rd are values that I get in output (not sure which one is used in conversion).
I've found that first byte represents integer part of value (0x4a = 74). But I cannot find how decimal part is encoded.
I would really appreciate any help!
Thanks.
I have some binary data stream which passes geo location coordinates - latitude and longitude. I need to find the method they are encoded.
Code:
4adac812 = 74°26.2851' = 74.438085 2b6059f9 = 43°0.2763' = 43.004605 4adaee12 = 74°26.3003' = 74.438338 2a3c8df9 = 42°56.3177' = 42.938628 4ae86d11 = 74°40.1463' = 74.669105 2afd0efb = 42°59.6263' = 42.993772
I've found that first byte represents integer part of value (0x4a = 74). But I cannot find how decimal part is encoded.
I would really appreciate any help!
Thanks.
Comment