|
|
| (79 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| − | === AIS sources ===
| |
| − | ==== NMEA ====
| |
| − | * https://www.aishub.net
| |
| − | * https://www.kystverket.no/en/sea-transport-and-ports/ais/access-to-ais-data/ (Norway)
| |
| − | ** tcp://153.44.253.27:5631
| |
| − | * http://ssia-ais.erau.edu/ (Florida)
| |
| − | ** tcp://ssia-ais.erau.edu:4000
| |
| | | | |
| − | ==== API ====
| + | == AIS decoders == |
| − | * https://www.aishub.net
| + | |
| − | * https://aisstream.io
| + | |
| − | ** <code>wscat -c wss://stream.aisstream.io/v0/stream -w 300 -x '{"APIKey": "***", "BoundingBoxes": [[[-180, -90],[180, 90]]], "FilterMessageTypes":["SafetyBroadcastMessage","LongRangeAisBroadcastMessage","BinaryBroadcastMessage","GroupAssignmentCommand"]}'</code>
| + | |
| − | * ...
| + | |
| − | | + | |
| − | ==== Historic ====
| + | |
| − | * ...
| + | |
| − | | + | |
| − | === AIS decoders ===
| + | |
| − | ==== Ais Decoder ====
| + | |
| − | * https://arundaleais.github.io/docs/ais/ais_decoder.html (WIN)
| + | |
| − | | + | |
| − | ==== gpsdecode ====
| + | |
| − | * https://gpsd.gitlab.io/gpsd/gpsdecode.html
| + | |
| − | * <code>nc 153.44.253.27 5631 | gpsdecode | grep '"type":8'</code>
| + | |
| − | <pre>
| + | |
| − | {"class":"AIS","device":"stdin","type":8,"repeat":0,"mmsi":257057800,"scaled":true,
| + | |
| − | "dac":200,"fid":10,"vin":"00000000","length":215,"beam":60,"shiptype":8440,"shiptype_text":"Illegal ship type value.",
| + | |
| − | "hazard":5,"hazard_text":"Unknown","draught":0,"loaded":0,"loaded_text":"N/A (default)",
| + | |
| − | "speed_q":false,"course_q":false,"heading_q":false}
| + | |
| − | </pre>
| + | |
| − | | + | |
| − | ==== pyais ====
| + | |
| − | * https://github.com/M0r13n/pyais
| + | |
| − | * <code>pipx install pyais</code>
| + | |
| − | * <code>pipx ensurepath</code>
| + | |
| − | * <code>nc 153.44.253.27 5631 | ais-decode --json | grep '"msg_type": 8'</code>
| + | |
| − | <pre>
| + | |
| − | {"msg_type": 8, "repeat": 0, "mmsi": 257057800,
| + | |
| − | "dac": 200, "fid": 10, "vin": "00000000", "length": 21.5, "beam": 6.0, "shiptype": 8440,
| + | |
| − | "hazard": 5, "draught": 0.0, "loaded": 0,
| + | |
| − | "speed_q": false, "course_q": false, "heading_q": false}
| + | |
| − | </pre>
| + | |
| − | <pre>
| + | |
| − | {"msg_type": 8, "repeat": 0, "mmsi": 215349000, "dac": 1, "fid": 27,
| + | |
| − | "data": "FwFAGPP//3ggjnij9kTwQREIR+t9QIGPWI/RpYEAV0kfnN4B/oNCP0lbA/56ZH7oMAfMqQkAPXgPnOUSBujgIEAnJCF1QEOc0Uhdt0CLKQCQxYXBGjYZIXqkAkLbgkK4VwS3FHSHEE4JngLpEMz8"}
| + | |
| − | </pre>
| + | |
| − | <pre>
| + | |
| − | {"msg_type": 8, "repeat": 0, "mmsi": 215349000, "dac": 1, "fid": 29, "data": "FwUw4VOC2BYVIQEyChYkGAdIlCnI"}
| + | |
| − | </pre>
| + | |
| − | | + | |
| − | ==== aisdecode ====
| + | |
| − | * https://github.com/madpsy/aisdecode/
| + | |
| − | * <code>./aisdecode-linux-amd64 -log-all-decodes decoded</code>
| + | |
| − | | + | |
| − | ==== AIS-catcher ====
| + | |
| − | * input: https://docs.aiscatcher.org/configuration/input/tcp/
| + | |
| − | * output: https://docs.aiscatcher.org/configuration/output/console/
| + | |
| − | * web view: https://docs.aiscatcher.org/configuration/output/web-viewer/
| + | |
| − | * <code>AIS-catcher -t txt://153.44.253.27:5631 -o 5 -N 8101 GEOJSON false MESSAGE true REALTIME false</code>
| + | |