ISS Tracker to CSV für den Raspberry Pi – Vers. 3. Hier nun noch eine Möglichkeit die ISS Postion zu ermitteln und in CSV-Format zu übersetzen. In diesem Flow, ist das CSV-Ergebniss etwas anders. Jeder Satz besteht aus drei Zeilen siehe:
Hier noch die Einstellung für den Datei-Node
Hier der Beispiel Flow:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
[ [ { "id": "53d2a45b.2c8b8c", "type": "tab", "label": "iss Version 3", "disabled": false, "info": "" }, { "id": "2d57c8e4.9a953", "type": "iss-location", "z": "53d2a45b.2c8b8c", "method": "ISSLocationNow", "name": "Aktuelle ISS Position ermitteln ", "x": 310, "y": 220, "wires": [ [ "bb57f3b8.507298" ] ] }, { "id": "64c14124.ffd458", "type": "inject", "z": "53d2a45b.2c8b8c", "name": "alle 10 Sekunden", "topic": "", "payload": "", "payloadType": "date", "repeat": "10", "crontab": "", "once": false, "onceDelay": 0.1, "x": 170, "y": 160, "wires": [ [ "2d57c8e4.9a953" ] ] }, { "id": "c0bb3f30.39e798", "type": "debug", "z": "53d2a45b.2c8b8c", "name": "Daten Ausgabe", "active": true, "tosidebar": true, "console": false, "tostatus": false, "complete": "payload", "targetType": "msg", "x": 880, "y": 280, "wires": [] }, { "id": "cf03f946.3dbfd8", "type": "comment", "z": "53d2a45b.2c8b8c", "name": "(c) 2020 Thomas Wenzlaff www.wenzlaff.info", "info": "", "x": 450, "y": 80, "wires": [] }, { "id": "744482f2.358d8c", "type": "comment", "z": "53d2a45b.2c8b8c", "name": "Tracke ISS Position", "info": "", "x": 150, "y": 80, "wires": [] }, { "id": "bb57f3b8.507298", "type": "json-2-csv", "z": "53d2a45b.2c8b8c", "name": "", "x": 460, "y": 280, "wires": [ [ "c0bb3f30.39e798", "78af4e6e.7f309" ] ] }, { "id": "78af4e6e.7f309", "type": "file", "z": "53d2a45b.2c8b8c", "name": "In Datei iss-pos-v3.csv speichern", "filename": "/home/openhabian/iss-data/iss-pos-v3.csv", "appendNewline": true, "createDir": false, "overwriteFile": "false", "encoding": "none", "x": 620, "y": 340, "wires": [ [] ] } ] ] |