Hello Hüseyin,
I looked at the issue comment you left. I am not sure if you are reading the buffer correctly since I haven't used
bit-buffer library personally.
For your example data,
<Buffer f2 99 95 95 1d d6 ce 49>
You should reconstruct latitude data as a four byte number in this order: 95,95,99,f2 which is
2509609458 in decimal.
The correct latitude is 40.9609458 which comes from
2509609458 * 0.0000001 - 210. 210 is the offset for that PGN. With this scheme, the longitude is -86.1708003.
Let me know if you have more questions.
Regards,
Yang