kopia lustrzana https://github.com/glidernet/python-ogn-client
245 wiersze
10 KiB
Python
245 wiersze
10 KiB
Python
import re
|
|
|
|
PATTERN_APRS = re.compile(r"^(?P<callsign>.+?)>(?P<dstcall>[A-Z0-9]+),((?P<relay>[A-Za-z0-9]+)\*)?.*,(?P<receiver>.+?):(?P<aprs_type>(.))(?P<aprs_body>.*)$")
|
|
PATTERN_APRS_POSITION = re.compile(r"^(?P<time>(([0-1]\d|2[0-3])[0-5]\d[0-5]\dh|([0-2]\d|3[0-1])([0-1]\d|2[0-3])[0-5]\dz))(?P<latitude>9000\.00|[0-8]\d{3}\.\d{2})(?P<latitude_sign>N|S)(?P<symbol_table>.)(?P<longitude>18000\.00|1[0-7]\d{3}\.\d{2}|0\d{4}\.\d{2})(?P<longitude_sign>E|W)(?P<symbol>.)(?P<course_extension>(?P<course>\d{3})/(?P<ground_speed>\d{3}))?(/A=(?P<altitude>(-\d{5}|\d{6})))?(?P<pos_extension>\s!W((?P<latitude_enhancement>\d)(?P<longitude_enhancement>\d))!)?(?:\s(?P<comment>.*))?$")
|
|
PATTERN_APRS_POSITION_WEATHER = re.compile(r"^(?P<time>(([0-1]\d|2[0-3])[0-5]\d[0-5]\dh|([0-2]\d|3[0-1])([0-1]\d|2[0-3])[0-5]\dz))(?P<latitude>9000\.00|[0-8]\d{3}\.\d{2})(?P<latitude_sign>N|S)(?P<symbol_table>.)(?P<longitude>18000\.00|1[0-7]\d{3}\.\d{2}|0\d{4}\.\d{2})(?P<longitude_sign>E|W)(?P<symbol>.)(?P<wind_direction>(\d{3}|\.{3}))/(?P<wind_speed>(\d{3}|\.{3}))g(?P<wind_speed_peak>(\d{3}|\.{3}))t(?P<temperature>(\d{3}|\.{3}))(r(?P<rainfall_1h>\d{3}))?(p(?P<rainfall_24h>\d{3}))?(h(?P<humidity>\d{2}))?(b(?P<barometric_pressure>\d{5}))?(?:\s(?P<comment>.*))?$")
|
|
PATTERN_APRS_STATUS = re.compile(r"^(?P<time>(([0-1]\d|2[0-3])[0-5]\d[0-5]\dh|([0-2]\d|3[0-1])([0-1]\d|2[0-3])[0-5]\dz))\s(?P<comment>.*)$")
|
|
PATTERN_APRS_POSITION_WEATHER_WX = re.compile(r"""
|
|
^(?P<callsign>.+?)\*
|
|
(?P<time>(([0-1]\d|2[0-3])[0-5]\d[0-5]\dh|([0-2]\d|3[0-1])([0-1]\d|2[0-3])[0-5]\dz))
|
|
(?P<latitude>9000\.00|[0-8]\d{3}\.\d{2})
|
|
(?P<latitude_sign>N|S)
|
|
(?P<symbol_table>.)
|
|
(?P<longitude>18000\.00|1[0-7]\d{3}\.\d{2}|0\d{4}\.\d{2})
|
|
(?P<longitude_sign>E|W)
|
|
(?P<symbol>_)
|
|
(?P<wind_direction>(\d{3}|\.{3}))/
|
|
(?P<wind_speed>(\d{3}|\.{3}))
|
|
(?:c(?P<wind_direction1>[\d]+)?)?
|
|
(?:s(?P<wind_speed2>[\d]+)?)?
|
|
(?:g(?P<wind_speed_peak>[\d]+)?)?
|
|
(?:r(?P<rainfall_1h>[\d]+)?)?
|
|
(?:p(?P<rainfall_24h>[\d]+)?)?
|
|
(?:l(?P<luminosity>[\d]+)?)?
|
|
(?:L(?P<luminosity2>[\d]+)?)?
|
|
(?:P(?P<rain_since_midnight>[\d]+)?)?
|
|
(?:t(?P<temperature>[\d]+)?)?
|
|
(?:h(?P<humidity>[\d]+)?)?
|
|
(?:b(?P<barometric_pressure>[\d]+)?)?
|
|
(?P<comment>.*)
|
|
$""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_SERVER = re.compile(r"^# aprsc (?P<version>[a-z0-9\.\-]+) (?P<timestamp>\d+ [A-Za-z]+ \d+ \d{2}:\d{2}:\d{2} GMT) (?P<server>[A-Z0-9]+) (?P<ip_address>\d+\.\d+\.\d+\.\d+):(?P<port>\d+)$")
|
|
|
|
PATTERN_FANET_POSITION_COMMENT = re.compile(r"""
|
|
(id(?P<details>[\dA-F]{2})(?P<address>[\dA-F]{6}?)\s?)?
|
|
(?:(?P<climb_rate>[+-]\d+)fpm)?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_FANET_STATUS_COMMENT = re.compile(r"""
|
|
(?:(Name=\"(?P<fanet_name>[^\"]*)\")\s?)?
|
|
(?:(?P<signal_quality>[\d.]+?)dB\s?)?
|
|
(?:(?P<frequency_offset>[+-][\d.]+?)kHz\s?)?
|
|
(?:(?P<error_count>\d+)e\s?)?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_FLARM_POSITION_COMMENT = re.compile(r"""
|
|
id(?P<details>[\dA-F]{2})(?P<address>[\dA-F]{6}?)\s?
|
|
(?:(?P<climb_rate>[+-]\d+?)fpm\s)?
|
|
(?:(?P<turn_rate>[+-][\d.]+?)rot\s)?
|
|
(?:(?P<signal_quality>[\d.]+?)dB\s)?
|
|
(?:(?P<error_count>\d+)e\s)?
|
|
(?:(?P<frequency_offset>[+-][\d.]+?)kHz\s?)?
|
|
(?:gps(?P<gps_quality>(?P<gps_quality_horizontal>(\d+))x(?P<gps_quality_vertical>(\d+)))\s?)?
|
|
(?:s(?P<software_version>[\d.]+)\s?)?
|
|
(?:h(?P<hardware_version>[\dA-F]{2})\s?)?
|
|
(?:r(?P<real_address>[\dA-F]+)\s?)?
|
|
(?:(?P<signal_power>[+-][\d.]+)dBm\s?)?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_LT24_POSITION_COMMENT = re.compile(r"""
|
|
id(?P<lt24_id>\d+)\s
|
|
(?P<climb_rate>[+-]\d+)fpm\s
|
|
(?P<source>.+)
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_NAVITER_POSITION_COMMENT = re.compile(r"""
|
|
id(?P<details>[\dA-F]{4})(?P<address>[\dA-F]{6})\s
|
|
(?P<climb_rate>[+-]\d+)fpm\s
|
|
(?P<turn_rate>[+-][\d.]+)rot
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_SKYLINES_POSITION_COMMENT = re.compile(r"""
|
|
id(?P<skylines_id>\d+)\s
|
|
(?P<climb_rate>[+-]\d+)fpm
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_SPIDER_POSITION_COMMENT = re.compile(r"""
|
|
id(?P<spider_id>[\d-]+)\s
|
|
(?P<signal_power>[+-]\d+)dB\s
|
|
(?P<spider_registration>[A-Z0-9]+)\s
|
|
(?P<gps_quality>.+)
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_SPOT_POSITION_COMMENT = re.compile(r"""
|
|
id(?P<spot_id>[\d-]+)\s
|
|
(?P<model>SPOT[A-Z\d]+)\s
|
|
(?P<status>[A-Z]+)
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_INREACH_POSITION_COMMENT = re.compile(r"""
|
|
id(?P<id>[\d]+)\s
|
|
(?P<model>inReac[A-Za-z\d]*)\s
|
|
(?P<status>[A-Za-z]+)\s?
|
|
(?P<pilot_name>.+)?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_TRACKER_POSITION_COMMENT = re.compile(r"""
|
|
id(?P<details>[\dA-F]{2})(?P<address>[\dA-F]{6}?)\s?
|
|
(?:(?P<climb_rate>[+-]\d+?)fpm\s)?
|
|
(?:(?P<turn_rate>[+-][\d.]+?)rot\s)?
|
|
(?:FL(?P<flight_level>[\d.]+)\s)?
|
|
(?:(?P<signal_quality>[\d.]+?)dB\s)?
|
|
(?:(?P<error_count>\d+)e\s)?
|
|
(?:(?P<frequency_offset>[+-][\d.]+?)kHz\s?)?
|
|
(?:gps(?P<gps_quality>(?P<gps_quality_horizontal>(\d+))x(?P<gps_quality_vertical>(\d+)))\s?)?
|
|
(?:(?P<signal_power>[+-][\d.]+)dBm\s?)?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_SAFESKY_POSITION_COMMENT = re.compile(r"""
|
|
id(?P<details>[\dA-F]{2})(?P<address>[\dA-F]{6}?)\s?
|
|
(?:(?P<climb_rate>[+-]\d+?)fpm\s)?
|
|
(?:gps(?P<gps_quality>(?P<gps_quality_horizontal>(\d+))x(?P<gps_quality_vertical>(\d+)))?)?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_TRACKER_STATUS_COMMENT = re.compile(r"""
|
|
h(?P<hardware_version>[\d]{2})\s
|
|
v(?P<software_version>[\d]{2})\s?
|
|
(?:(?P<gps_satellites>[\d]+)sat/(?P<gps_quality>\d)\s?)?
|
|
(?:(?P<gps_altitude>\d+)m\s?)?
|
|
(?:(?P<pressure>[\d.]+)hPa\s?)?
|
|
(?:(?P<temperature>[+-][\d.]+)degC\s?)?
|
|
(?:(?P<humidity>\d+)%\s?)?
|
|
(?:(?P<voltage>[\d.]+)V\s?)?
|
|
(?:(?P<transmitter_power>\d+)/(?P<noise_level>[+-][\d.]+)dBm\s?)?
|
|
(?:(?P<relays>\d+)/min)?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_RECEIVER_POSITION_COMMENT = re.compile(r"""
|
|
(?:(?P<user_comment>.+))?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_RECEIVER_STATUS_COMMENT = re.compile(r"""
|
|
(?:
|
|
v(?P<version>\d+\.\d+\.\d+)
|
|
(?:\.(?P<platform>.+?))?
|
|
\s)?
|
|
CPU:(?P<cpu_load>[\d.]+)\s
|
|
RAM:(?P<ram_free>[\d.]+)/(?P<ram_total>[\d.]+)MB\s
|
|
NTP:(?P<ntp_offset>[\d.]+)ms/(?P<ntp_correction>[+-][\d.]+)ppm\s
|
|
(?:(?P<voltage>[\d.]+)V\s)?
|
|
(?:(?P<amperage>[\d.]+)A\s)?
|
|
(?:(?P<cpu_temperature>[+-][\d.]+)C\s*)?
|
|
(?:(?P<visible_senders>\d+)/(?P<senders>\d+)Acfts\[1h\]\s*)?
|
|
(?:RF:
|
|
(?:
|
|
(?P<rf_correction_manual>[+-][\d]+)
|
|
(?P<rf_correction_automatic>[+-][\d.]+)ppm/
|
|
)?
|
|
(?P<signal_quality>[+-][\d.]+)dB
|
|
(?:/(?P<senders_signal_quality>[+-][\d.]+)dB@10km\[(?P<senders_messages>\d+)\])?
|
|
(?:/(?P<good_senders_signal_quality>[+-][\d.]+)dB@10km\[(?P<good_senders>\d+)/(?P<good_and_bad_senders>\d+)\])?
|
|
)?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
PATTERN_TELNET_50001 = re.compile(r"""
|
|
(?P<pps_offset>\d\.\d+)sec:(?P<frequency>\d+\.\d+)MHz:\s+
|
|
(?P<aircraft_type>\d):(?P<address_type>\d):(?P<address>[A-F0-9]{6})\s
|
|
(?P<timestamp>\d{6}):\s
|
|
\[\s*(?P<latitude>[+-]\d+\.\d+),\s*(?P<longitude>[+-]\d+\.\d+)\]deg\s*
|
|
(?P<altitude>\d+)m\s*
|
|
(?P<climb_rate>[+-]\d+\.\d+)m/s\s*
|
|
(?P<ground_speed>\d+\.\d+)m/s\s*
|
|
(?P<track>\d+\.\d+)deg\s*
|
|
(?P<turn_rate>[+-]\d+\.\d+)deg/sec\s*
|
|
(?P<magic_number>\d+)\s*
|
|
(?P<gps_status>[0-9x]+)m\s*
|
|
(?P<channel>\d+)(?P<flarm_timeslot>[f_])(?P<ogn_timeslot>[o_])\s*
|
|
(?P<frequency_offset>[+-]\d+\.\d+)kHz\s*
|
|
(?P<decode_quality>\d+\.\d+)/(?P<signal_quality>\d+\.\d+)dB/(?P<demodulator_type>\d+)\s+
|
|
(?P<error_count>\d+)e\s*
|
|
(?P<distance>\d+\.\d+)km\s*
|
|
(?P<bearing>\d+\.\d+)deg\s*
|
|
(?P<phi>[+-]\d+\.\d+)deg\s*
|
|
(?P<multichannel>\+)?\s*
|
|
\?\s*
|
|
R?\s*
|
|
(B(?P<baro_altitude>\d+))?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
# The following regexp patterns are part of the ruby ogn-client.
|
|
# source: https://github.com/svoop/ogn_client-ruby
|
|
|
|
# The MIT License (MIT)
|
|
#
|
|
# Copyright (c) 2015-2017 Sven Schwyn
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
# THE SOFTWARE.
|
|
|
|
PATTERN_RECEIVER_BEACON = re.compile(r"""
|
|
(?:
|
|
v(?P<version>\d+\.\d+\.\d+)
|
|
(?:\.(?P<platform>.+?))?
|
|
\s)?
|
|
CPU:(?P<cpu_load>[\d.]+)\s
|
|
RAM:(?P<ram_free>[\d.]+)/(?P<ram_total>[\d.]+)MB\s
|
|
NTP:(?P<ntp_offset>[\d.]+)ms/(?P<ntp_correction>[+-][\d.]+)ppm\s?
|
|
(?:(?P<voltage>[\d.]+)V\s)?
|
|
(?:(?P<amperage>[\d.]+)A\s)?
|
|
(?:(?P<cpu_temperature>[+-][\d.]+)C\s*)?
|
|
(?:(?P<visible_senders>\d+)/(?P<senders>\d+)Acfts\[1h\]\s*)?
|
|
(Lat\:(?P<latency>\d+\.\d+)s\s*)?
|
|
(?:RF:
|
|
(?:
|
|
(?P<rf_correction_manual>[+-][\d]+)
|
|
(?P<rf_correction_automatic>[+-][\d.]+)ppm/
|
|
)?
|
|
(?P<signal_quality>[+-][\d.]+)dB
|
|
(?:/(?P<senders_signal_quality>[+-][\d.]+)dB@10km\[(?P<senders_messages>\d+)\])?
|
|
(?:/(?P<good_senders_signal_quality>[+-][\d.]+)dB@10km\[(?P<good_senders>\d+)/(?P<good_and_bad_senders>\d+)\])?
|
|
)?
|
|
""", re.VERBOSE | re.MULTILINE)
|
|
|
|
|
|
PATTERN_AIRCRAFT_BEACON = re.compile(r"""
|
|
id(?P<details>[\dA-F]{2})(?P<address>[\dA-F]{6}?)\s?
|
|
(?:(?P<climb_rate>[+-]\d+?)fpm\s)?
|
|
(?:(?P<turn_rate>[+-][\d.]+?)rot\s)?
|
|
(?:FL(?P<flight_level>[\d.]+)\s)?
|
|
(?:(?P<signal_quality>[\d.]+?)dB\s)?
|
|
(?:(?P<errors>\d+)e\s)?
|
|
(?:(?P<frequency_offset>[+-][\d.]+?)kHz\s?)?
|
|
(?:gps(?P<gps_quality>(?P<gps_quality_horizontal>(\d+))x(?P<gps_quality_vertical>(\d+)))\s?)?
|
|
(?:s(?P<flarm_software_version>[\d.]+)\s?)?
|
|
(?:h(?P<flarm_hardware_version>[\dA-F]{2})\s?)?
|
|
(?:r(?P<flarm_id>[\dA-F]+)\s?)?
|
|
(?:(?P<signal_power>[+-][\d.]+)dBm\s?)?
|
|
(?:(?P<proximity>(hear[\dA-F]{4}\s?)+))?
|
|
""", re.VERBOSE | re.MULTILINE)
|