kopia lustrzana https://github.com/glidernet/python-ogn-client
Changed InReach parser (fixed #73)
rodzic
14fbcd7c12
commit
b495e6aec0
|
@ -1,4 +1,9 @@
|
||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
## unreleased
|
||||||
|
- parser: Changed InReach parser (fixes #73)
|
||||||
|
- parser: separated incompatible ID into parser dependant ID (lt24: address -> lt24_id, skylines: address -> skylines_id,
|
||||||
|
spider: id_spider -> spider_registration, address -> spider_id, spot: address -> spot_id) (fixes #64)
|
||||||
|
|
||||||
## 0.9.7: - 2020-05-21
|
## 0.9.7: - 2020-05-21
|
||||||
- parser: Added support for OGPAW (PilotAware) beacons
|
- parser: Added support for OGPAW (PilotAware) beacons
|
||||||
- client: Dropped compatibility for Python 3.4
|
- client: Dropped compatibility for Python 3.4
|
||||||
|
|
|
@ -104,7 +104,7 @@ dstcall_parser_mapping = {'APRS': OgnParser(),
|
||||||
'OGNSDR': ReceiverParser(),
|
'OGNSDR': ReceiverParser(),
|
||||||
'OGCAPT': GenericParser(beacon_type='capturs'),
|
'OGCAPT': GenericParser(beacon_type='capturs'),
|
||||||
'OGFLYM': GenericParser(beacon_type='flymaster'),
|
'OGFLYM': GenericParser(beacon_type='flymaster'),
|
||||||
'OGINREACH': InreachParser(),
|
'OGINRE': InreachParser(),
|
||||||
'OGLT24': LT24Parser(),
|
'OGLT24': LT24Parser(),
|
||||||
'OGNAVI': NaviterParser(),
|
'OGNAVI': NaviterParser(),
|
||||||
'OGPAW': GenericParser(beacon_type='pilot_aware'),
|
'OGPAW': GenericParser(beacon_type='pilot_aware'),
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# The following beacons are example for Garmin inReach APRS format
|
# The following beacons are example for Garmin inReach APRS format
|
||||||
# source: https://github.com/glidernet/ogn-aprs-protocol
|
# source: https://github.com/glidernet/ogn-aprs-protocol
|
||||||
#
|
#
|
||||||
OGN8A0749>OGINREACH,qAS,INREACH:/142700h0448.38N/07600.74W'000/000/A=004583 id300434060496190 inReac True
|
OGN8A0749>OGINRE,qAS,INREACH:/142700h0448.38N/07600.74W'000/000/A=004583 id300434060496190 inReac True
|
Ładowanie…
Reference in New Issue