Hellas Zone
SA7SVR
DISCONNECTED
PKT: 0
STN: 0
LoRa: 0
APRS-IS CONNECTION
TYPE CALLSIGN → AUTO PASSCODE
STATUSIDLE
RECONNECTS0
LAST PACKET
euro.aprs2.net
OFFLINE
STATION FILTERS
ΧΩΡΑ / COUNTRY
SEARCH CALLSIGN
STATIONS 0 shown
Not connected.
Set up WS proxy or
use APRS.fi REST API.
ZOOM: 8
CENTER: 57.7, 12.0
GRID:
Move mouse over map
Copyright © 2017-2026 Hellas Zone. All Rights Reserved. Developer SA7SVR | LORA APRS · LIVE MAP — Απαγορεύεται η αντιγραφή μέρους ή του συνόλου του κώδικα χωρίς την άδεια μου.
📡 CLICK FIRST POINT ON MAP
🌦 WEATHER STATION
Station
Temp
Wind
Humidity
Pressure
STATION DETAILS
Click a station
on the map or in the list
to see full details
📡
LATITUDE
LONGITUDE
SPEED / HDG
ALTITUDE
GRID SQUARE
LAST HEARD
SYMBOL
PACKETS THIS SESSION
TRAIL
TOTAL STATIONS0
LoRa0
MOBILE / MOVING0
WX STATIONS0
iGATE + DIGI0
TOTAL PACKETS0
LIVE PACKET LOG 0

CONNECTING...

📡 WebSocket Proxy — Quick Setup

Option 1 — Node.js (Easiest) npm install ws node aprs-ws-proxy.js aprs-ws-proxy.js: const { WebSocketServer } = require('ws'); const net = require('net'); const wss = new WebSocketServer({ port: 8765 }); wss.on('connection', ws => { const tcp = net.connect(14580, 'rotate.aprs2.net', () => { console.log('Connected to APRS-IS'); }); tcp.on('data', d => { if (ws.readyState === 1) ws.send(d.toString()); }); ws.on('message', m => tcp.write(m + '\r\n')); ws.on('close', () => tcp.destroy()); tcp.on('close', () => ws.close()); tcp.on('error', e => { console.error(e); ws.close(); }); }); console.log('WS Proxy running on ws://localhost:8765'); Then set WS Server field to: ws://localhost:8765 Option 2 — Python pip install websockets # See: github.com/hessu/aprsc for full server