Bin nun wieder von meiner Weltreise zurück. In der zwischenzeit gab es einige Updates.
Es gibt eine neue Version von PiAware mit der Nummer 3.5.3 Deshalb diese Version laden und gleich das ganze System updaten:
1 2 3 4 5 6 7 |
wget http://flightaware.com/adsb/piaware/files/packages/pool/piaware/p/piaware-support/piaware-repository_3.5.3_all.deb sudo dpkg -i piaware-repository_3.5.3_all.deb sudo apt-get update sudo apt-get upgrade sudo apt-get install piaware piaware -v # Ergebnis 3.5.3 |
Dann auch gleich dump1090-mutability_1.15~dev neu erstellen und installieren:
1 2 3 4 5 6 7 8 |
# in das Verzeichnis gehen cd /home/pi/dump1090-mutability/dump1090 # eine neue Version holen in dem Verzeichnis git pull sudo dpkg-buildpackage -b cd .. sudo dpkg -i dump1090-mutability_1.15~dev_armhf.deb sudo /etc/init.d/dump1090-mutability restart |
Ok, ein reload im Browser und es wird gleich eine A380 unten links angezeigt:
Nun gibt es auch eine Neue Bing Karten Ansicht. Dazu auf Bing einen kostenlosen Developer Key vom Typ Not-for-profit erstellen und in der /usr/share/dump1090-mutability/html/config.js eintragen. Diese Datei ist gut kommentiert, hier meine Beispiel Datei ohne Uhr, Langenhagen, 4 Kreise und alles metrisch anzeigen:
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 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
// -------------------------------------------------------- // // This file is to configure the configurable settings. // Load this file before script.js file at gmap.html. // // -------------------------------------------------------- // -- Title Settings -------------------------------------- // Show number of aircraft and/or messages per second in the page title PlaneCountInTitle = true; MessageRateInTitle = false; // -- Output Settings ------------------------------------- // Show metric values // The Metric setting controls whether metric (m, km, km/h) or // imperial (ft, NM, knots) units are used in the plane table // and in the detailed plane info. If ShowOtherUnits is true, // then the other unit will also be shown in the detailed plane // info. Metric = true; ShowOtherUnits = false; // -- Map settings ---------------------------------------- // These settings are overridden by any position information // provided by dump1090 itself. All positions are in decimal // degrees. // Default center of the map. DefaultCenterLat = 52.4528001; DefaultCenterLon = 9.7443992; // The google maps zoom level, 0 - 16, lower is further out DefaultZoomLvl = 10; // Center marker. If dump1090 provides a receiver location, // that location is used and these settings are ignored. SiteShow = true; // true to show a center marker SiteLat = 52.4528001; // position of the marker SiteLon = 9.7443992; SiteName = "Langenhagen"; // tooltip of the marker // -- Marker settings ------------------------------------- // These settings control the coloring of aircraft by altitude. // All color values are given as Hue (0-359) / Saturation (0-100) / Lightness (0-100) ColorByAlt = { // HSL for planes with unknown altitude: unknown : { h: 0, s: 0, l: 40 }, // HSL for planes that are on the ground: ground : { h: 120, s: 100, l: 30 }, air : { // These define altitude-to-hue mappings // at particular altitudes; the hue // for intermediate altitudes that lie // between the provided altitudes is linearly // interpolated. // // Mappings must be provided in increasing // order of altitude. // // Altitudes below the first entry use the // hue of the first entry; altitudes above // the last entry use the hue of the last // entry. h: [ { alt: 2000, val: 20 }, // orange { alt: 10000, val: 140 }, // light green { alt: 40000, val: 300 } ], // magenta s: 85, l: 50, }, // Changes added to the color of the currently selected plane selected : { h: 0, s: -10, l: +20 }, // Changes added to the color of planes that have stale position info stale : { h: 0, s: -10, l: +30 }, // Changes added to the color of planes that have positions from mlat mlat : { h: 0, s: -10, l: -10 } }; // For a monochrome display try this: // ColorByAlt = { // unknown : { h: 0, s: 0, l: 40 }, // ground : { h: 0, s: 0, l: 30 }, // air : { h: [ { alt: 0, val: 0 } ], s: 0, l: 50 }, // selected : { h: 0, s: 0, l: +30 }, // stale : { h: 0, s: 0, l: +30 }, // mlat : { h: 0, s: 0, l: -10 } // }; // Outline color for aircraft icons with an ADS-B position OutlineADSBColor = '#000000'; // Outline color for aircraft icons with a mlat position OutlineMlatColor = '#4040FF'; SiteCircles = true; // true to show circles (only shown if the center marker is shown) // In nautical miles or km (depending settings value 'Metric') SiteCirclesDistances = new Array(10,50,100,150); // Show the clocks at the top of the righthand pane? You can disable the clocks if you want here ShowClocks = false; // Controls page title, righthand pane when nothing is selected PageName = "Flugzeuge"; // Show country flags by ICAO addresses? ShowFlags = true; // Path to country flags (can be a relative or absolute URL; include a trailing /) FlagPath = "flags-tiny/"; // Set to true to enable the ChartBundle base layers (US coverage only) ChartBundleLayers = true; // Provide a Bing Maps API key here to enable the Bing imagery layer. // You can obtain a free key (with usage limits) at // https://www.bingmapsportal.com/ (you need a "basic key") // // Be sure to quote your key: // BingMapsAPIKey = "your key here"; // BingMapsAPIKey = "hier den key von Bing einfügen"; // Provide a Mapzen API key here to enable the Mapzen vector tile layer. // You can obtain a free key at https://mapzen.com/developers/ // (you need a "vector tiles" key) // // Be sure to quote your key: // MapzenAPIKey = "your key here"; // MapzenAPIKey = "hier den key von Mapzen einfügen"; |
Das Ergebnis nach einem Browser reload mit der Bing-Map (Roads), unten links eine Tripel 7:
Oben rechts
kann man auch noch eine andere Bing-Map (Aerial) einstellen. Das sieht dann so aus: