Coder Social home page Coder Social logo

Comments (3)

junzis avatar junzis commented on July 30, 2024

@markaif, thanks for the suggestion! I have implemented the surface velocity decoding now, however in a slightly different way. It is under now adsb.surface_velocity(), and also handled directly from adsb.velocity()

Implemented in commit: 15f2833

from pymodes.

marcaicart avatar marcaicart commented on July 30, 2024

@junzis Thanks for the integration. However, i think that the adsb.surface_velocity() funcion should return a none even if ther's no velocity found. The way it tis, only return somenthing when a velocity is found.
I think the funciotn would be much more usable if allways returned something even if its a None.
An easy solution could be something like this:

    # heading
    hdg_status = int(msgbin[44])
    if hdg_status == 1:
        hdg = round(util.bin2int(msgbin[45:52]) * 360.0 / 128.0, 1)
    else:
        hdg = None

    # ground movment / speed
    mov = util.bin2int(msgbin[37:44])

    if mov == 0 or mov > 124:
        spd = None
    elif mov == 1:
        spd = 0
    elif mov == 124:
        spd = 175
    else:
        movs = [2, 9, 13, 39, 94, 109, 124]
        kts = [0.125, 1, 2, 15, 70, 100, 175]
        i = next(m[0] for m in enumerate(movs) if m[1] > mov)
        step = (kts[i] - kts[i - 1]) * 1.0 / (movs[i] - movs[i - 1])
        spd = round(kts[i - 1] + (mov - movs[i - 1]) * step, 2)

    return spd, hdg, 0, 'GS'

from pymodes.

junzis avatar junzis commented on July 30, 2024

Hi @markaif, That's right. It was indeed a bug. I fixed it now in the new commit together with many other EHS updates. Thanks!

from pymodes.

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.