Initial import: WebAisMap
Closes TG-4 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1 @@
|
||||
# gr-aistx-compatible PHY (phy.py) + optional encode_to_nrzi CLI
|
||||
@@ -0,0 +1,135 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
CLI: AIS fields (type, MMSI, lat/lon, …) -> NRZI bit stream (and optional packed bytes).
|
||||
|
||||
Uses AIVDM_Encoder.py in the parent directory for the PDU, then phy.build_nrzi_frame
|
||||
(same stages as gr-aistx Build_Frame: CRC, reverse, stuff, flags, NRZI).
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import os
|
||||
import sys
|
||||
|
||||
# Каталог со скриптом (phy.py) и корень репозитория (опционально AIVDM_Encoder.py)
|
||||
_SCRIPT_DIR = os.path.abspath(os.path.dirname(__file__))
|
||||
_ROOT = os.path.abspath(os.path.join(_SCRIPT_DIR, ".."))
|
||||
for _p in (_SCRIPT_DIR, _ROOT):
|
||||
if _p not in sys.path:
|
||||
sys.path.insert(0, _p)
|
||||
|
||||
from phy import build_nrzi_frame, nrzi_bits_to_bytes # noqa: E402
|
||||
|
||||
try:
|
||||
import AIVDM_Encoder as enc # noqa: E402
|
||||
except ImportError:
|
||||
enc = None # type: ignore
|
||||
|
||||
|
||||
def build_payload(options) -> str:
|
||||
if enc is None:
|
||||
raise SystemExit(
|
||||
"AIVDM_Encoder.py не найден в корне репозитория. "
|
||||
"Для веб-транспондера используйте pyais + опцию «Кодер: phy.py»."
|
||||
)
|
||||
t = options.type
|
||||
if t == 1:
|
||||
return enc.encode_1(
|
||||
int(options.mmsi), int(options.status), float(options.speed),
|
||||
float(options.lon), float(options.lat), float(options.course), int(options.ts),
|
||||
)
|
||||
if t == 4:
|
||||
return enc.encode_4(
|
||||
int(options.mmsi), float(options.speed),
|
||||
float(options.lon), float(options.lat), float(options.course), int(options.ts),
|
||||
)
|
||||
if t == 14:
|
||||
return enc.encode_14(int(options.mmsi), options.sart_msg)
|
||||
if t == 18:
|
||||
return enc.encode_18(
|
||||
int(options.mmsi), float(options.speed),
|
||||
float(options.lon), float(options.lat), float(options.course), int(options.ts),
|
||||
)
|
||||
if t == 20:
|
||||
return enc.encode_20(
|
||||
int(options.mmsi), int(options.fatdmaoffset), int(options.fatdmaslots),
|
||||
int(options.fatdmatimeout), int(options.fatdmaincrement),
|
||||
)
|
||||
if t == 21:
|
||||
v = 1 if options.v_AtoN else 0
|
||||
return enc.encode_21(
|
||||
int(options.mmsi), int(options.aid_type), options.aid_name,
|
||||
float(options.lon), float(options.lat), options.vsize, v,
|
||||
)
|
||||
if t == 22:
|
||||
return enc.encode_22(
|
||||
int(options.mmsi), int(options.channel_a), int(options.channel_b),
|
||||
float(options.ne_lon), float(options.ne_lat), float(options.sw_lon), float(options.sw_lat),
|
||||
)
|
||||
if t == 23:
|
||||
return enc.encode_23(
|
||||
int(options.mmsi), float(options.ne_lon), float(options.ne_lat),
|
||||
float(options.sw_lon), float(options.sw_lat), int(options.interval), int(options.quiet),
|
||||
)
|
||||
if t == 24:
|
||||
if options.part.upper() == "A":
|
||||
return enc.encode_24(int(options.mmsi), "A", __vname=options.vname.upper())
|
||||
return enc.encode_24(
|
||||
int(options.mmsi), "B",
|
||||
__callsign=options.callsign.upper(), __vsize=options.vsize, __vtype=int(options.vtype),
|
||||
)
|
||||
raise SystemExit("Unsupported type %r" % (t,))
|
||||
|
||||
|
||||
def main() -> None:
|
||||
p = argparse.ArgumentParser(description="AIS parameters -> NRZI bit frame (gr-aistx-compatible chain).")
|
||||
p.add_argument("--type", type=int, required=True, help="AIS message type (1,4,14,18,20-24)")
|
||||
p.add_argument("--mmsi", type=int, default=247320162)
|
||||
p.add_argument("--lat", type=float, default=45.6910166666667, help="Latitude (types 1,4,18,21,22,23)")
|
||||
p.add_argument("--lon", type=float, default=9.72357833333333, help="Longitude (alias for encoder --long)")
|
||||
p.add_argument("--speed", type=float, default=0.1)
|
||||
p.add_argument("--course", type=float, default=83.4)
|
||||
p.add_argument("--ts", type=int, default=38)
|
||||
p.add_argument("--status", type=int, default=15)
|
||||
p.add_argument("--sart-msg", dest="sart_msg", default="SART ACTIVE")
|
||||
p.add_argument("--fatdmaoffset", type=int, default=0)
|
||||
p.add_argument("--fatdmaslots", type=int, default=0)
|
||||
p.add_argument("--fatdmatimeout", type=int, default=0)
|
||||
p.add_argument("--fatdmaincrement", type=int, default=0)
|
||||
p.add_argument("--v_AtoN", action="store_true")
|
||||
p.add_argument("--aid_type", type=int, default=0)
|
||||
p.add_argument("--aid_name", default="@@@@@@@@@@@@@@@@@@@@")
|
||||
p.add_argument("--vsize", default="90x14")
|
||||
p.add_argument("--channel_a", type=int, default=2087)
|
||||
p.add_argument("--channel_b", type=int, default=2088)
|
||||
p.add_argument("--ne_lon", type=float, default=9.9)
|
||||
p.add_argument("--ne_lat", type=float, default=45.8)
|
||||
p.add_argument("--sw_lon", type=float, default=9.5)
|
||||
p.add_argument("--sw_lat", type=float, default=45.5)
|
||||
p.add_argument("--interval", type=int, default=1)
|
||||
p.add_argument("--quiet", type=int, default=15)
|
||||
p.add_argument("--part", default="A")
|
||||
p.add_argument("--vname", default="NAN")
|
||||
p.add_argument("--callsign", default="KC9CAF")
|
||||
p.add_argument("--vtype", type=int, default=60)
|
||||
p.add_argument("--no-nrzi", action="store_true", help="Output NRZ frame before NRZI (debug)")
|
||||
p.add_argument("--bytes", action="store_true", help="Write packed bytes (MSB-first) to stdout (binary)")
|
||||
p.add_argument("--print-payload", action="store_true", help="Print 0/1 PDU line before the frame")
|
||||
|
||||
args = p.parse_args()
|
||||
if enc is None:
|
||||
p.error("AIVDM_Encoder.py не найден; CLI encode_to_nrzi недоступен.")
|
||||
payload = build_payload(args)
|
||||
if args.print_payload:
|
||||
print(payload, file=sys.stderr)
|
||||
bits = build_nrzi_frame(payload, enable_nrzi=not args.no_nrzi)
|
||||
if args.bytes:
|
||||
sys.stdout.buffer.write(nrzi_bits_to_bytes(bits))
|
||||
else:
|
||||
print("".join(str(b) for b in bits))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -0,0 +1,229 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
Physical-layer AIS frame: bit padding, CRC-16 (ITU, as in gr-aistx Build_Frame),
|
||||
HDLC-style bit stuffing, flags, NRZI — ported from gr-aistx/lib/Build_Frame_impl.cc
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
LEN_PREAMBLE = 24
|
||||
LEN_START = 8
|
||||
LEN_CRC = 16
|
||||
LEN_FRAME_MAX = 256
|
||||
|
||||
# CRC-16-CCITT table (same as Build_frame_impl.cc)
|
||||
_CRC_ITU16_TABLE = (
|
||||
0x0000, 0x1189, 0x2312, 0x329B, 0x4624, 0x57AD, 0x6536, 0x74BF,
|
||||
0x8C48, 0x9DC1, 0xAF5A, 0xBED3, 0xCA6C, 0xDBE5, 0xE97E, 0xF8F7,
|
||||
0x1081, 0x0108, 0x3393, 0x221A, 0x56A5, 0x472C, 0x75B7, 0x643E,
|
||||
0x9CC9, 0x8D40, 0xBFDB, 0xAE52, 0xDAED, 0xCB64, 0xF9FF, 0xE876,
|
||||
0x2102, 0x308B, 0x0210, 0x1399, 0x6726, 0x76AF, 0x4434, 0x55BD,
|
||||
0xAD4A, 0xBCC3, 0x8E58, 0x9FD1, 0xEB6E, 0xFAE7, 0xC87C, 0xD9F5,
|
||||
0x3183, 0x200A, 0x1291, 0x0318, 0x77A7, 0x662E, 0x54B5, 0x453C,
|
||||
0xBDCB, 0xAC42, 0x9ED9, 0x8F50, 0xFBEF, 0xEA66, 0xD8FD, 0xC974,
|
||||
0x4204, 0x538D, 0x6116, 0x709F, 0x0420, 0x15A9, 0x2732, 0x36BB,
|
||||
0xCE4C, 0xDFC5, 0xED5E, 0xFCD7, 0x8868, 0x99E1, 0xAB7A, 0xBAF3,
|
||||
0x5285, 0x430C, 0x7197, 0x601E, 0x14A1, 0x0528, 0x37B3, 0x263A,
|
||||
0xDECD, 0xCF44, 0xFDDF, 0xEC56, 0x98E9, 0x8960, 0xBBFB, 0xAA72,
|
||||
0x6306, 0x728F, 0x4014, 0x519D, 0x2522, 0x34AB, 0x0630, 0x17B9,
|
||||
0xEF4E, 0xFEC7, 0xCC5C, 0xDDD5, 0xA96A, 0xB8E3, 0x8A78, 0x9BF1,
|
||||
0x7387, 0x620E, 0x5095, 0x411C, 0x35A3, 0x242A, 0x16B1, 0x0738,
|
||||
0xFFCF, 0xEE46, 0xDCDD, 0xCD54, 0xB9EB, 0xA862, 0x9AF9, 0x8B70,
|
||||
0x8408, 0x9581, 0xA71A, 0xB693, 0xC22C, 0xD3A5, 0xE13E, 0xF0B7,
|
||||
0x0840, 0x19C9, 0x2B52, 0x3ADB, 0x4E64, 0x5FED, 0x6D76, 0x7CFF,
|
||||
0x9489, 0x8500, 0xB79B, 0xA612, 0xD2AD, 0xC324, 0xF1BF, 0xE036,
|
||||
0x18C1, 0x0948, 0x3BD3, 0x2A5A, 0x5EE5, 0x4F6C, 0x7DF7, 0x6C7E,
|
||||
0xA50A, 0xB483, 0x8618, 0x9791, 0xE32E, 0xF2A7, 0xC03C, 0xD1B5,
|
||||
0x2942, 0x38CB, 0x0A50, 0x1BD9, 0x6F66, 0x7EEF, 0x4C74, 0x5DFD,
|
||||
0xB58B, 0xA402, 0x9699, 0x8710, 0xF3AF, 0xE226, 0xD0BD, 0xC134,
|
||||
0x39C3, 0x284A, 0x1AD1, 0x0B58, 0x7FE7, 0x6E6E, 0x5CF5, 0x4D7C,
|
||||
0xC60C, 0xD785, 0xE51E, 0xF497, 0x8028, 0x91A1, 0xA33A, 0xB2B3,
|
||||
0x4A44, 0x5BCD, 0x6956, 0x78DF, 0x0C60, 0x1DE9, 0x2F72, 0x3EFB,
|
||||
0xD68D, 0xC704, 0xF59F, 0xE416, 0x90A9, 0x8120, 0xB3BB, 0xA232,
|
||||
0x5AC5, 0x4B4C, 0x79D7, 0x685E, 0x1CE1, 0x0D68, 0x3FF3, 0x2E7A,
|
||||
0xE70E, 0xF687, 0xC41C, 0xD595, 0xA12A, 0xB0A3, 0x8238, 0x93B1,
|
||||
0x6B46, 0x7ACF, 0x4854, 0x59DD, 0x2D62, 0x3CEB, 0x0E70, 0x1FF9,
|
||||
0xF78F, 0xE606, 0xD49D, 0xC514, 0xB1AB, 0xA022, 0x92B9, 0x8330,
|
||||
0x7BC7, 0x6A4E, 0x58D5, 0x495C, 0x3DE3, 0x2C6A, 0x1EF1, 0x0F78,
|
||||
)
|
||||
|
||||
|
||||
def bits_from_payload_string(s: str) -> list[int]:
|
||||
"""ASCII '0'/'1' string -> list of 0/1 (same as Build_Frame ctor)."""
|
||||
s = s.strip().replace(" ", "").replace("\n", "")
|
||||
out: list[int] = []
|
||||
for c in s:
|
||||
if c == "0":
|
||||
out.append(0)
|
||||
elif c == "1":
|
||||
out.append(1)
|
||||
else:
|
||||
raise ValueError("Payload must be only 0 and 1 characters")
|
||||
return out
|
||||
|
||||
|
||||
def _pad_to_multiple_of_8(bits: list[int]) -> tuple[list[int], int]:
|
||||
r = len(bits) % 8
|
||||
if r == 0:
|
||||
return bits, 0
|
||||
pad = 8 - r
|
||||
return bits + [0] * pad, pad
|
||||
|
||||
|
||||
def reverse_bit_order(bits: list[int]) -> None:
|
||||
"""In-place: reverse bit order within each byte (8-bit group)."""
|
||||
n = len(bits)
|
||||
assert n % 8 == 0
|
||||
for i in range(n // 8):
|
||||
base = i * 8
|
||||
for j in range(4):
|
||||
a = base + j
|
||||
b = base + 7 - j
|
||||
bits[a], bits[b] = bits[b], bits[a]
|
||||
|
||||
|
||||
def _compute_crc_bits(buffer_bits: list[int]) -> list[int]:
|
||||
"""
|
||||
Match Build_Frame_impl::compute_crc + int2bin/reverse/swap (16-bit FCS bits).
|
||||
buffer_bits length must be multiple of 8.
|
||||
"""
|
||||
datalen = len(buffer_bits) // 8
|
||||
data = []
|
||||
for j in range(datalen):
|
||||
v = 0
|
||||
for k in range(8):
|
||||
v = (v << 1) | (buffer_bits[j * 8 + k] & 1)
|
||||
data.append(v)
|
||||
|
||||
crc = 0xFFFF
|
||||
for b in data:
|
||||
crc = ((crc >> 8) ^ _CRC_ITU16_TABLE[(crc ^ b) & 0xFF]) & 0xFFFF
|
||||
crc = (crc & 0xFFFF) ^ 0xFFFF
|
||||
|
||||
ret = ["0"] * 16
|
||||
buf_idx = 15
|
||||
a = crc & 0xFFFF
|
||||
for _ in range(16):
|
||||
ret[buf_idx] = "1" if (a & 1) else "0"
|
||||
a >>= 1
|
||||
buf_idx -= 1
|
||||
|
||||
rb = [1 if c == "1" else 0 for c in ret]
|
||||
reverse_bit_order(rb)
|
||||
ret = ["1" if x else "0" for x in rb]
|
||||
|
||||
buf_idx = 15
|
||||
a = crc & 0xFFFF
|
||||
for _ in range(16):
|
||||
ret[buf_idx] = "1" if (a & 1) else "0"
|
||||
a >>= 1
|
||||
buf_idx -= 1
|
||||
|
||||
temp = ret[8:16]
|
||||
ret[8:16] = ret[0:8]
|
||||
ret[0:8] = temp
|
||||
|
||||
return [1 if c == "1" else 0 for c in ret]
|
||||
|
||||
|
||||
def bit_stuff(bits: list[int]) -> list[int]:
|
||||
"""HDLC-style: after five consecutive 1s insert a 0."""
|
||||
out: list[int] = []
|
||||
consecutive = 0
|
||||
for b in bits:
|
||||
out.append(b)
|
||||
if b & 1:
|
||||
consecutive += 1
|
||||
if consecutive == 5:
|
||||
out.append(0)
|
||||
consecutive = 0
|
||||
else:
|
||||
consecutive = 0
|
||||
return out
|
||||
|
||||
|
||||
def nrz_to_nrzi(data: list[int]) -> None:
|
||||
"""In-place NRZI (same rule as nrz_to_nrzi_impl.cc / Build_Frame_impl)."""
|
||||
prev = 0
|
||||
for i in range(len(data)):
|
||||
nrz = data[i] & 1
|
||||
if nrz == 0:
|
||||
nrzi = prev ^ 1
|
||||
else:
|
||||
nrzi = prev
|
||||
data[i] = nrzi
|
||||
prev = nrzi
|
||||
|
||||
|
||||
def _preamble_bits() -> list[int]:
|
||||
return [1, 0] * (LEN_PREAMBLE // 2)
|
||||
|
||||
|
||||
def _start_flag_bits() -> list[int]:
|
||||
return [0, 1, 1, 1, 1, 1, 1, 0]
|
||||
|
||||
|
||||
def build_nrzi_frame(payload_ascii: str, enable_nrzi: bool = True) -> list[int]:
|
||||
"""
|
||||
:param payload_ascii: AIS PDU as '0'/'1' string (output style of AIVDM_Encoder.py)
|
||||
:param enable_nrzi: if False, return NRZ frame bits (before NRZI), for debugging
|
||||
:return: list of 0/1 (length 256 for short PDUs, or dynamic for long)
|
||||
"""
|
||||
payload = bits_from_payload_string(payload_ascii)
|
||||
payload, _ = _pad_to_multiple_of_8(payload)
|
||||
len_payload = len(payload)
|
||||
|
||||
crc_bits = _compute_crc_bits(payload)
|
||||
full = payload + crc_bits
|
||||
reverse_bit_order(full)
|
||||
|
||||
stuffed = bit_stuff(full)
|
||||
|
||||
preamble = _preamble_bits()
|
||||
start = _start_flag_bits()
|
||||
end = _start_flag_bits()
|
||||
|
||||
if len_payload <= 168:
|
||||
frame = [0] * LEN_FRAME_MAX
|
||||
idx = 0
|
||||
frame[idx:idx + LEN_PREAMBLE] = preamble
|
||||
idx += LEN_PREAMBLE
|
||||
frame[idx:idx + LEN_START] = start
|
||||
idx += LEN_START
|
||||
frame[idx:idx + len(stuffed)] = stuffed
|
||||
idx += len(stuffed)
|
||||
frame[idx:idx + 8] = end
|
||||
idx += 8
|
||||
# padding to 256
|
||||
assert idx <= LEN_FRAME_MAX
|
||||
if enable_nrzi:
|
||||
nrz_to_nrzi(frame)
|
||||
return frame
|
||||
|
||||
len_frame = LEN_PREAMBLE + LEN_START * 2 + len(stuffed)
|
||||
while len_frame % 8 != 0:
|
||||
len_frame += 1
|
||||
frame = [0] * len_frame
|
||||
idx = 0
|
||||
frame[idx:idx + LEN_PREAMBLE] = preamble
|
||||
idx += LEN_PREAMBLE
|
||||
frame[idx:idx + LEN_START] = start
|
||||
idx += LEN_START
|
||||
frame[idx:idx + len(stuffed)] = stuffed
|
||||
idx += len(stuffed)
|
||||
frame[idx:idx + 8] = end
|
||||
if enable_nrzi:
|
||||
nrz_to_nrzi(frame)
|
||||
return frame
|
||||
|
||||
|
||||
def nrzi_bits_to_bytes(bits: list[int]) -> bytes:
|
||||
"""Pack MSB-first within each byte (same as byte_packing in Build_Frame)."""
|
||||
assert len(bits) % 8 == 0
|
||||
out = bytearray()
|
||||
for i in range(len(bits) // 8):
|
||||
b = 0
|
||||
for k in range(8):
|
||||
b = b * 2 + (bits[i * 8 + k] & 1)
|
||||
out.append(b & 0xFF)
|
||||
return bytes(out)
|
||||
Reference in New Issue
Block a user