junzis / pyModeS

Python decoder for Mode S and ADS-B signals
GNU General Public License v3.0
529 stars 151 forks source link

Additional Information Extracted from TC-19/BDS0,9 Messages #39

Closed xander-hirsch closed 5 years ago

xander-hirsch commented 5 years ago

I added two more list elements to airborne_velocity() return. The elements are the sources for direction (ground track or magnetic heading) and vertical rate (barometric or GNSS). The positions of the source elements correspond to the pattern of the first three elements.

I also made a modification to surface_velocity() to return a six element list. It keeps the same format as for airborne_velocity(), but substitutes 'gnd_trk' for direction source and None for vertical speed and its source.

xander-hirsch commented 5 years ago

Thank you for the direction type name suggestions. The most recent commit reflects the method return values and docstrings to the new names.

junzis commented 5 years ago

looks good! PR merged now. Thanks a lot!