sdrangel/plugins/feature/aprs
Jon Beniston 446749cbbb Map updates.
Add support for different map types (street/satellite) and different map
providers.
Support finding real world addresses on the map.
Add Maidenhead locator converter.
Add Beacons.
Allow data sources to be selected by a user.
Add context menu to allow setting an object as a target, setting center
frequency and adjusting display order.
2021-01-22 14:54:22 +00:00
..
aprs Add APRS Feature 2021-01-13 20:37:09 +00:00
CMakeLists.txt Add APRS Feature 2021-01-13 20:37:09 +00:00
aprs.cpp Instantiate QNetworkAccessManager to avoid crash on reverse API usage 2021-01-15 11:24:21 +00:00
aprs.h Add APRS Feature 2021-01-13 20:37:09 +00:00
aprs.qrc Add APRS Feature 2021-01-13 20:37:09 +00:00
aprsgui.cpp Map updates. 2021-01-22 14:54:22 +00:00
aprsgui.h Add APRS Feature 2021-01-13 20:37:09 +00:00
aprsgui.ui Start ARPS GUI on stations tab 2021-01-13 21:18:14 +00:00
aprsplugin.cpp Updated versions and changelogs 2021-01-14 23:36:55 +01:00
aprsplugin.h Add APRS Feature 2021-01-13 20:37:09 +00:00
aprssettings.cpp Add APRS Feature 2021-01-13 20:37:09 +00:00
aprssettings.h Add APRS Feature 2021-01-13 20:37:09 +00:00
aprssettingsdialog.cpp Add APRS Feature 2021-01-13 20:37:09 +00:00
aprssettingsdialog.h Add APRS Feature 2021-01-13 20:37:09 +00:00
aprssettingsdialog.ui Add APRS Feature 2021-01-13 20:37:09 +00:00
aprswebapiadapter.cpp Fix cut and paste errors from PTT feature 2021-01-15 11:00:03 +00:00
aprswebapiadapter.h Add APRS Feature 2021-01-13 20:37:09 +00:00
aprsworker.cpp Disconnect connection to APRS-IS when worker stopped 2021-01-14 10:03:37 +00:00
aprsworker.h Add APRS Feature 2021-01-13 20:37:09 +00:00
readme.md Add APRS Feature 2021-01-13 20:37:09 +00:00

readme.md

APRS Feature Plugin

Introduction

The APRS plugin displays APRS (Automatic Packet Reporting System) packets. APRS packets can be received over RF via one or more Packet Demodulator source channels or from the Internet via an APRS-IS IGate.

Interface

APRS feature plugin GUI

1: Source channels

This displays a list of the Packet Demodulator channels the APRS feature is receiving packets from.

2: Enable APRS-IS IGate

When checked, enables the APRS-IS IGate (Internet gateway). The IGate forwards packets received via the Packet Demodulators to APRS-IS internet servers. These servers collate packets from all IGates and allow them to be viewed on web sites such as https://aprs.fi, https://www.aprsdirect.com/ and http://ariss.net/ (the latter being for packets repeated via satellites and the ISS). It is also possible to receive packets via the IGate, which allows you to see packets that you cannot receive via RF.

3: Show APRS Settings

Pressing this button shows the APRS Settings Dialog. This dialog allows you to enter:

  • The APRS-IS server the IGate should connect to. Please choose your local server. (noam = North America, euro = Europe, etc).
  • The callsign the IGate should connect with.
  • The passcode corresponding to the given callsign.
  • A serverside filter, that specifies which packets should be forwarded from the internet to SDRangel. See http://www.aprs-is.net/javAPRSFilter.aspx m/50 will send you packets within 50 km of the last known position of the station corresponding to the callsign used to log in with. If you do not have a corresponding station, you can specify a location by passing a latitude and longitude. E.g: r/lat/lon/50

Map

The APRS feature can plot APRS symbols and data on the Map. To use, simply open a Map feature and the APRS plugin will display packets it receives from that point on it. Selecting an APRS item on the map will display a text bubble containing APRS status, position and weather data.

APRS map

Attribution

APRS icons are from: https://github.com/hessu/aprs-symbols

API

Full details of the API can be found in the Swagger documentation. Here is a quick example of how to enable the APRS-IS IGate:

curl -X PATCH "http://127.0.0.1:8091/sdrangel/featureset/0/feature/0/settings" -d '{"featureType": "APRS",  "APRSSettings": { "igateCallsign": "MYCALLSIGN", "igatePasscode": "12345", "igateFilter": "r/50.2/10.2/25", "igateEnabled": 1  }}'