mhostetter / gr-adsb

GNU Radio OOT module for demodulating and decoding ADS-B packets
GNU General Public License v3.0
149 stars 44 forks source link

Fix DivideByZero exception #52

Open thinkski opened 1 year ago

thinkski commented 1 year ago

Use log(a/b) == log(a) - log(b) to avoid divide by zero.

mhostetter commented 1 year ago

Thanks for the pull request. Sorry for the delay. I'll try to work on it this weekend.