dump1090

Dump1090 is a simple Mode S decoder for RTLSDR devices (by flightaware)

Dump1090 Alternatives

Similar projects and alternatives to dump1090

  1. adsb-exchange

    Discontinued ADS-B Exchange Linux Setup Scripts

  2. Nutrient

    Nutrient – The #1 PDF SDK Library, trusted by 10K+ developers. Other PDF SDKs promise a lot - then break. Laggy scrolling, poor mobile UX, tons of bugs, and lack of support cost you endless frustrations. Nutrient’s SDK handles billion-page workloads - so you don’t have to debug PDFs. Used by ~1 billion end users in more than 150 different countries.

    Nutrient logo
  3. nom

    91 dump1090 VS nom

    Rust parser combinator framework

  4. etcher

    80 dump1090 VS etcher

    Flash OS images to SD cards & USB drives, safely and easily.

  5. tar1090

    42 dump1090 VS tar1090

    Provides an improved webinterface for use with ADS-B decoders readsb / dump1090-fa

  6. readsb

    ADS-B decoder swiss knife

  7. adsb-wiki

    Solutions to common problems using dump1090 variants and ADS-B feeders

  8. graphs1090

    Graphs for readsb / dump1090-fa / dump1090 (based on dump1090-tools by mutability)

  9. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  10. usbipd-win

    Windows software for sharing locally connected USB devices to other machines, including Hyper-V guests and WSL 2.

  11. dump1090

    Dump1090 is a simple Mode S decoder for RTLSDR devices

  12. dsd

    15 dump1090 VS dsd

    Digital Speech Decoder

  13. dump978

    FlightAware's 978MHz UAT demodulator

  14. readsb-protobuf

    Readsb is a Mode-S/ADSB/TIS decoder for RTLSDR, BladeRF, Modes-Beast and GNS5894 devices. Future development version with protocol buffer storage.

  15. mlat-client

    Mode S multilateration client

  16. readsb

    Discontinued Readsb is a Mode-S/ADSB/TIS decoder for RTLSDR, BladeRF, Modes-Beast and GNS5894 devices. (by Mictronics)

  17. piaware_builder

    Debian package builder for piaware

  18. airtrack

    Aircraft tracking software with database support, email notifications, browser based map, etc

  19. piaware_parser

    Save local aircraft data to your own records.

  20. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better dump1090 alternative or higher similarity.

dump1090 discussion

Log in or Post with

dump1090 reviews and mentions

Posts with mentions or reviews of dump1090. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-28.
  • Planespotting with Rust: using nom to parse ADS-B messages
    5 projects | dev.to | 28 Oct 2023
    ADS-B is a protocol used by aircrafts to broadcast their position, altitude, speed, and other information. Nowadays, the majority of aircrafts broadcast ADS-B messages constantly. Anyone with the right equipment can listen to these messages. You can buy a relatively cheap USB dongle with an antenna on Amazon and install drivers for it on Linux. In my case I used usbipd-win to mount the USB device inside Ubuntu running in WSL2. Then I installed the Linux drivers and dump1090, a program that makes use of these drivers and then outputs ADS-B messages in a format that is easy to parse. While you can use dump1090 to display a neat table full of information about aircrafts, I wanted to use its raw output capabilities to parse ADS-B messages myself. It starts a simple TCP server that outputs raw ADS-B messages wrapped in Mode-S Beast frames. I'm not sure what Beast means, but I found something that looks like its spec here.
  • Can't display planes on local web server (FA-Dump1090)
    2 projects | /r/RTLSDR | 2 Jan 2023
  • Issues displaying planes on local web server (FA-Dump1090)
    1 project | /r/ADSB | 2 Jan 2023
  • Mobile Fun
    2 projects | /r/ADSB | 12 Apr 2022
    git clone https://github.com/flightaware/dump1090.git
  • PiAware 7 Beta Released
    3 projects | /r/ADSB | 21 Dec 2021
    Minor bug fixes and improvements to piaware, dump1090-fa, dump978-fa.
  • looking for improvements / feedback on my Docker-based ADSB feeder
    3 projects | /r/ADSB | 9 Dec 2021
    FROM buildpack-deps:bullseye-curl RUN apt-get update && \ apt-get install -y --no-install-recommends \ build-essential \ libncurses5-dev \ librtlsdr0 \ librtlsdr-dev \ libusb-1.0-0-dev \ pkg-config \ python3-dev \ supervisor ENV READSB_VERSION v3.9.0 ENV READSB_URL https://github.com/Mictronics/readsb/archive/${READSB_VERSION}.tar.gz RUN \ mkdir -p /tmp/readsb && \ cd /tmp/readsb && \ curl -sSL -o readsb.tar.gz ${READSB_URL} && \ tar xvf readsb.tar.gz --strip-components=1 && \ make RTLSDR=yes && \ mv readsb viewadsb /usr/local/bin && \ cd / && \ rm -r /tmp/readsb ENV DUMP1090_VERSION v6.1 ENV DUMP1090_URL https://github.com/flightaware/dump1090/archive/refs/tags/${DUMP1090_VERSION}.tar.gz RUN \ mkdir -p /tmp/dump1090 && \ cd /tmp/dump1090 && \ curl -sSL -o dump1090.tar.gz ${DUMP1090_URL} && \ tar xvf dump1090.tar.gz --strip-components=1 && \ make RTLSDR=yes && \ mv dump1090 view1090 /usr/local/bin && \ cd / && \ rm -r /tmp/dump1090 ENV MLAT_CLIENT_VERSION v0.3.8 ENV MLAT_CLIENT_URL https://github.com/adsbxchange/mlat-client/archive/${MLAT_CLIENT_VERSION}.tar.gz RUN \ mkdir -p /tmp/mlat && \ cd /tmp/mlat && \ curl -sSL -o mlat.tar.gz ${MLAT_CLIENT_URL} && \ tar xvf mlat.tar.gz --strip-components=1 && \ ./setup.py install && \ cd / && \ rm -r /tmp/mlat COPY dump1090.sh mlat-client.sh readsb.sh supervisord.conf /srv/ CMD [ "supervisord", "-c", "/srv/supervisord.conf" ]
  • Adding CFLAGS to a makefile
    3 projects | /r/AskProgramming | 27 Sep 2021
    For rtl1090, is this one what you're looking at? I'm not super well-versed in SDR, so I'm not familiar with the state of the software stacks/standard forks/etc. That project built cleanly for me on GCC 11.2.1, though. It actually manually defines -fno-common in its Makefile though, so I'd guess I'm looking at a different version of the software.
  • Announcing the release of PiAware 6.0!
    2 projects | /r/ADSB | 2 Sep 2021
  • Hey, I’d love to get into ADS-B tracking and I’m not sure where to start
    4 projects | /r/ADSB | 16 Mar 2021
    dump1090 or readsb (wiedehopf also has a bunch of related utilities/guides on github)
  • Looking for technical documents
    3 projects | /r/ADSB | 12 Feb 2021
    https://github.com/flightaware/dump1090 (used by flightaware)
  • A note from our sponsor - Nutrient
    www.nutrient.io | 19 Feb 2025
    Other PDF SDKs promise a lot - then break. Laggy scrolling, poor mobile UX, tons of bugs, and lack of support cost you endless frustrations. Nutrient’s SDK handles billion-page workloads - so you don’t have to debug PDFs. Used by ~1 billion end users in more than 150 different countries. Learn more →

Stats

Basic dump1090 repo stats
16
947
0.0
27 days ago

Sponsored
Nutrient – The #1 PDF SDK Library, trusted by 10K+ developers
Other PDF SDKs promise a lot - then break. Laggy scrolling, poor mobile UX, tons of bugs, and lack of support cost you endless frustrations. Nutrient’s SDK handles billion-page workloads - so you don’t have to debug PDFs. Used by ~1 billion end users in more than 150 different countries.
www.nutrient.io

Did you know that C is
the 6th most popular programming language
based on number of references?