Code Monkey home page Code Monkey logo

Comments (4)

M0r13n avatar M0r13n commented on July 25, 2024 1

Hey @bgercken,

a lot going on here. I try to answer your questions 1 by 1 :-D.

I am seeing a lot of sentences where the value for "turn" is being set to None

This is intentional. Turn rate is encoded as follows :

  • 0 = not turning
  • 1…​126 = turning right at up to 708 degrees per minute or higher
  • 1…​-126 = turning left at up to 708 degrees per minute or higher
  • 127 = turning right at more than 5deg/30s (No TI available)
  • 127 = turning left at more than 5deg/30s (No TI available)
  • 128 (80 hex) indicates no turn information available (default)

If no turn information is available the turn field is set to None.

Now I have a new question to consider. It appears that you may be rounding the product before squaring it when converting from the raw value to the decoded field value.

I think you are right. The GPSD project - the de facto reference documentation for this project - does not even round: https://gitlab.com/gpsd/gpsd/-/blob/master/devtools/ais.py#L117. So I dropped the round statement and it seems to work correctly.

However, I am not 100% sure, since the values for ROT vary slightly from decoder to decoder. Depending on the decoder, there seems to be a certain confidence interval of +/- 5 degrees, in which all available decoders scatter. 🤷

Anyways, thank your the tip.

from pyais.

bgercken avatar bgercken commented on July 25, 2024

OK - I figured out why the online decoder did not match your values - on his site he is just showing the raw value and not the converted value as you do in your code. Sorry, my mistake.

from pyais.

bgercken avatar bgercken commented on July 25, 2024

Now I have a new question to consider. It appears that you may be rounding the product before squaring it when converting from the raw value to the decoded field value.

Currently on line 543 in messages.py:

       return math.copysign((round(turn / 4.733)) ** 2, turn)

Should it be?
       return math.copysign(round((turn / 4.733) ** 2), turn)

Thanks.

from pyais.

M0r13n avatar M0r13n commented on July 25, 2024

Closed by #74

from pyais.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.