Compare commits
71 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 38077c8e19 | |||
| 6d434c7200 | |||
| 4a5d8babc9 | |||
| f547185e1f | |||
| 734990be4a | |||
| 6c7a5d2d7c | |||
| 0a29e369c2 | |||
| e658fd591e | |||
| 32fb9d2688 | |||
| d425418c07 | |||
| 88168a832b | |||
| b4c97ecc71 | |||
| 2221263e38 | |||
| 4960e0cb52 | |||
| ee14dc6b12 | |||
| 9d3baa4132 | |||
| aa5affdd8b | |||
| 70c009a25a | |||
| 21afe127b7 | |||
| 37e375794a | |||
| 325edb550d | |||
| 8b4a44aa3d | |||
| 524eeaa849 | |||
| caa10da117 | |||
| 8cc6856908 | |||
| 65319c74bd | |||
| 216698f42f | |||
| cb660d4971 | |||
| 46059444ca | |||
| 9b81518bb4 | |||
| 5e6e90f138 | |||
| cc68093c6d | |||
| 2a46128f24 | |||
| ca0cea459c | |||
| adb87d6ce0 | |||
| 419aa14f2b | |||
| f1819c7d92 | |||
| 4ceb036a76 | |||
| 7206457247 | |||
| 14d17b6b4d | |||
| b786943a84 | |||
| 7ad3ae0bb7 | |||
| 5aa6a8f117 | |||
| d6ef71482c | |||
| 4b5bc572c3 | |||
| 3f2ae14792 | |||
| 1a4acae26e | |||
| 3eaeeb391a | |||
| 5fb4dd1ee7 | |||
| ed761c6857 | |||
| 2b52c40be5 | |||
| 6c72ff39ca | |||
| a5cd676455 | |||
| 9f5b64a580 | |||
| fe6888258b | |||
| 9b96e36b63 | |||
| 8d9cbef27e | |||
| 72b16ee76c | |||
| 8393775111 | |||
| 857ac0632e | |||
| b941b231ae | |||
| 8166a39495 | |||
| 0d5e11dbf6 | |||
| 0cae431a7c | |||
| 38fd59f4d3 | |||
| ffea65bce6 | |||
| 582d0a880e | |||
| d8ecc33149 | |||
| dd6771f3e0 | |||
| 800d858350 | |||
| b6ce9fd733 |
+23
@@ -0,0 +1,23 @@
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: aa-publish
|
||||
|
||||
steps:
|
||||
- name: production-release-build
|
||||
image: alpine
|
||||
commands:
|
||||
- apk add zip
|
||||
- zip -r release.zip *
|
||||
|
||||
- name: gitea_release
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
api_key:
|
||||
from_secret: gitea_token
|
||||
base_url:
|
||||
from_secret: gitea_url
|
||||
files: release.zip
|
||||
title: Aviation Assistant ${DRONE_TAG} Release
|
||||
note: Auto Released by DroneCI
|
||||
when:
|
||||
event: tag
|
||||
+1
-1
@@ -8,4 +8,4 @@ json/keys.json
|
||||
/data/
|
||||
/.vscode/
|
||||
/information_files/
|
||||
/information/
|
||||
/information
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
[submodule "liveatc_update"]
|
||||
path = liveatc_update
|
||||
url = http://server1.nicholaspease.com:2000/LAX18/LiveATC-Database-Updater.git
|
||||
Vendored
+2
-1
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"python.pythonPath": "/usr/bin/python3",
|
||||
"liveServer.settings.port": 5501
|
||||
"liveServer.settings.port": 5501,
|
||||
"docwriter.progress.trackFunctions": false
|
||||
}
|
||||
@@ -1,5 +1,7 @@
|
||||
# AviationAssistant
|
||||
A GUI for my Aviation Assistant device
|
||||
A GUI for my Aviation Assistant device<br>
|
||||
<br>
|
||||

|
||||
|
||||
This code is in no way perfect or the most pretty. In fact most of this code is rather shabby looking and in dire need of optimization. Perhaps I will look through optimization as time goes on but anyone willing to optimise the code itself are welcome to do so. Any improvements or additions to the codebase and features would be greatly appreciated!
|
||||
|
||||
|
||||
+4
-4
@@ -22,6 +22,10 @@
|
||||
width: 24.5%;
|
||||
}
|
||||
|
||||
#viz1090_button {
|
||||
|
||||
}
|
||||
|
||||
#aircraft_image4 {
|
||||
bottom: 12%;
|
||||
left: 56%;
|
||||
@@ -571,7 +575,6 @@
|
||||
.close:hover,
|
||||
.close:focus {
|
||||
color: black;
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@@ -672,9 +675,6 @@
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.selected {
|
||||
background-color: #dddddd;
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
<link rel="stylesheet" href="ol/ol.css">
|
||||
<script src="js/ol-layerswitcher.js"></script>
|
||||
<link rel="stylesheet" href="css/ol-layerswitcher.css" />
|
||||
<script type="text/javascript" src="js/luxon.js"></script>
|
||||
|
||||
<script type="text/javascript" src="js/flightinfo.js"></script>
|
||||
<script type="text/javascript" src="js/config.js"></script>
|
||||
<script type="text/javascript" src="js/liveatc.js"></script>
|
||||
@@ -26,14 +26,14 @@
|
||||
<script type="text/javascript" src="js/script2.js"></script>
|
||||
<script type="text/javascript" src="js/excanvas.min.js"></script>
|
||||
<script type="text/javascript" src="js/schedules.js"></script>
|
||||
<script type="text/javascript" src="js/liveatc.js"></script>
|
||||
<script async type="text/javascript" src="js/liveatc.js"></script>
|
||||
<link rel="stylesheet" href="material/material.min.css">
|
||||
<script src="material/material.min.js"></script>
|
||||
<link rel="stylesheet" href="material/font.css">
|
||||
<title>Aviation Assistant</title>
|
||||
</head>
|
||||
|
||||
<body onload="initialize()" scroll="no">
|
||||
<body id="body" onload="initialize()" scroll="no">
|
||||
<div id="loader" class="hidden">
|
||||
<img src="images/spinny.gif" id="spinny" alt="Loading...">
|
||||
<progress id="loader_progress"></progress>
|
||||
@@ -121,11 +121,13 @@
|
||||
<tr>
|
||||
<td></td>
|
||||
<td>
|
||||
<button id="button_background" class=" mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect"
|
||||
<button id="button_background"
|
||||
class=" mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect"
|
||||
style="width: 40px; height: 40px; min-width: initial;" onclick="setBrightness('down')">
|
||||
<i class="material-icons">remove</i>
|
||||
</button> <span id="brightness-text">Brightness (<span id="brightness_level"></span>)</span>
|
||||
<button id="button_background" class="mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect"
|
||||
<button id="button_background"
|
||||
class="mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect"
|
||||
style="width: 40px; height: 40px; min-width: initial;" onclick="setBrightness('up')">
|
||||
<i class="material-icons">add</i>
|
||||
</button>
|
||||
@@ -140,9 +142,9 @@
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<button id="button_background" class="mdl-button mdl-js-button mdl-button--raised"
|
||||
onclick="window.close();opener.window.focus();">
|
||||
Close Application
|
||||
<button id="viz1090_button" class="mdl-button mdl-js-button mdl-button--raised"
|
||||
onclick="viz1090();">
|
||||
Start viz1090
|
||||
</button>
|
||||
</td>
|
||||
|
||||
@@ -245,7 +247,7 @@
|
||||
</button>
|
||||
|
||||
</span>
|
||||
|
||||
|
||||
</div>
|
||||
<div id="map_container">
|
||||
<div id="map_canvas"></div>
|
||||
@@ -263,15 +265,17 @@
|
||||
<div id="itin_airport_long_name"></div>
|
||||
<div id="itin_airport_city"></div>
|
||||
<div id="itin_airport_loc"></div>
|
||||
<button id="itin_arrivals" onclick="itinAirportArrivals()" class="mdl-button mdl-js-button mdl-button--raised">
|
||||
<button id="itin_arrivals" onclick="itinAirportArrivals()"
|
||||
class="mdl-button mdl-js-button mdl-button--raised">
|
||||
Arrivals Chart
|
||||
</button>
|
||||
<button id="itin_departures" onclick="itinAirportDepartures()" class="mdl-button mdl-js-button mdl-button--raised">
|
||||
</button>
|
||||
<button id="itin_departures" onclick="itinAirportDepartures()"
|
||||
class="mdl-button mdl-js-button mdl-button--raised">
|
||||
Departures Chart
|
||||
</button>
|
||||
<button id="itin_back" class="mdl-button mdl-js-button mdl-button--raised">
|
||||
</button>
|
||||
<button id="itin_back" class="mdl-button mdl-js-button mdl-button--raised">
|
||||
Back
|
||||
</button>
|
||||
</button>
|
||||
</div>
|
||||
<div id="itin_arr" style="display: none"></div>
|
||||
<div id="itin_dep" style="display: none"></div>
|
||||
@@ -340,8 +344,7 @@
|
||||
<td style="text-align: right">
|
||||
<b><span id="flight_airport_short_destination"
|
||||
style="font-size: 18px;"></span></b><br>
|
||||
<span id="flight_airport_long_destination"
|
||||
style="font-size: 12px;"></span><br>
|
||||
<span id="flight_airport_long_destination" style="font-size: 12px;"></span><br>
|
||||
<span id="flight_airport_loc_destination" style="font-size: 10px;"></span>
|
||||
</td>
|
||||
</tr>
|
||||
@@ -502,7 +505,7 @@
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<!-- sidebar_container -->
|
||||
|
||||
|
||||
Binary file not shown.
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"Bing": "Avu1sIS7QCdoqq3MjgrRLTOpfkFgs0cTGY3JWozoIQ6hABYlefqSjPwsYWAR4ldJ",
|
||||
"hereapi": "h2sjCSDN1ZHRMUx9stX8QtIzYjWvMdvZVEiimdLvcP8",
|
||||
"AVWX": "2TFcLCOsNASt37yV-39PEHnAu9PD6eoJ05ihOYiW49w",
|
||||
"AE": "0eadb2-55b342",
|
||||
"GithubToken": "01880079ec4b1a5274dc0a6da9c233fd97c7f9e3"
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,2 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<a:clrMap xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" bg1="lt1" tx1="dk1" bg2="lt2" tx2="dk2" accent1="accent1" accent2="accent2" accent3="accent3" accent4="accent4" accent5="accent5" accent6="accent6" hlink="hlink" folHlink="folHlink"/>
|
||||
@@ -1,6 +0,0 @@
|
||||
<xml xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||
<o:MainFile HRef="../information.html"/>
|
||||
<o:File HRef="themedata.thmx"/>
|
||||
<o:File HRef="colorschememapping.xml"/>
|
||||
<o:File HRef="filelist.xml"/>
|
||||
</xml>
|
||||
Binary file not shown.
@@ -1,5 +1,11 @@
|
||||
var baseurl = "https://avwx.rest/api/"
|
||||
|
||||
/**
|
||||
* "This function takes two arguments, x and y, and uses them to make an AJAX call to a weather API,
|
||||
* then it takes the data returned from the API and displays it on the page."
|
||||
* @param x - longitude
|
||||
* @param y - latitude
|
||||
*/
|
||||
function nearestStations(x, y) {
|
||||
FetchPending = $.ajax({
|
||||
url: baseurl + 'metar/' + x + ',' + y + '?token=' + keys['AVWX'] + '&options=info&format=json',
|
||||
|
||||
+1
-1
@@ -40,7 +40,7 @@ xhr1.send();
|
||||
|
||||
var flight_info = {}
|
||||
var TAB = "Radar"
|
||||
var DateTime = luxon.DateTime;
|
||||
//var DateTime = luxon.DateTime;
|
||||
var graph_types = ["/dump1090-localhost-local_trailing_rate-", "/dump1090-localhost-aircraft-", "/dump1090-localhost-tracks-", "/dump1090-localhost-signal-", "/dump1090-localhost-local_rate-", "/dump1090-localhost-aircraft_message_rate-", "/dump1090-localhost-cpu-", "/system-localhost-cpu-", "/system-localhost-temperature-", "/system-localhost-memory-", "/system-localhost-network_bandwidth-", "/system-localhost-df_root-", "/system-localhost-disk_io_iops-", "/system-localhost-disk_io_octets-"]
|
||||
/* var graph_types = {
|
||||
"ADSB Message Rate": "/dump1090-localhost-local_trailing_rate-",
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
/**
|
||||
* It takes a URL and a title, and then it plays the audio stream at the URL.
|
||||
* @param url - The URL of the PLS file
|
||||
* @param title - The title of the stream
|
||||
*/
|
||||
function playPLS(url, title) {
|
||||
window.setInterval(function () {
|
||||
if (document.getElementById("player").readyState === 3 || document.getElementById("player").readyState === 4) {
|
||||
@@ -65,6 +70,10 @@ function playPLS(url, title) {
|
||||
})
|
||||
|
||||
}
|
||||
/**
|
||||
* If the icon is a play button, play the audio and change the icon to a pause button. If the icon is a
|
||||
* pause button, pause the audio and change the icon to a play button.
|
||||
*/
|
||||
|
||||
function playPause() {
|
||||
var text = document.getElementById("audioControl_icon").innerHTML
|
||||
@@ -76,6 +85,10 @@ function playPause() {
|
||||
document.getElementById("audioControl_icon").innerHTML = "play_arrow"
|
||||
}
|
||||
}
|
||||
/**
|
||||
* It creates a div for each state in the JSON file, and then adds a div with a bunch of line breaks to
|
||||
* the end.
|
||||
*/
|
||||
|
||||
function listStations() {
|
||||
document.getElementById("atc_selector").innerHTML = ""
|
||||
@@ -100,6 +113,10 @@ function listStations() {
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* It takes a state name as an argument, and then it creates a list of airports in that state.
|
||||
* @param state - The state that the user has selected
|
||||
*/
|
||||
|
||||
function selectState(state) {
|
||||
document.getElementById("atc_selector").innerHTML = ""
|
||||
@@ -143,6 +160,12 @@ function selectState(state) {
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* It takes the airport code and state code and then uses the airport code to find the feeds for that
|
||||
* airport in the JSON file.
|
||||
* @param airport - The airport code
|
||||
* @param state - The state that the airport is in
|
||||
*/
|
||||
|
||||
function selectAirport(airport, state) {
|
||||
document.getElementById("atc_selector").innerHTML = ""
|
||||
|
||||
File diff suppressed because one or more lines are too long
+17
-3
@@ -1,5 +1,9 @@
|
||||
var us_airports = {}
|
||||
|
||||
/**
|
||||
* It creates a div for each state in the us_airports object, and when clicked, it calls the
|
||||
* loadAirport function with the state as the argument.
|
||||
*/
|
||||
function initializeSchedulesPage() {
|
||||
document.getElementById("itin_body").innerHTML = ""
|
||||
document.getElementById("itin_img").setAttribute("src", 'images/black.jpg')
|
||||
@@ -21,6 +25,10 @@ function initializeSchedulesPage() {
|
||||
}
|
||||
})
|
||||
}
|
||||
/**
|
||||
* It loads the airports in a state.
|
||||
* @param state - The state that the user has selected
|
||||
*/
|
||||
|
||||
function loadAirport(state) {
|
||||
document.getElementById("itin_img").setAttribute("src", 'images/black.jpg')
|
||||
@@ -51,7 +59,13 @@ function loadAirport(state) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Retrieving the schedule for a given airport. */
|
||||
/**
|
||||
* It takes in an airport code and state, and then it uses ajax to retrieve the airport's schedule from
|
||||
* a server.
|
||||
* @param airport - "KLAX"
|
||||
* @param state - "California"
|
||||
*/
|
||||
function retrieveSchedule(airport, state) {
|
||||
document.getElementById("itin_arr").style.display = "none"
|
||||
document.getElementById("itin_dep").style.display = "none"
|
||||
@@ -141,7 +155,7 @@ function retrieveSchedule(airport, state) {
|
||||
|
||||
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("POST", "http://"+window.location.hostname+":5000/cmd", true);
|
||||
xhr.open("POST", "http://"+window.location.hostname+":5000/curl", true);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.onreadystatechange = function () {
|
||||
if (xhr.readyState === 4) {
|
||||
@@ -251,7 +265,7 @@ function retrieveSchedule(airport, state) {
|
||||
}
|
||||
}
|
||||
xhr.send(JSON.stringify({
|
||||
command: "curl https://flightaware.com/live/airport/" + airport
|
||||
url: "https://flightaware.com/live/airport/" + airport
|
||||
}));
|
||||
|
||||
}
|
||||
+6
-30
@@ -201,35 +201,6 @@ function initialize() {
|
||||
document.title = PageName;
|
||||
PlaneRowTemplate = document.getElementById("plane_row_template");
|
||||
|
||||
if (!ShowClocks) {
|
||||
$('#timestamps').css('display', 'none');
|
||||
} else {
|
||||
// Create the clocks.
|
||||
new CoolClock({
|
||||
canvasId: "utcclock",
|
||||
skinId: "classic",
|
||||
displayRadius: 40,
|
||||
showSecondHand: true,
|
||||
gmtOffset: "0", // this has to be a string!
|
||||
showDigital: false,
|
||||
logClock: false,
|
||||
logClockRev: false
|
||||
});
|
||||
|
||||
ReceiverClock = new CoolClock({
|
||||
canvasId: "receiverclock",
|
||||
skinId: "classic",
|
||||
displayRadius: 40,
|
||||
showSecondHand: true,
|
||||
gmtOffset: null,
|
||||
showDigital: false,
|
||||
logClock: false,
|
||||
logClockRev: false
|
||||
});
|
||||
|
||||
// disable ticking on the receiver clock, we will update it ourselves
|
||||
ReceiverClock.tick = (function () {})
|
||||
}
|
||||
|
||||
// Initialize my functions
|
||||
getInitialVolume()
|
||||
@@ -241,11 +212,16 @@ function initialize() {
|
||||
window.setInterval(getBounds, 60000)
|
||||
getCPUTemp()
|
||||
window.setInterval(getCPUTemp, 30000)
|
||||
//window.setInterval(fetchInternetAircraft, 1000)
|
||||
initializeSchedulesPage();
|
||||
document.getElementById("graphs_holder").setAttribute("class", "graphs_s")
|
||||
document.getElementById("graphs_holder").setAttribute("src", "http://localhost/graphs1090/graphs" + graph_types[starting_graph] + "2h.png")
|
||||
$("#loader").removeClass("hidden");
|
||||
|
||||
if (navigator.userAgent === "RPI") {
|
||||
document.getElementById("body").style.cursor = "none"
|
||||
} else {
|
||||
|
||||
}
|
||||
// Get receiver metadata, reconfigure using it, then continue
|
||||
// with initialization
|
||||
$.ajax({
|
||||
|
||||
+37
-28
@@ -128,6 +128,7 @@ function changeMapBounds(btm_left, top_right) {
|
||||
long_east: btm_left[0],
|
||||
long_west: top_right[0]
|
||||
}
|
||||
console.log(json)
|
||||
xhr.send(JSON.stringify(json));
|
||||
}
|
||||
|
||||
@@ -203,7 +204,7 @@ function getInitialVolume() {
|
||||
|
||||
function getCPUTemp() {
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("POST", "http://" + window.location.hostname + ":5000/cmd", true);
|
||||
xhr.open("GET", "http://" + window.location.hostname + ":5000/cputemp", true);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.onreadystatechange = function () {
|
||||
if (xhr.readyState === 4) {
|
||||
@@ -215,9 +216,19 @@ function getCPUTemp() {
|
||||
document.getElementById("internal_temperature").style.color = hsl_col_perc(temp_percentage, 0, 120)
|
||||
}
|
||||
}
|
||||
xhr.send(JSON.stringify({
|
||||
command: "vcgencmd measure_temp"
|
||||
}));
|
||||
xhr.send();
|
||||
}
|
||||
|
||||
function viz1090() {
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("GET", "http://" + window.location.hostname + ":5000/viz1090", true);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.onreadystatechange = function () {
|
||||
if (xhr.readyState === 4) {
|
||||
// nothing goes here, remember to setup API script
|
||||
}
|
||||
}
|
||||
xhr.send();
|
||||
}
|
||||
|
||||
function readBrightnessLevel() {
|
||||
@@ -274,7 +285,7 @@ function sendCMD(cmd) {
|
||||
if (cmd === "update") {
|
||||
var output = ""
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("POST", "http://" + window.location.hostname + ":5000/cmd", true);
|
||||
xhr.open("GET", "http://" + window.location.hostname + ":5000/update", true);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.onreadystatechange = function () {
|
||||
if (xhr.readyState === 4) {
|
||||
@@ -294,32 +305,29 @@ function sendCMD(cmd) {
|
||||
}
|
||||
}
|
||||
}
|
||||
xhr.send(JSON.stringify({
|
||||
command: "sudo git pull"
|
||||
}));
|
||||
xhr.send();
|
||||
}
|
||||
if (cmd === "getbranch") {
|
||||
var output = ""
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("POST", "http://" + window.location.hostname + ":5000/cmd", true);
|
||||
xhr.open("GET", "http://" + window.location.hostname + ":5000/branch", true);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.onreadystatechange = function () {
|
||||
if (xhr.readyState === 4) {
|
||||
output = xhr.response
|
||||
console.log(output)
|
||||
var current_branch = output.substr(2, output.length - 3)
|
||||
if (current_branch === 'unstable') {
|
||||
document.getElementById("branch_name").innerHTML = "stable"
|
||||
document.getElementById("branch_button").setAttribute("onclick", "changeBranch('master')")
|
||||
} else {
|
||||
} else if (current_branch === 'master') {
|
||||
document.getElementById("branch_name").innerHTML = "unstable"
|
||||
document.getElementById("branch_button").setAttribute("onclick", "changeBranch('unstable')")
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
xhr.send(JSON.stringify({
|
||||
command: "sudo git branch | grep -F '*'"
|
||||
}));
|
||||
xhr.send();
|
||||
|
||||
}
|
||||
if (cmd === "shutdown") {
|
||||
@@ -330,7 +338,7 @@ function sendCMD(cmd) {
|
||||
snackbarContainer.MaterialSnackbar.showSnackbar(data);
|
||||
var output = ""
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("POST", "http://" + window.location.hostname + ":5000/cmd", true);
|
||||
xhr.open("GET", "http://" + window.location.hostname + ":5000/shutdown", true);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.onreadystatechange = function () {
|
||||
if (xhr.readyState === 4) {
|
||||
@@ -338,9 +346,7 @@ function sendCMD(cmd) {
|
||||
output = xhr.response
|
||||
}
|
||||
}
|
||||
xhr.send(JSON.stringify({
|
||||
command: "cd /usr/local/bin && sudo x728softsd.sh"
|
||||
}));
|
||||
xhr.send();
|
||||
}
|
||||
if (cmd === "restart") {
|
||||
var snackbarContainer = document.getElementById('no-updates-snackbar');
|
||||
@@ -350,7 +356,7 @@ function sendCMD(cmd) {
|
||||
snackbarContainer.MaterialSnackbar.showSnackbar(data);
|
||||
var output = ""
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("POST", "http://" + window.location.hostname + ":5000/cmd", true);
|
||||
xhr.open("GET", "http://" + window.location.hostname + ":5000/reboot", true);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.onreadystatechange = function () {
|
||||
if (xhr.readyState === 4) {
|
||||
@@ -358,18 +364,16 @@ function sendCMD(cmd) {
|
||||
output = xhr.response
|
||||
}
|
||||
}
|
||||
xhr.send(JSON.stringify({
|
||||
command: "cd /usr/local/bin && sudo reboot"
|
||||
}));
|
||||
xhr.send();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
function tabBackgroundImage() {
|
||||
if (Planes[SelectedPlane].registration !== null) {
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("GET", "http://"+window.location.hostname+":7000/www.jetphotos.com/photo/keyword/" + Planes[SelectedPlane].registration, true);
|
||||
xhr.open("GET", "http://" + window.location.hostname + ":7000/www.jetphotos.com/photo/keyword/" + Planes[SelectedPlane].registration, true);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.onreadystatechange = function () {
|
||||
if (xhr.readyState === 4) {
|
||||
@@ -430,16 +434,21 @@ function changeColorMode() {
|
||||
|
||||
function changeBranch(branch) {
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open("POST", "http://" + window.location.hostname + ":5000/cmd", true);
|
||||
xhr.open("POST", "http://" + window.location.hostname + ":5000/setbranch", true);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.onreadystatechange = function () {
|
||||
if (xhr.readyState === 4) {
|
||||
sendCMD("getbranch")
|
||||
}
|
||||
}
|
||||
xhr.send(JSON.stringify({
|
||||
command: "sudo git checkout " + branch
|
||||
branch: branch
|
||||
}));
|
||||
sendCMD("getbranch")
|
||||
|
||||
}
|
||||
|
||||
function goHome() {
|
||||
// document.getElementById("itinerary_page").style.display = "none"
|
||||
// document.getElementById("itinerary_page").style.display = "none"
|
||||
document.getElementById("radar_page").style.display = "none"
|
||||
document.getElementById("home_page").style.display = "block"
|
||||
document.getElementById("settings_page").style.display = "none"
|
||||
@@ -475,7 +484,7 @@ function goItinerary() {
|
||||
}
|
||||
|
||||
function goSettings() {
|
||||
// document.getElementById("itinerary_page").style.display = "none"
|
||||
// document.getElementById("itinerary_page").style.display = "none"
|
||||
document.getElementById("settings_page").style.display = "block"
|
||||
document.getElementById("radar_page").style.display = "none"
|
||||
document.getElementById("home_page").style.display = "none"
|
||||
|
||||
Submodule liveatc_update deleted from 859d87a419
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -1,877 +0,0 @@
|
||||
Callsign,Longitude,Latitude,Altitude,Time
|
||||
UAL950 ,-70.25,44.35,39000,2021-03-01T00:58:19
|
||||
UAL950 ,-70.24,44.35,38975,2021-03-01T00:58:22
|
||||
UAL950 ,-70.24,44.35,39000,2021-03-01T00:58:23
|
||||
UAL950 ,-70.24,44.35,39000,2021-03-01T00:58:23
|
||||
UAL950 ,-70.24,44.35,39000,2021-03-01T00:58:24
|
||||
UAL950 ,-70.23,44.36,39000,2021-03-01T00:58:25
|
||||
UAL950 ,-70.23,44.36,39000,2021-03-01T00:58:27
|
||||
UAL950 ,-70.19,44.37,39000,2021-03-01T00:58:39
|
||||
UAL950 ,-70.17,44.38,39000,2021-03-01T00:58:44
|
||||
UAL950 ,-70.17,44.38,39000,2021-03-01T00:58:45
|
||||
UAL950 ,-70.16,44.38,39000,2021-03-01T00:58:46
|
||||
UAL950 ,-70.16,44.39,39000,2021-03-01T00:58:48
|
||||
UAL950 ,-70.16,44.39,39000,2021-03-01T00:58:48
|
||||
UAL950 ,-70.16,44.39,38975,2021-03-01T00:58:48
|
||||
UAL950 ,-70.16,44.39,39000,2021-03-01T00:58:49
|
||||
UAL950 ,-70.15,44.39,39000,2021-03-01T00:58:49
|
||||
UAL950 ,-70.15,44.39,39000,2021-03-01T00:58:50
|
||||
UAL950 ,-70.15,44.39,39000,2021-03-01T00:58:51
|
||||
UAL950 ,-70.15,44.39,39000,2021-03-01T00:58:52
|
||||
UAL950 ,-70.14,44.39,39000,2021-03-01T00:58:53
|
||||
UAL950 ,-70.14,44.39,39000,2021-03-01T00:58:53
|
||||
UAL950 ,-70.14,44.39,39000,2021-03-01T00:58:54
|
||||
UAL950 ,-70.14,44.4,39000,2021-03-01T00:58:54
|
||||
UAL950 ,-70.13,44.4,39000,2021-03-01T00:58:55
|
||||
UAL950 ,-70.13,44.4,39000,2021-03-01T00:58:56
|
||||
UAL950 ,-70.12,44.4,39000,2021-03-01T00:58:59
|
||||
UAL950 ,-70.12,44.4,39000,2021-03-01T00:59:00
|
||||
UAL950 ,-70.12,44.4,38975,2021-03-01T00:59:01
|
||||
UAL950 ,-70.11,44.41,38975,2021-03-01T00:59:02
|
||||
UAL950 ,-70.11,44.41,39000,2021-03-01T00:59:03
|
||||
UAL950 ,-70.1,44.41,39000,2021-03-01T00:59:06
|
||||
UAL950 ,-70.1,44.41,39000,2021-03-01T00:59:07
|
||||
UAL950 ,-70.09,44.41,38975,2021-03-01T00:59:08
|
||||
UAL950 ,-70.09,44.41,39000,2021-03-01T00:59:09
|
||||
UAL950 ,-70.09,44.41,38975,2021-03-01T00:59:09
|
||||
UAL950 ,-70.09,44.42,38975,2021-03-01T00:59:10
|
||||
UAL950 ,-70.08,44.42,38975,2021-03-01T00:59:11
|
||||
UAL950 ,-70.08,44.42,38975,2021-03-01T00:59:11
|
||||
UAL950 ,-70.08,44.42,38975,2021-03-01T00:59:12
|
||||
UAL950 ,-70.08,44.42,38975,2021-03-01T00:59:13
|
||||
UAL950 ,-70.07,44.42,38975,2021-03-01T00:59:13
|
||||
UAL950 ,-70.07,44.42,38975,2021-03-01T00:59:15
|
||||
UAL950 ,-70.07,44.42,38975,2021-03-01T00:59:16
|
||||
UAL950 ,-70.06,44.43,38975,2021-03-01T00:59:16
|
||||
UAL950 ,-70.06,44.43,38975,2021-03-01T00:59:18
|
||||
UAL950 ,-70.06,44.43,38975,2021-03-01T00:59:18
|
||||
UAL950 ,-70.06,44.43,38975,2021-03-01T00:59:19
|
||||
UAL950 ,-70.05,44.43,38975,2021-03-01T00:59:20
|
||||
UAL950 ,-70.05,44.43,38975,2021-03-01T00:59:21
|
||||
UAL950 ,-70.05,44.43,38975,2021-03-01T00:59:22
|
||||
UAL950 ,-70.04,44.43,38975,2021-03-01T00:59:23
|
||||
UAL950 ,-70.04,44.43,38975,2021-03-01T00:59:24
|
||||
UAL950 ,-70.03,44.44,38975,2021-03-01T00:59:26
|
||||
UAL950 ,-70.03,44.44,39000,2021-03-01T00:59:27
|
||||
UAL950 ,-70.03,44.44,39000,2021-03-01T00:59:28
|
||||
UAL950 ,-70.02,44.44,39000,2021-03-01T00:59:29
|
||||
UAL950 ,-70.02,44.44,39000,2021-03-01T00:59:30
|
||||
UAL950 ,-70.02,44.44,39000,2021-03-01T00:59:31
|
||||
UAL950 ,-70.01,44.45,39000,2021-03-01T00:59:34
|
||||
UAL950 ,-70.01,44.45,39000,2021-03-01T00:59:35
|
||||
UAL950 ,-70,44.45,38975,2021-03-01T00:59:35
|
||||
UAL950 ,-70,44.45,38975,2021-03-01T00:59:36
|
||||
UAL950 ,-70,44.45,38975,2021-03-01T00:59:38
|
||||
UAL950 ,-69.99,44.46,38975,2021-03-01T00:59:40
|
||||
UAL950 ,-69.98,44.46,39000,2021-03-01T00:59:42
|
||||
UAL950 ,-69.98,44.46,38975,2021-03-01T00:59:43
|
||||
UAL950 ,-69.98,44.46,39000,2021-03-01T00:59:43
|
||||
UAL950 ,-69.97,44.46,38975,2021-03-01T00:59:44
|
||||
UAL950 ,-69.97,44.46,38975,2021-03-01T00:59:46
|
||||
UAL950 ,-69.97,44.46,38975,2021-03-01T00:59:46
|
||||
UAL950 ,-69.96,44.47,38975,2021-03-01T00:59:47
|
||||
UAL950 ,-69.96,44.47,38975,2021-03-01T00:59:49
|
||||
UAL950 ,-69.96,44.47,38975,2021-03-01T00:59:49
|
||||
UAL950 ,-69.95,44.47,39000,2021-03-01T00:59:51
|
||||
UAL950 ,-69.95,44.47,38975,2021-03-01T00:59:51
|
||||
UAL950 ,-69.95,44.47,38975,2021-03-01T00:59:52
|
||||
UAL950 ,-69.95,44.47,38975,2021-03-01T00:59:52
|
||||
UAL950 ,-69.95,44.47,39000,2021-03-01T00:59:53
|
||||
UAL950 ,-69.94,44.47,39000,2021-03-01T00:59:53
|
||||
UAL950 ,-69.94,44.47,38975,2021-03-01T00:59:54
|
||||
UAL950 ,-69.94,44.48,39000,2021-03-01T00:59:55
|
||||
UAL950 ,-69.94,44.48,38975,2021-03-01T00:59:55
|
||||
UAL950 ,-69.94,44.48,39000,2021-03-01T00:59:56
|
||||
UAL950 ,-69.94,44.48,38975,2021-03-01T00:59:56
|
||||
UAL950 ,-69.93,44.48,38975,2021-03-01T00:59:57
|
||||
UAL950 ,-69.93,44.48,38975,2021-03-01T00:59:57
|
||||
UAL950 ,-69.93,44.48,39000,2021-03-01T00:59:58
|
||||
UAL950 ,-69.93,44.48,38975,2021-03-01T00:59:58
|
||||
UAL950 ,-69.93,44.48,38975,2021-03-01T00:59:59
|
||||
UAL950 ,-69.93,44.48,39000,2021-03-01T00:59:59
|
||||
UAL950 ,-69.92,44.48,39000,2021-03-01T01:00:01
|
||||
UAL950 ,-69.91,44.49,39000,2021-03-01T01:00:03
|
||||
UAL950 ,-69.91,44.49,38975,2021-03-01T01:00:03
|
||||
UAL950 ,-69.91,44.49,39000,2021-03-01T01:00:05
|
||||
UAL950 ,-69.9,44.49,38975,2021-03-01T01:00:06
|
||||
UAL950 ,-69.9,44.49,39000,2021-03-01T01:00:06
|
||||
UAL950 ,-69.9,44.49,39000,2021-03-01T01:00:07
|
||||
UAL950 ,-69.9,44.49,38975,2021-03-01T01:00:07
|
||||
UAL950 ,-69.9,44.49,38975,2021-03-01T01:00:08
|
||||
UAL950 ,-69.9,44.49,39000,2021-03-01T01:00:08
|
||||
UAL950 ,-69.89,44.49,39000,2021-03-01T01:00:09
|
||||
UAL950 ,-69.89,44.5,39000,2021-03-01T01:00:09
|
||||
UAL950 ,-69.89,44.5,39000,2021-03-01T01:00:10
|
||||
UAL950 ,-69.89,44.5,38975,2021-03-01T01:00:10
|
||||
UAL950 ,-69.89,44.5,39000,2021-03-01T01:00:11
|
||||
UAL950 ,-69.89,44.5,39000,2021-03-01T01:00:11
|
||||
UAL950 ,-69.89,44.5,39000,2021-03-01T01:00:12
|
||||
UAL950 ,-69.88,44.5,39000,2021-03-01T01:00:14
|
||||
UAL950 ,-69.88,44.5,39000,2021-03-01T01:00:14
|
||||
UAL950 ,-69.87,44.5,39000,2021-03-01T01:00:15
|
||||
UAL950 ,-69.86,44.51,39000,2021-03-01T01:00:20
|
||||
UAL950 ,-69.86,44.51,39000,2021-03-01T01:00:21
|
||||
UAL950 ,-69.85,44.51,39000,2021-03-01T01:00:22
|
||||
UAL950 ,-69.85,44.51,39000,2021-03-01T01:00:22
|
||||
UAL950 ,-69.85,44.51,39000,2021-03-01T01:00:23
|
||||
UAL950 ,-69.85,44.51,39000,2021-03-01T01:00:24
|
||||
UAL950 ,-69.84,44.51,39000,2021-03-01T01:00:24
|
||||
UAL950 ,-69.84,44.52,39000,2021-03-01T01:00:25
|
||||
UAL950 ,-69.84,44.52,39000,2021-03-01T01:00:25
|
||||
UAL950 ,-69.84,44.52,39000,2021-03-01T01:00:25
|
||||
UAL950 ,-69.84,44.52,39000,2021-03-01T01:00:26
|
||||
UAL950 ,-69.84,44.52,39000,2021-03-01T01:00:26
|
||||
UAL950 ,-69.83,44.52,39000,2021-03-01T01:00:27
|
||||
UAL950 ,-69.83,44.52,39000,2021-03-01T01:00:28
|
||||
UAL950 ,-69.82,44.52,39000,2021-03-01T01:00:30
|
||||
UAL950 ,-69.82,44.52,39000,2021-03-01T01:00:31
|
||||
UAL950 ,-69.82,44.53,39000,2021-03-01T01:00:33
|
||||
UAL950 ,-69.81,44.53,38975,2021-03-01T01:00:34
|
||||
UAL950 ,-69.81,44.53,39000,2021-03-01T01:00:35
|
||||
UAL950 ,-69.8,44.53,38975,2021-03-01T01:00:37
|
||||
UAL950 ,-69.8,44.53,39000,2021-03-01T01:00:38
|
||||
UAL950 ,-69.8,44.53,39000,2021-03-01T01:00:38
|
||||
UAL950 ,-69.8,44.53,38975,2021-03-01T01:00:39
|
||||
UAL950 ,-69.79,44.54,39000,2021-03-01T01:00:39
|
||||
UAL950 ,-69.79,44.54,38975,2021-03-01T01:00:40
|
||||
UAL950 ,-69.79,44.54,39000,2021-03-01T01:00:40
|
||||
UAL950 ,-69.79,44.54,38975,2021-03-01T01:00:41
|
||||
UAL950 ,-69.79,44.54,39000,2021-03-01T01:00:41
|
||||
UAL950 ,-69.78,44.54,38975,2021-03-01T01:00:43
|
||||
UAL950 ,-69.78,44.54,39000,2021-03-01T01:00:44
|
||||
UAL950 ,-69.78,44.54,39000,2021-03-01T01:00:45
|
||||
UAL950 ,-69.77,44.55,38975,2021-03-01T01:00:48
|
||||
UAL950 ,-69.76,44.55,38975,2021-03-01T01:00:49
|
||||
UAL950 ,-69.76,44.55,39000,2021-03-01T01:00:50
|
||||
UAL950 ,-69.76,44.55,38975,2021-03-01T01:00:51
|
||||
UAL950 ,-69.75,44.55,38975,2021-03-01T01:00:52
|
||||
UAL950 ,-69.75,44.55,38975,2021-03-01T01:00:53
|
||||
UAL950 ,-69.75,44.55,39000,2021-03-01T01:00:54
|
||||
UAL950 ,-69.74,44.56,39000,2021-03-01T01:00:57
|
||||
UAL950 ,-69.73,44.56,39000,2021-03-01T01:00:58
|
||||
UAL950 ,-69.73,44.56,38975,2021-03-01T01:00:59
|
||||
UAL950 ,-69.73,44.56,39000,2021-03-01T01:01:00
|
||||
UAL950 ,-69.73,44.56,38975,2021-03-01T01:01:00
|
||||
UAL950 ,-69.72,44.56,39000,2021-03-01T01:01:02
|
||||
UAL950 ,-69.72,44.57,39000,2021-03-01T01:01:03
|
||||
UAL950 ,-69.71,44.57,39000,2021-03-01T01:01:04
|
||||
UAL950 ,-69.71,44.57,39000,2021-03-01T01:01:04
|
||||
UAL950 ,-69.7,44.57,39000,2021-03-01T01:01:07
|
||||
UAL950 ,-69.69,44.58,39000,2021-03-01T01:01:11
|
||||
UAL950 ,-69.69,44.58,39000,2021-03-01T01:01:12
|
||||
UAL950 ,-69.68,44.58,39000,2021-03-01T01:01:13
|
||||
UAL950 ,-69.68,44.58,39000,2021-03-01T01:01:14
|
||||
UAL950 ,-69.68,44.58,39000,2021-03-01T01:01:15
|
||||
UAL950 ,-69.67,44.58,39000,2021-03-01T01:01:16
|
||||
UAL950 ,-69.67,44.58,39000,2021-03-01T01:01:16
|
||||
UAL950 ,-69.67,44.59,39000,2021-03-01T01:01:17
|
||||
UAL950 ,-69.67,44.59,39000,2021-03-01T01:01:17
|
||||
UAL950 ,-69.67,44.59,39000,2021-03-01T01:01:18
|
||||
UAL950 ,-69.66,44.59,38975,2021-03-01T01:01:19
|
||||
UAL950 ,-69.66,44.59,39000,2021-03-01T01:01:20
|
||||
UAL950 ,-69.66,44.59,39000,2021-03-01T01:01:20
|
||||
UAL950 ,-69.66,44.59,39000,2021-03-01T01:01:21
|
||||
UAL950 ,-69.66,44.59,38975,2021-03-01T01:01:21
|
||||
UAL950 ,-69.66,44.59,39000,2021-03-01T01:01:22
|
||||
UAL950 ,-69.65,44.59,38975,2021-03-01T01:01:22
|
||||
UAL950 ,-69.65,44.59,39000,2021-03-01T01:01:23
|
||||
UAL950 ,-69.65,44.59,39000,2021-03-01T01:01:23
|
||||
UAL950 ,-69.65,44.59,39000,2021-03-01T01:01:24
|
||||
UAL950 ,-69.65,44.59,38975,2021-03-01T01:01:24
|
||||
UAL950 ,-69.65,44.6,38975,2021-03-01T01:01:25
|
||||
UAL950 ,-69.64,44.6,39000,2021-03-01T01:01:25
|
||||
UAL950 ,-69.64,44.6,38975,2021-03-01T01:01:26
|
||||
UAL950 ,-69.64,44.6,38975,2021-03-01T01:01:26
|
||||
UAL950 ,-69.64,44.6,39000,2021-03-01T01:01:27
|
||||
UAL950 ,-69.64,44.6,39000,2021-03-01T01:01:27
|
||||
UAL950 ,-69.64,44.6,38975,2021-03-01T01:01:28
|
||||
UAL950 ,-69.63,44.6,39000,2021-03-01T01:01:28
|
||||
UAL950 ,-69.63,44.6,38975,2021-03-01T01:01:29
|
||||
UAL950 ,-69.63,44.6,38975,2021-03-01T01:01:29
|
||||
UAL950 ,-69.63,44.6,39000,2021-03-01T01:01:30
|
||||
UAL950 ,-69.63,44.6,39000,2021-03-01T01:01:31
|
||||
UAL950 ,-69.63,44.6,39000,2021-03-01T01:01:31
|
||||
UAL950 ,-69.62,44.6,39000,2021-03-01T01:01:31
|
||||
UAL950 ,-69.62,44.61,39000,2021-03-01T01:01:32
|
||||
UAL950 ,-69.62,44.61,38975,2021-03-01T01:01:32
|
||||
UAL950 ,-69.62,44.61,38975,2021-03-01T01:01:33
|
||||
UAL950 ,-69.62,44.61,38975,2021-03-01T01:01:34
|
||||
UAL950 ,-69.62,44.61,38975,2021-03-01T01:01:34
|
||||
UAL950 ,-69.61,44.61,38975,2021-03-01T01:01:34
|
||||
UAL950 ,-69.61,44.61,38975,2021-03-01T01:01:35
|
||||
UAL950 ,-69.61,44.61,38975,2021-03-01T01:01:35
|
||||
UAL950 ,-69.61,44.61,38975,2021-03-01T01:01:36
|
||||
UAL950 ,-69.61,44.61,38975,2021-03-01T01:01:36
|
||||
UAL950 ,-69.61,44.61,38975,2021-03-01T01:01:37
|
||||
UAL950 ,-69.6,44.61,38975,2021-03-01T01:01:37
|
||||
UAL950 ,-69.6,44.61,38975,2021-03-01T01:01:38
|
||||
UAL950 ,-69.6,44.61,39000,2021-03-01T01:01:39
|
||||
UAL950 ,-69.6,44.61,38975,2021-03-01T01:01:39
|
||||
UAL950 ,-69.6,44.61,38975,2021-03-01T01:01:39
|
||||
UAL950 ,-69.6,44.62,38975,2021-03-01T01:01:40
|
||||
UAL950 ,-69.59,44.62,38975,2021-03-01T01:01:41
|
||||
UAL950 ,-69.59,44.62,38975,2021-03-01T01:01:41
|
||||
UAL950 ,-69.59,44.62,39000,2021-03-01T01:01:42
|
||||
UAL950 ,-69.59,44.62,39000,2021-03-01T01:01:43
|
||||
UAL950 ,-69.58,44.62,38975,2021-03-01T01:01:43
|
||||
UAL950 ,-69.58,44.62,38975,2021-03-01T01:01:44
|
||||
UAL950 ,-69.58,44.62,38975,2021-03-01T01:01:45
|
||||
UAL950 ,-69.58,44.62,38975,2021-03-01T01:01:45
|
||||
UAL950 ,-69.58,44.62,38975,2021-03-01T01:01:45
|
||||
UAL950 ,-69.58,44.62,38975,2021-03-01T01:01:46
|
||||
UAL950 ,-69.57,44.62,38975,2021-03-01T01:01:47
|
||||
UAL950 ,-69.57,44.63,39000,2021-03-01T01:01:48
|
||||
UAL950 ,-69.57,44.63,38975,2021-03-01T01:01:48
|
||||
UAL950 ,-69.56,44.63,38975,2021-03-01T01:01:49
|
||||
UAL950 ,-69.56,44.63,39000,2021-03-01T01:01:50
|
||||
UAL950 ,-69.56,44.63,38975,2021-03-01T01:01:51
|
||||
UAL950 ,-69.55,44.63,39000,2021-03-01T01:01:52
|
||||
UAL950 ,-69.55,44.63,38975,2021-03-01T01:01:53
|
||||
UAL950 ,-69.55,44.63,38975,2021-03-01T01:01:53
|
||||
UAL950 ,-69.55,44.63,38975,2021-03-01T01:01:54
|
||||
UAL950 ,-69.55,44.64,38975,2021-03-01T01:01:56
|
||||
UAL950 ,-69.54,44.64,38975,2021-03-01T01:01:56
|
||||
UAL950 ,-69.54,44.64,38975,2021-03-01T01:01:58
|
||||
UAL950 ,-69.53,44.64,38975,2021-03-01T01:01:59
|
||||
UAL950 ,-69.53,44.64,38975,2021-03-01T01:01:59
|
||||
UAL950 ,-69.53,44.64,39000,2021-03-01T01:02:00
|
||||
UAL950 ,-69.52,44.64,38975,2021-03-01T01:02:02
|
||||
UAL950 ,-69.52,44.65,38975,2021-03-01T01:02:03
|
||||
UAL950 ,-69.52,44.65,38975,2021-03-01T01:02:03
|
||||
UAL950 ,-69.51,44.65,39000,2021-03-01T01:02:04
|
||||
UAL950 ,-69.51,44.65,38975,2021-03-01T01:02:06
|
||||
UAL950 ,-69.51,44.65,39000,2021-03-01T01:02:07
|
||||
UAL950 ,-69.5,44.65,39000,2021-03-01T01:02:08
|
||||
UAL950 ,-69.5,44.65,39000,2021-03-01T01:02:09
|
||||
UAL950 ,-69.49,44.66,38975,2021-03-01T01:02:12
|
||||
UAL950 ,-69.49,44.66,39000,2021-03-01T01:02:13
|
||||
UAL950 ,-69.49,44.66,39000,2021-03-01T01:02:14
|
||||
UAL950 ,-69.48,44.66,39000,2021-03-01T01:02:14
|
||||
UAL950 ,-69.48,44.66,39000,2021-03-01T01:02:15
|
||||
UAL950 ,-69.48,44.66,39000,2021-03-01T01:02:15
|
||||
UAL950 ,-69.48,44.66,39000,2021-03-01T01:02:16
|
||||
UAL950 ,-69.48,44.66,39000,2021-03-01T01:02:16
|
||||
UAL950 ,-69.47,44.66,39000,2021-03-01T01:02:17
|
||||
UAL950 ,-69.47,44.67,39000,2021-03-01T01:02:17
|
||||
UAL950 ,-69.47,44.67,39000,2021-03-01T01:02:18
|
||||
UAL950 ,-69.47,44.67,39000,2021-03-01T01:02:18
|
||||
UAL950 ,-69.47,44.67,39000,2021-03-01T01:02:19
|
||||
UAL950 ,-69.47,44.67,39000,2021-03-01T01:02:19
|
||||
UAL950 ,-69.47,44.67,39000,2021-03-01T01:02:20
|
||||
UAL950 ,-69.46,44.67,39000,2021-03-01T01:02:20
|
||||
UAL950 ,-69.46,44.67,39000,2021-03-01T01:02:21
|
||||
UAL950 ,-69.46,44.67,39000,2021-03-01T01:02:21
|
||||
UAL950 ,-69.46,44.67,39000,2021-03-01T01:02:22
|
||||
UAL950 ,-69.46,44.67,39000,2021-03-01T01:02:22
|
||||
UAL950 ,-69.46,44.67,38975,2021-03-01T01:02:23
|
||||
UAL950 ,-69.45,44.67,38975,2021-03-01T01:02:23
|
||||
UAL950 ,-69.45,44.67,39000,2021-03-01T01:02:25
|
||||
UAL950 ,-69.45,44.68,39000,2021-03-01T01:02:25
|
||||
UAL950 ,-69.45,44.68,39000,2021-03-01T01:02:25
|
||||
UAL950 ,-69.44,44.68,39000,2021-03-01T01:02:26
|
||||
UAL950 ,-69.44,44.68,38975,2021-03-01T01:02:27
|
||||
UAL950 ,-69.44,44.68,39000,2021-03-01T01:02:28
|
||||
UAL950 ,-69.43,44.68,39000,2021-03-01T01:02:29
|
||||
UAL950 ,-69.43,44.68,39000,2021-03-01T01:02:30
|
||||
UAL950 ,-69.43,44.68,38975,2021-03-01T01:02:30
|
||||
UAL950 ,-69.43,44.68,38975,2021-03-01T01:02:31
|
||||
UAL950 ,-69.42,44.68,39000,2021-03-01T01:02:32
|
||||
UAL950 ,-69.42,44.69,38975,2021-03-01T01:02:33
|
||||
UAL950 ,-69.42,44.69,39000,2021-03-01T01:02:34
|
||||
UAL950 ,-69.41,44.69,39000,2021-03-01T01:02:35
|
||||
UAL950 ,-69.41,44.69,39000,2021-03-01T01:02:36
|
||||
UAL950 ,-69.41,44.69,39000,2021-03-01T01:02:37
|
||||
UAL950 ,-69.4,44.69,39000,2021-03-01T01:02:39
|
||||
UAL950 ,-69.4,44.69,39000,2021-03-01T01:02:39
|
||||
UAL950 ,-69.4,44.7,39000,2021-03-01T01:02:41
|
||||
UAL950 ,-69.39,44.7,39000,2021-03-01T01:02:42
|
||||
UAL950 ,-69.39,44.7,39000,2021-03-01T01:02:44
|
||||
UAL950 ,-69.38,44.7,39000,2021-03-01T01:02:45
|
||||
UAL950 ,-69.37,44.71,38975,2021-03-01T01:02:47
|
||||
UAL950 ,-69.37,44.71,38975,2021-03-01T01:02:49
|
||||
UAL950 ,-69.37,44.71,39000,2021-03-01T01:02:49
|
||||
UAL950 ,-69.37,44.71,38975,2021-03-01T01:02:50
|
||||
UAL950 ,-69.37,44.71,39000,2021-03-01T01:02:50
|
||||
UAL950 ,-69.36,44.71,38975,2021-03-01T01:02:51
|
||||
UAL950 ,-69.36,44.71,38975,2021-03-01T01:02:52
|
||||
UAL950 ,-69.36,44.71,38975,2021-03-01T01:02:53
|
||||
UAL950 ,-69.35,44.71,39000,2021-03-01T01:02:54
|
||||
UAL950 ,-69.35,44.71,39000,2021-03-01T01:02:55
|
||||
UAL950 ,-69.35,44.72,39000,2021-03-01T01:02:56
|
||||
UAL950 ,-69.34,44.72,39000,2021-03-01T01:02:57
|
||||
UAL950 ,-69.34,44.72,39000,2021-03-01T01:02:57
|
||||
UAL950 ,-69.34,44.72,39000,2021-03-01T01:02:59
|
||||
UAL950 ,-69.33,44.72,39000,2021-03-01T01:02:59
|
||||
UAL950 ,-69.33,44.72,39000,2021-03-01T01:03:01
|
||||
UAL950 ,-69.32,44.72,39000,2021-03-01T01:03:03
|
||||
UAL950 ,-69.32,44.73,39000,2021-03-01T01:03:04
|
||||
UAL950 ,-69.31,44.73,39000,2021-03-01T01:03:06
|
||||
UAL950 ,-69.31,44.73,39000,2021-03-01T01:03:07
|
||||
UAL950 ,-69.31,44.73,39000,2021-03-01T01:03:08
|
||||
UAL950 ,-69.3,44.73,39000,2021-03-01T01:03:09
|
||||
UAL950 ,-69.3,44.73,38975,2021-03-01T01:03:10
|
||||
UAL950 ,-69.3,44.74,39000,2021-03-01T01:03:11
|
||||
UAL950 ,-69.29,44.74,38975,2021-03-01T01:03:12
|
||||
UAL950 ,-69.29,44.74,38975,2021-03-01T01:03:13
|
||||
UAL950 ,-69.29,44.74,39000,2021-03-01T01:03:13
|
||||
UAL950 ,-69.28,44.74,39000,2021-03-01T01:03:15
|
||||
UAL950 ,-69.28,44.74,38975,2021-03-01T01:03:16
|
||||
UAL950 ,-69.28,44.74,39000,2021-03-01T01:03:17
|
||||
UAL950 ,-69.27,44.74,39000,2021-03-01T01:03:18
|
||||
UAL950 ,-69.27,44.75,39000,2021-03-01T01:03:19
|
||||
UAL950 ,-69.27,44.75,39000,2021-03-01T01:03:20
|
||||
UAL950 ,-69.26,44.75,39000,2021-03-01T01:03:22
|
||||
UAL950 ,-69.26,44.75,39000,2021-03-01T01:03:24
|
||||
UAL950 ,-69.25,44.75,39000,2021-03-01T01:03:24
|
||||
UAL950 ,-69.25,44.75,39000,2021-03-01T01:03:26
|
||||
UAL950 ,-69.25,44.76,39000,2021-03-01T01:03:26
|
||||
UAL950 ,-69.24,44.76,39000,2021-03-01T01:03:28
|
||||
UAL950 ,-69.24,44.76,39000,2021-03-01T01:03:29
|
||||
UAL950 ,-69.23,44.76,39000,2021-03-01T01:03:31
|
||||
UAL950 ,-69.23,44.76,39000,2021-03-01T01:03:32
|
||||
UAL950 ,-69.23,44.76,38975,2021-03-01T01:03:33
|
||||
UAL950 ,-69.22,44.77,39000,2021-03-01T01:03:34
|
||||
UAL950 ,-69.22,44.77,38975,2021-03-01T01:03:35
|
||||
UAL950 ,-69.21,44.77,39000,2021-03-01T01:03:36
|
||||
UAL950 ,-69.21,44.77,39000,2021-03-01T01:03:37
|
||||
UAL950 ,-69.21,44.77,39000,2021-03-01T01:03:38
|
||||
UAL950 ,-69.21,44.77,38975,2021-03-01T01:03:39
|
||||
UAL950 ,-69.21,44.77,39000,2021-03-01T01:03:39
|
||||
UAL950 ,-69.2,44.77,38975,2021-03-01T01:03:40
|
||||
UAL950 ,-69.2,44.77,38975,2021-03-01T01:03:41
|
||||
UAL950 ,-69.2,44.77,39000,2021-03-01T01:03:41
|
||||
UAL950 ,-69.19,44.78,39000,2021-03-01T01:03:42
|
||||
UAL950 ,-69.19,44.78,38975,2021-03-01T01:03:43
|
||||
UAL950 ,-69.18,44.78,38975,2021-03-01T01:03:45
|
||||
UAL950 ,-69.18,44.78,38975,2021-03-01T01:03:46
|
||||
UAL950 ,-69.18,44.78,38975,2021-03-01T01:03:47
|
||||
UAL950 ,-69.18,44.78,38975,2021-03-01T01:03:47
|
||||
UAL950 ,-69.17,44.78,38975,2021-03-01T01:03:49
|
||||
UAL950 ,-69.17,44.79,38975,2021-03-01T01:03:49
|
||||
UAL950 ,-69.17,44.79,38975,2021-03-01T01:03:50
|
||||
UAL950 ,-69.17,44.79,38975,2021-03-01T01:03:50
|
||||
UAL950 ,-69.16,44.79,38975,2021-03-01T01:03:51
|
||||
UAL950 ,-69.16,44.79,38975,2021-03-01T01:03:52
|
||||
UAL950 ,-69.16,44.79,39000,2021-03-01T01:03:52
|
||||
UAL950 ,-69.16,44.79,38975,2021-03-01T01:03:53
|
||||
UAL950 ,-69.16,44.79,38975,2021-03-01T01:03:53
|
||||
UAL950 ,-69.16,44.79,39000,2021-03-01T01:03:54
|
||||
UAL950 ,-69.15,44.79,38975,2021-03-01T01:03:54
|
||||
UAL950 ,-69.15,44.79,38975,2021-03-01T01:03:56
|
||||
UAL950 ,-69.15,44.79,38975,2021-03-01T01:03:56
|
||||
UAL950 ,-69.15,44.79,39000,2021-03-01T01:03:57
|
||||
UAL950 ,-69.14,44.8,38975,2021-03-01T01:03:58
|
||||
UAL950 ,-69.14,44.8,39000,2021-03-01T01:03:59
|
||||
UAL950 ,-69.14,44.8,38975,2021-03-01T01:04:00
|
||||
UAL950 ,-69.13,44.8,38975,2021-03-01T01:04:01
|
||||
UAL950 ,-69.13,44.8,38975,2021-03-01T01:04:03
|
||||
UAL950 ,-69.12,44.81,38975,2021-03-01T01:04:05
|
||||
UAL950 ,-69.11,44.81,38975,2021-03-01T01:04:07
|
||||
UAL950 ,-69.11,44.81,38975,2021-03-01T01:04:09
|
||||
UAL950 ,-69.11,44.81,38975,2021-03-01T01:04:09
|
||||
UAL950 ,-69.1,44.81,38975,2021-03-01T01:04:11
|
||||
UAL950 ,-69.1,44.82,38975,2021-03-01T01:04:12
|
||||
UAL950 ,-69.09,44.82,38975,2021-03-01T01:04:13
|
||||
UAL950 ,-69.09,44.82,38975,2021-03-01T01:04:14
|
||||
UAL950 ,-69.09,44.82,39000,2021-03-01T01:04:15
|
||||
UAL950 ,-69.09,44.82,38975,2021-03-01T01:04:15
|
||||
UAL950 ,-69.08,44.82,39000,2021-03-01T01:04:16
|
||||
UAL950 ,-69.08,44.82,38975,2021-03-01T01:04:17
|
||||
UAL950 ,-69.08,44.82,38975,2021-03-01T01:04:18
|
||||
UAL950 ,-69.07,44.82,39000,2021-03-01T01:04:19
|
||||
UAL950 ,-69.07,44.83,39000,2021-03-01T01:04:20
|
||||
UAL950 ,-69.07,44.83,39000,2021-03-01T01:04:21
|
||||
UAL950 ,-69.07,44.83,39000,2021-03-01T01:04:21
|
||||
UAL950 ,-69.06,44.83,39000,2021-03-01T01:04:22
|
||||
UAL950 ,-69.06,44.83,39000,2021-03-01T01:04:23
|
||||
UAL950 ,-69.06,44.83,39000,2021-03-01T01:04:23
|
||||
UAL950 ,-69.06,44.83,38975,2021-03-01T01:04:23
|
||||
UAL950 ,-69.06,44.83,39000,2021-03-01T01:04:24
|
||||
UAL950 ,-69.05,44.83,38975,2021-03-01T01:04:24
|
||||
UAL950 ,-69.05,44.83,39000,2021-03-01T01:04:27
|
||||
UAL950 ,-69.04,44.84,39000,2021-03-01T01:04:27
|
||||
UAL950 ,-69.04,44.84,38975,2021-03-01T01:04:28
|
||||
UAL950 ,-69.04,44.84,39000,2021-03-01T01:04:30
|
||||
UAL950 ,-69.03,44.84,38975,2021-03-01T01:04:32
|
||||
UAL950 ,-69.03,44.84,39000,2021-03-01T01:04:32
|
||||
UAL950 ,-69.03,44.84,39000,2021-03-01T01:04:33
|
||||
UAL950 ,-69.02,44.84,39000,2021-03-01T01:04:34
|
||||
UAL950 ,-69.02,44.84,39000,2021-03-01T01:04:35
|
||||
UAL950 ,-69.02,44.85,39000,2021-03-01T01:04:35
|
||||
UAL950 ,-69.02,44.85,39000,2021-03-01T01:04:35
|
||||
UAL950 ,-69.02,44.85,38975,2021-03-01T01:04:36
|
||||
UAL950 ,-69.02,44.85,39000,2021-03-01T01:04:37
|
||||
UAL950 ,-69.01,44.85,39000,2021-03-01T01:04:38
|
||||
UAL950 ,-69.01,44.85,39000,2021-03-01T01:04:38
|
||||
UAL950 ,-69.01,44.85,39000,2021-03-01T01:04:40
|
||||
UAL950 ,-69,44.85,39000,2021-03-01T01:04:40
|
||||
UAL950 ,-69,44.85,38975,2021-03-01T01:04:41
|
||||
UAL950 ,-69,44.85,38975,2021-03-01T01:04:41
|
||||
UAL950 ,-69,44.85,38975,2021-03-01T01:04:42
|
||||
UAL950 ,-69,44.86,38975,2021-03-01T01:04:43
|
||||
UAL950 ,-68.99,44.86,39000,2021-03-01T01:04:43
|
||||
UAL950 ,-68.99,44.86,38975,2021-03-01T01:04:44
|
||||
UAL950 ,-68.98,44.86,38975,2021-03-01T01:04:45
|
||||
UAL950 ,-68.98,44.86,38975,2021-03-01T01:04:46
|
||||
UAL950 ,-68.98,44.86,39000,2021-03-01T01:04:47
|
||||
UAL950 ,-68.98,44.86,38975,2021-03-01T01:04:48
|
||||
UAL950 ,-68.98,44.86,39000,2021-03-01T01:04:48
|
||||
UAL950 ,-68.97,44.86,39000,2021-03-01T01:04:49
|
||||
UAL950 ,-68.97,44.87,39000,2021-03-01T01:04:50
|
||||
UAL950 ,-68.97,44.87,39000,2021-03-01T01:04:51
|
||||
UAL950 ,-68.96,44.87,39000,2021-03-01T01:04:52
|
||||
UAL950 ,-68.96,44.87,38975,2021-03-01T01:04:53
|
||||
UAL950 ,-68.96,44.87,39000,2021-03-01T01:04:54
|
||||
UAL950 ,-68.95,44.87,39000,2021-03-01T01:04:56
|
||||
UAL950 ,-68.95,44.87,38975,2021-03-01T01:04:56
|
||||
UAL950 ,-68.95,44.87,39000,2021-03-01T01:04:57
|
||||
UAL950 ,-68.94,44.88,38975,2021-03-01T01:04:58
|
||||
UAL950 ,-68.94,44.88,38975,2021-03-01T01:04:59
|
||||
UAL950 ,-68.94,44.88,38975,2021-03-01T01:04:59
|
||||
UAL950 ,-68.94,44.88,38975,2021-03-01T01:05:00
|
||||
UAL950 ,-68.94,44.88,38975,2021-03-01T01:05:00
|
||||
UAL950 ,-68.93,44.88,39000,2021-03-01T01:05:01
|
||||
UAL950 ,-68.93,44.88,39000,2021-03-01T01:05:01
|
||||
UAL950 ,-68.93,44.88,39000,2021-03-01T01:05:02
|
||||
UAL950 ,-68.93,44.88,38975,2021-03-01T01:05:03
|
||||
UAL950 ,-68.92,44.88,38975,2021-03-01T01:05:04
|
||||
UAL950 ,-68.92,44.88,38975,2021-03-01T01:05:05
|
||||
UAL950 ,-68.92,44.89,38975,2021-03-01T01:05:06
|
||||
UAL950 ,-68.91,44.89,38975,2021-03-01T01:05:07
|
||||
UAL950 ,-68.91,44.89,39000,2021-03-01T01:05:08
|
||||
UAL950 ,-68.91,44.89,38975,2021-03-01T01:05:09
|
||||
UAL950 ,-68.9,44.89,38975,2021-03-01T01:05:10
|
||||
UAL950 ,-68.9,44.89,39000,2021-03-01T01:05:11
|
||||
UAL950 ,-68.9,44.89,38975,2021-03-01T01:05:12
|
||||
UAL950 ,-68.89,44.9,39000,2021-03-01T01:05:13
|
||||
UAL950 ,-68.89,44.9,39000,2021-03-01T01:05:14
|
||||
UAL950 ,-68.89,44.9,39000,2021-03-01T01:05:15
|
||||
UAL950 ,-68.88,44.9,39000,2021-03-01T01:05:16
|
||||
UAL950 ,-68.88,44.9,39000,2021-03-01T01:05:18
|
||||
UAL950 ,-68.88,44.9,39000,2021-03-01T01:05:18
|
||||
UAL950 ,-68.88,44.9,39000,2021-03-01T01:05:19
|
||||
UAL950 ,-68.87,44.9,39000,2021-03-01T01:05:19
|
||||
UAL950 ,-68.87,44.9,38975,2021-03-01T01:05:20
|
||||
UAL950 ,-68.87,44.91,39000,2021-03-01T01:05:21
|
||||
UAL950 ,-68.86,44.91,39000,2021-03-01T01:05:22
|
||||
UAL950 ,-68.86,44.91,39000,2021-03-01T01:05:23
|
||||
UAL950 ,-68.86,44.91,38975,2021-03-01T01:05:24
|
||||
UAL950 ,-68.86,44.91,38975,2021-03-01T01:05:25
|
||||
UAL950 ,-68.85,44.91,38975,2021-03-01T01:05:25
|
||||
UAL950 ,-68.85,44.91,38975,2021-03-01T01:05:26
|
||||
UAL950 ,-68.85,44.91,38975,2021-03-01T01:05:27
|
||||
UAL950 ,-68.85,44.91,38975,2021-03-01T01:05:27
|
||||
UAL950 ,-68.84,44.92,38975,2021-03-01T01:05:28
|
||||
UAL950 ,-68.84,44.92,38975,2021-03-01T01:05:29
|
||||
UAL950 ,-68.84,44.92,38975,2021-03-01T01:05:30
|
||||
UAL950 ,-68.83,44.92,38975,2021-03-01T01:05:31
|
||||
UAL950 ,-68.83,44.92,38975,2021-03-01T01:05:33
|
||||
UAL950 ,-68.83,44.92,38975,2021-03-01T01:05:33
|
||||
UAL950 ,-68.82,44.92,38975,2021-03-01T01:05:34
|
||||
UAL950 ,-68.82,44.92,38975,2021-03-01T01:05:35
|
||||
UAL950 ,-68.82,44.93,38975,2021-03-01T01:05:36
|
||||
UAL950 ,-68.81,44.93,39000,2021-03-01T01:05:37
|
||||
UAL950 ,-68.81,44.93,39000,2021-03-01T01:05:38
|
||||
UAL950 ,-68.81,44.93,38975,2021-03-01T01:05:39
|
||||
UAL950 ,-68.8,44.93,38975,2021-03-01T01:05:40
|
||||
UAL950 ,-68.8,44.93,38975,2021-03-01T01:05:40
|
||||
UAL950 ,-68.8,44.93,38975,2021-03-01T01:05:41
|
||||
UAL950 ,-68.8,44.93,38975,2021-03-01T01:05:42
|
||||
UAL950 ,-68.79,44.93,38975,2021-03-01T01:05:43
|
||||
UAL950 ,-68.79,44.94,38975,2021-03-01T01:05:44
|
||||
UAL950 ,-68.79,44.94,38975,2021-03-01T01:05:45
|
||||
UAL950 ,-68.79,44.94,38975,2021-03-01T01:05:45
|
||||
UAL950 ,-68.78,44.94,38975,2021-03-01T01:05:46
|
||||
UAL950 ,-68.78,44.94,39000,2021-03-01T01:05:47
|
||||
UAL950 ,-68.78,44.94,39000,2021-03-01T01:05:47
|
||||
UAL950 ,-68.78,44.94,39000,2021-03-01T01:05:47
|
||||
UAL950 ,-68.78,44.94,38975,2021-03-01T01:05:49
|
||||
UAL950 ,-68.77,44.94,39000,2021-03-01T01:05:49
|
||||
UAL950 ,-68.77,44.94,39000,2021-03-01T01:05:50
|
||||
UAL950 ,-68.77,44.94,39000,2021-03-01T01:05:50
|
||||
UAL950 ,-68.77,44.94,39000,2021-03-01T01:05:51
|
||||
UAL950 ,-68.77,44.94,39000,2021-03-01T01:05:51
|
||||
UAL950 ,-68.77,44.95,39000,2021-03-01T01:05:52
|
||||
UAL950 ,-68.76,44.95,39000,2021-03-01T01:05:53
|
||||
UAL950 ,-68.76,44.95,39000,2021-03-01T01:05:54
|
||||
UAL950 ,-68.76,44.95,39000,2021-03-01T01:05:55
|
||||
UAL950 ,-68.75,44.95,39000,2021-03-01T01:05:55
|
||||
UAL950 ,-68.75,44.95,39000,2021-03-01T01:05:56
|
||||
UAL950 ,-68.75,44.95,39000,2021-03-01T01:05:57
|
||||
UAL950 ,-68.74,44.95,39000,2021-03-01T01:05:58
|
||||
UAL950 ,-68.74,44.96,39000,2021-03-01T01:05:59
|
||||
UAL950 ,-68.74,44.96,39000,2021-03-01T01:06:00
|
||||
UAL950 ,-68.73,44.96,39000,2021-03-01T01:06:01
|
||||
UAL950 ,-68.73,44.96,39000,2021-03-01T01:06:03
|
||||
UAL950 ,-68.73,44.96,39000,2021-03-01T01:06:03
|
||||
UAL950 ,-68.73,44.96,39000,2021-03-01T01:06:03
|
||||
UAL950 ,-68.72,44.96,39000,2021-03-01T01:06:04
|
||||
UAL950 ,-68.72,44.96,39000,2021-03-01T01:06:05
|
||||
UAL950 ,-68.72,44.96,39000,2021-03-01T01:06:05
|
||||
UAL950 ,-68.72,44.96,39000,2021-03-01T01:06:06
|
||||
UAL950 ,-68.72,44.96,39000,2021-03-01T01:06:07
|
||||
UAL950 ,-68.71,44.97,39000,2021-03-01T01:06:07
|
||||
UAL950 ,-68.71,44.97,39000,2021-03-01T01:06:08
|
||||
UAL950 ,-68.71,44.97,39000,2021-03-01T01:06:08
|
||||
UAL950 ,-68.71,44.97,39000,2021-03-01T01:06:09
|
||||
UAL950 ,-68.71,44.97,39000,2021-03-01T01:06:10
|
||||
UAL950 ,-68.7,44.97,39000,2021-03-01T01:06:11
|
||||
UAL950 ,-68.7,44.97,39000,2021-03-01T01:06:11
|
||||
UAL950 ,-68.7,44.97,39000,2021-03-01T01:06:12
|
||||
UAL950 ,-68.7,44.97,39000,2021-03-01T01:06:12
|
||||
UAL950 ,-68.7,44.97,39000,2021-03-01T01:06:13
|
||||
UAL950 ,-68.69,44.97,39000,2021-03-01T01:06:13
|
||||
UAL950 ,-68.69,44.97,39000,2021-03-01T01:06:14
|
||||
UAL950 ,-68.69,44.97,39000,2021-03-01T01:06:14
|
||||
UAL950 ,-68.69,44.98,39000,2021-03-01T01:06:15
|
||||
UAL950 ,-68.69,44.98,39000,2021-03-01T01:06:15
|
||||
UAL950 ,-68.69,44.98,39000,2021-03-01T01:06:16
|
||||
UAL950 ,-68.68,44.98,39000,2021-03-01T01:06:16
|
||||
UAL950 ,-68.68,44.98,39000,2021-03-01T01:06:17
|
||||
UAL950 ,-68.68,44.98,39000,2021-03-01T01:06:18
|
||||
UAL950 ,-68.68,44.98,38975,2021-03-01T01:06:18
|
||||
UAL950 ,-68.68,44.98,39000,2021-03-01T01:06:19
|
||||
UAL950 ,-68.68,44.98,39000,2021-03-01T01:06:19
|
||||
UAL950 ,-68.67,44.98,39000,2021-03-01T01:06:20
|
||||
UAL950 ,-68.67,44.98,39000,2021-03-01T01:06:20
|
||||
UAL950 ,-68.67,44.98,39000,2021-03-01T01:06:21
|
||||
UAL950 ,-68.67,44.98,39000,2021-03-01T01:06:21
|
||||
UAL950 ,-68.67,44.98,39000,2021-03-01T01:06:21
|
||||
UAL950 ,-68.67,44.98,39000,2021-03-01T01:06:22
|
||||
UAL950 ,-68.66,44.99,38975,2021-03-01T01:06:23
|
||||
UAL950 ,-68.66,44.99,38975,2021-03-01T01:06:23
|
||||
UAL950 ,-68.66,44.99,38975,2021-03-01T01:06:24
|
||||
UAL950 ,-68.66,44.99,39000,2021-03-01T01:06:24
|
||||
UAL950 ,-68.66,44.99,39000,2021-03-01T01:06:25
|
||||
UAL950 ,-68.65,44.99,38975,2021-03-01T01:06:26
|
||||
UAL950 ,-68.65,44.99,39000,2021-03-01T01:06:26
|
||||
UAL950 ,-68.65,44.99,39000,2021-03-01T01:06:26
|
||||
UAL950 ,-68.65,44.99,38975,2021-03-01T01:06:28
|
||||
UAL950 ,-68.65,44.99,38975,2021-03-01T01:06:28
|
||||
UAL950 ,-68.64,44.99,38975,2021-03-01T01:06:28
|
||||
UAL950 ,-68.64,44.99,38975,2021-03-01T01:06:29
|
||||
UAL950 ,-68.64,44.99,39000,2021-03-01T01:06:30
|
||||
UAL950 ,-68.64,44.99,38975,2021-03-01T01:06:30
|
||||
UAL950 ,-68.64,45,38975,2021-03-01T01:06:30
|
||||
UAL950 ,-68.64,45,39000,2021-03-01T01:06:31
|
||||
UAL950 ,-68.63,45,39000,2021-03-01T01:06:31
|
||||
UAL950 ,-68.63,45,39000,2021-03-01T01:06:32
|
||||
UAL950 ,-68.63,45,39000,2021-03-01T01:06:33
|
||||
UAL950 ,-68.63,45,39000,2021-03-01T01:06:33
|
||||
UAL950 ,-68.63,45,39000,2021-03-01T01:06:33
|
||||
UAL950 ,-68.63,45,38975,2021-03-01T01:06:34
|
||||
UAL950 ,-68.62,45,39000,2021-03-01T01:06:34
|
||||
UAL950 ,-68.62,45,39000,2021-03-01T01:06:35
|
||||
UAL950 ,-68.62,45,38975,2021-03-01T01:06:35
|
||||
UAL950 ,-68.62,45,38975,2021-03-01T01:06:36
|
||||
UAL950 ,-68.62,45,38975,2021-03-01T01:06:36
|
||||
UAL950 ,-68.62,45,39000,2021-03-01T01:06:37
|
||||
UAL950 ,-68.62,45,38975,2021-03-01T01:06:37
|
||||
UAL950 ,-68.61,45,39000,2021-03-01T01:06:38
|
||||
UAL950 ,-68.61,45.01,38975,2021-03-01T01:06:39
|
||||
UAL950 ,-68.61,45.01,39000,2021-03-01T01:06:39
|
||||
UAL950 ,-68.61,45.01,38975,2021-03-01T01:06:40
|
||||
UAL950 ,-68.61,45.01,38975,2021-03-01T01:06:40
|
||||
UAL950 ,-68.6,45.01,38975,2021-03-01T01:06:40
|
||||
UAL950 ,-68.6,45.01,38975,2021-03-01T01:06:41
|
||||
UAL950 ,-68.6,45.01,38975,2021-03-01T01:06:41
|
||||
UAL950 ,-68.6,45.01,39000,2021-03-01T01:06:42
|
||||
UAL950 ,-68.6,45.01,38975,2021-03-01T01:06:42
|
||||
UAL950 ,-68.6,45.01,38975,2021-03-01T01:06:43
|
||||
UAL950 ,-68.59,45.01,38975,2021-03-01T01:06:43
|
||||
UAL950 ,-68.59,45.01,38975,2021-03-01T01:06:44
|
||||
UAL950 ,-68.59,45.01,38975,2021-03-01T01:06:44
|
||||
UAL950 ,-68.59,45.01,38975,2021-03-01T01:06:45
|
||||
UAL950 ,-68.59,45.01,38975,2021-03-01T01:06:45
|
||||
UAL950 ,-68.59,45.02,38975,2021-03-01T01:06:46
|
||||
UAL950 ,-68.58,45.02,38975,2021-03-01T01:06:46
|
||||
UAL950 ,-68.58,45.02,38975,2021-03-01T01:06:47
|
||||
UAL950 ,-68.58,45.02,38975,2021-03-01T01:06:47
|
||||
UAL950 ,-68.58,45.02,38975,2021-03-01T01:06:48
|
||||
UAL950 ,-68.58,45.02,38975,2021-03-01T01:06:48
|
||||
UAL950 ,-68.58,45.02,38975,2021-03-01T01:06:48
|
||||
UAL950 ,-68.58,45.02,38975,2021-03-01T01:06:49
|
||||
UAL950 ,-68.57,45.02,38975,2021-03-01T01:06:50
|
||||
UAL950 ,-68.57,45.02,38975,2021-03-01T01:06:50
|
||||
UAL950 ,-68.57,45.02,38975,2021-03-01T01:06:51
|
||||
UAL950 ,-68.57,45.02,38975,2021-03-01T01:06:51
|
||||
UAL950 ,-68.57,45.02,38975,2021-03-01T01:06:52
|
||||
UAL950 ,-68.57,45.02,38975,2021-03-01T01:06:52
|
||||
UAL950 ,-68.56,45.02,38975,2021-03-01T01:06:53
|
||||
UAL950 ,-68.56,45.02,38975,2021-03-01T01:06:53
|
||||
UAL950 ,-68.56,45.03,38975,2021-03-01T01:06:53
|
||||
UAL950 ,-68.56,45.03,38975,2021-03-01T01:06:54
|
||||
UAL950 ,-68.56,45.03,38975,2021-03-01T01:06:55
|
||||
UAL950 ,-68.56,45.03,38975,2021-03-01T01:06:55
|
||||
UAL950 ,-68.55,45.03,39000,2021-03-01T01:06:55
|
||||
UAL950 ,-68.55,45.03,38975,2021-03-01T01:06:56
|
||||
UAL950 ,-68.55,45.03,38975,2021-03-01T01:06:57
|
||||
UAL950 ,-68.55,45.03,39000,2021-03-01T01:06:57
|
||||
UAL950 ,-68.55,45.03,39000,2021-03-01T01:06:58
|
||||
UAL950 ,-68.55,45.03,38975,2021-03-01T01:06:58
|
||||
UAL950 ,-68.54,45.03,39000,2021-03-01T01:06:59
|
||||
UAL950 ,-68.54,45.03,38975,2021-03-01T01:06:59
|
||||
UAL950 ,-68.54,45.03,39000,2021-03-01T01:06:59
|
||||
UAL950 ,-68.54,45.03,39000,2021-03-01T01:07:00
|
||||
UAL950 ,-68.54,45.03,38975,2021-03-01T01:07:00
|
||||
UAL950 ,-68.54,45.04,39000,2021-03-01T01:07:02
|
||||
UAL950 ,-68.53,45.04,39000,2021-03-01T01:07:02
|
||||
UAL950 ,-68.53,45.04,39000,2021-03-01T01:07:02
|
||||
UAL950 ,-68.53,45.04,39000,2021-03-01T01:07:03
|
||||
UAL950 ,-68.53,45.04,39000,2021-03-01T01:07:03
|
||||
UAL950 ,-68.53,45.04,39000,2021-03-01T01:07:03
|
||||
UAL950 ,-68.53,45.04,39000,2021-03-01T01:07:04
|
||||
UAL950 ,-68.52,45.04,39000,2021-03-01T01:07:05
|
||||
UAL950 ,-68.52,45.04,39000,2021-03-01T01:07:05
|
||||
UAL950 ,-68.52,45.04,39000,2021-03-01T01:07:06
|
||||
UAL950 ,-68.52,45.04,39000,2021-03-01T01:07:06
|
||||
UAL950 ,-68.52,45.04,39000,2021-03-01T01:07:07
|
||||
UAL950 ,-68.52,45.04,39000,2021-03-01T01:07:07
|
||||
UAL950 ,-68.51,45.04,39000,2021-03-01T01:07:07
|
||||
UAL950 ,-68.51,45.04,39000,2021-03-01T01:07:08
|
||||
UAL950 ,-68.51,45.04,39000,2021-03-01T01:07:09
|
||||
UAL950 ,-68.51,45.05,39000,2021-03-01T01:07:09
|
||||
UAL950 ,-68.51,45.05,39000,2021-03-01T01:07:10
|
||||
UAL950 ,-68.51,45.05,39000,2021-03-01T01:07:10
|
||||
UAL950 ,-68.5,45.05,39000,2021-03-01T01:07:11
|
||||
UAL950 ,-68.5,45.05,38975,2021-03-01T01:07:11
|
||||
UAL950 ,-68.5,45.05,39000,2021-03-01T01:07:12
|
||||
UAL950 ,-68.5,45.05,39000,2021-03-01T01:07:13
|
||||
UAL950 ,-68.5,45.05,39000,2021-03-01T01:07:13
|
||||
UAL950 ,-68.5,45.05,39000,2021-03-01T01:07:13
|
||||
UAL950 ,-68.49,45.05,39000,2021-03-01T01:07:14
|
||||
UAL950 ,-68.49,45.05,38975,2021-03-01T01:07:14
|
||||
UAL950 ,-68.49,45.05,39000,2021-03-01T01:07:15
|
||||
UAL950 ,-68.49,45.05,39000,2021-03-01T01:07:15
|
||||
UAL950 ,-68.49,45.05,39000,2021-03-01T01:07:15
|
||||
UAL950 ,-68.49,45.05,39000,2021-03-01T01:07:16
|
||||
UAL950 ,-68.48,45.06,39000,2021-03-01T01:07:17
|
||||
UAL950 ,-68.48,45.06,39000,2021-03-01T01:07:17
|
||||
UAL950 ,-68.48,45.06,39000,2021-03-01T01:07:18
|
||||
UAL950 ,-68.48,45.06,39000,2021-03-01T01:07:18
|
||||
UAL950 ,-68.48,45.06,39000,2021-03-01T01:07:19
|
||||
UAL950 ,-68.47,45.06,38975,2021-03-01T01:07:19
|
||||
UAL950 ,-68.47,45.06,39000,2021-03-01T01:07:20
|
||||
UAL950 ,-68.47,45.06,38975,2021-03-01T01:07:21
|
||||
UAL950 ,-68.47,45.06,39000,2021-03-01T01:07:21
|
||||
UAL950 ,-68.47,45.06,39000,2021-03-01T01:07:21
|
||||
UAL950 ,-68.47,45.06,38975,2021-03-01T01:07:22
|
||||
UAL950 ,-68.46,45.06,39000,2021-03-01T01:07:22
|
||||
UAL950 ,-68.46,45.06,39000,2021-03-01T01:07:23
|
||||
UAL950 ,-68.46,45.06,39000,2021-03-01T01:07:23
|
||||
UAL950 ,-68.46,45.06,38975,2021-03-01T01:07:24
|
||||
UAL950 ,-68.46,45.07,38975,2021-03-01T01:07:24
|
||||
UAL950 ,-68.46,45.07,38975,2021-03-01T01:07:25
|
||||
UAL950 ,-68.45,45.07,38975,2021-03-01T01:07:26
|
||||
UAL950 ,-68.45,45.07,38975,2021-03-01T01:07:26
|
||||
UAL950 ,-68.45,45.07,39000,2021-03-01T01:07:26
|
||||
UAL950 ,-68.45,45.07,38975,2021-03-01T01:07:27
|
||||
UAL950 ,-68.45,45.07,39000,2021-03-01T01:07:27
|
||||
UAL950 ,-68.45,45.07,38975,2021-03-01T01:07:28
|
||||
UAL950 ,-68.45,45.07,39000,2021-03-01T01:07:28
|
||||
UAL950 ,-68.44,45.07,39000,2021-03-01T01:07:29
|
||||
UAL950 ,-68.44,45.07,38975,2021-03-01T01:07:30
|
||||
UAL950 ,-68.44,45.07,38975,2021-03-01T01:07:30
|
||||
UAL950 ,-68.44,45.07,38975,2021-03-01T01:07:30
|
||||
UAL950 ,-68.44,45.07,38975,2021-03-01T01:07:31
|
||||
UAL950 ,-68.43,45.07,38975,2021-03-01T01:07:32
|
||||
UAL950 ,-68.43,45.08,39000,2021-03-01T01:07:32
|
||||
UAL950 ,-68.43,45.08,38975,2021-03-01T01:07:33
|
||||
UAL950 ,-68.43,45.08,38975,2021-03-01T01:07:33
|
||||
UAL950 ,-68.43,45.08,39000,2021-03-01T01:07:34
|
||||
UAL950 ,-68.42,45.08,39000,2021-03-01T01:07:35
|
||||
UAL950 ,-68.42,45.08,39000,2021-03-01T01:07:35
|
||||
UAL950 ,-68.42,45.08,39000,2021-03-01T01:07:35
|
||||
UAL950 ,-68.42,45.08,39000,2021-03-01T01:07:36
|
||||
UAL950 ,-68.42,45.08,39000,2021-03-01T01:07:36
|
||||
UAL950 ,-68.42,45.08,39000,2021-03-01T01:07:37
|
||||
UAL950 ,-68.41,45.08,39000,2021-03-01T01:07:38
|
||||
UAL950 ,-68.41,45.08,39000,2021-03-01T01:07:38
|
||||
UAL950 ,-68.41,45.08,39000,2021-03-01T01:07:38
|
||||
UAL950 ,-68.41,45.08,39000,2021-03-01T01:07:38
|
||||
UAL950 ,-68.41,45.08,39000,2021-03-01T01:07:39
|
||||
UAL950 ,-68.41,45.09,39000,2021-03-01T01:07:40
|
||||
UAL950 ,-68.41,45.09,39000,2021-03-01T01:07:40
|
||||
UAL950 ,-68.4,45.09,39000,2021-03-01T01:07:41
|
||||
UAL950 ,-68.4,45.09,39000,2021-03-01T01:07:41
|
||||
UAL950 ,-68.4,45.09,39000,2021-03-01T01:07:42
|
||||
UAL950 ,-68.4,45.09,39000,2021-03-01T01:07:42
|
||||
UAL950 ,-68.4,45.09,39000,2021-03-01T01:07:43
|
||||
UAL950 ,-68.39,45.09,39000,2021-03-01T01:07:44
|
||||
UAL950 ,-68.39,45.09,39000,2021-03-01T01:07:44
|
||||
UAL950 ,-68.39,45.09,39000,2021-03-01T01:07:45
|
||||
UAL950 ,-68.39,45.09,39000,2021-03-01T01:07:45
|
||||
UAL950 ,-68.39,45.09,38975,2021-03-01T01:07:46
|
||||
UAL950 ,-68.39,45.09,39000,2021-03-01T01:07:46
|
||||
UAL950 ,-68.38,45.09,39000,2021-03-01T01:07:46
|
||||
UAL950 ,-68.38,45.09,38975,2021-03-01T01:07:47
|
||||
UAL950 ,-68.38,45.09,39000,2021-03-01T01:07:47
|
||||
UAL950 ,-68.38,45.1,39000,2021-03-01T01:07:48
|
||||
UAL950 ,-68.38,45.1,39000,2021-03-01T01:07:48
|
||||
UAL950 ,-68.37,45.1,39000,2021-03-01T01:07:50
|
||||
UAL950 ,-68.37,45.1,39000,2021-03-01T01:07:51
|
||||
UAL950 ,-68.37,45.1,39000,2021-03-01T01:07:51
|
||||
UAL950 ,-68.37,45.1,39000,2021-03-01T01:07:52
|
||||
UAL950 ,-68.37,45.1,39000,2021-03-01T01:07:52
|
||||
UAL950 ,-68.36,45.1,39000,2021-03-01T01:07:53
|
||||
UAL950 ,-68.36,45.1,38975,2021-03-01T01:07:53
|
||||
UAL950 ,-68.36,45.1,39000,2021-03-01T01:07:53
|
||||
UAL950 ,-68.36,45.1,39000,2021-03-01T01:07:55
|
||||
UAL950 ,-68.36,45.1,39000,2021-03-01T01:07:55
|
||||
UAL950 ,-68.35,45.11,39000,2021-03-01T01:07:55
|
||||
UAL950 ,-68.35,45.11,39000,2021-03-01T01:07:56
|
||||
UAL950 ,-68.35,45.11,38975,2021-03-01T01:07:56
|
||||
UAL950 ,-68.35,45.11,39000,2021-03-01T01:07:57
|
||||
UAL950 ,-68.35,45.11,38975,2021-03-01T01:07:58
|
||||
UAL950 ,-68.35,45.11,39000,2021-03-01T01:07:58
|
||||
UAL950 ,-68.34,45.11,38975,2021-03-01T01:07:59
|
||||
UAL950 ,-68.34,45.11,39000,2021-03-01T01:07:59
|
||||
UAL950 ,-68.34,45.11,39000,2021-03-01T01:07:59
|
||||
UAL950 ,-68.34,45.11,38975,2021-03-01T01:08:00
|
||||
UAL950 ,-68.34,45.11,38975,2021-03-01T01:08:00
|
||||
UAL950 ,-68.34,45.11,38975,2021-03-01T01:08:01
|
||||
UAL950 ,-68.34,45.11,39000,2021-03-01T01:08:02
|
||||
UAL950 ,-68.33,45.11,39000,2021-03-01T01:08:02
|
||||
UAL950 ,-68.33,45.11,38975,2021-03-01T01:08:03
|
||||
UAL950 ,-68.33,45.11,38975,2021-03-01T01:08:03
|
||||
UAL950 ,-68.33,45.12,38975,2021-03-01T01:08:03
|
||||
UAL950 ,-68.33,45.12,38975,2021-03-01T01:08:04
|
||||
UAL950 ,-68.32,45.12,38975,2021-03-01T01:08:04
|
||||
UAL950 ,-68.32,45.12,38975,2021-03-01T01:08:05
|
||||
UAL950 ,-68.32,45.12,38975,2021-03-01T01:08:05
|
||||
UAL950 ,-68.32,45.12,38975,2021-03-01T01:08:06
|
||||
UAL950 ,-68.32,45.12,39000,2021-03-01T01:08:07
|
||||
UAL950 ,-68.32,45.12,38975,2021-03-01T01:08:07
|
||||
UAL950 ,-68.32,45.12,38975,2021-03-01T01:08:07
|
||||
UAL950 ,-68.31,45.12,38975,2021-03-01T01:08:08
|
||||
UAL950 ,-68.31,45.12,38975,2021-03-01T01:08:08
|
||||
UAL950 ,-68.31,45.12,39000,2021-03-01T01:08:09
|
||||
UAL950 ,-68.31,45.12,39000,2021-03-01T01:08:09
|
||||
UAL950 ,-68.3,45.12,38975,2021-03-01T01:08:10
|
||||
UAL950 ,-68.3,45.13,38975,2021-03-01T01:08:11
|
||||
UAL950 ,-68.3,45.13,38975,2021-03-01T01:08:11
|
||||
UAL950 ,-68.3,45.13,39000,2021-03-01T01:08:12
|
||||
UAL950 ,-68.3,45.13,38975,2021-03-01T01:08:12
|
||||
UAL950 ,-68.3,45.13,38975,2021-03-01T01:08:13
|
||||
UAL950 ,-68.3,45.13,38975,2021-03-01T01:08:13
|
||||
UAL950 ,-68.29,45.13,39000,2021-03-01T01:08:14
|
||||
UAL950 ,-68.29,45.13,38975,2021-03-01T01:08:14
|
||||
UAL950 ,-68.29,45.13,39000,2021-03-01T01:08:15
|
||||
UAL950 ,-68.29,45.13,38975,2021-03-01T01:08:15
|
||||
UAL950 ,-68.29,45.13,39000,2021-03-01T01:08:16
|
||||
UAL950 ,-68.29,45.13,38975,2021-03-01T01:08:16
|
||||
UAL950 ,-68.28,45.13,39000,2021-03-01T01:08:17
|
||||
UAL950 ,-68.28,45.13,38975,2021-03-01T01:08:17
|
||||
UAL950 ,-68.28,45.13,38975,2021-03-01T01:08:18
|
||||
UAL950 ,-68.28,45.13,39000,2021-03-01T01:08:18
|
||||
UAL950 ,-68.28,45.14,39000,2021-03-01T01:08:19
|
||||
UAL950 ,-68.28,45.14,39000,2021-03-01T01:08:20
|
||||
UAL950 ,-68.27,45.14,39000,2021-03-01T01:08:20
|
||||
UAL950 ,-68.27,45.14,39000,2021-03-01T01:08:21
|
||||
UAL950 ,-68.27,45.14,38975,2021-03-01T01:08:21
|
||||
UAL950 ,-68.27,45.14,38975,2021-03-01T01:08:21
|
||||
UAL950 ,-68.27,45.14,39000,2021-03-01T01:08:22
|
||||
UAL950 ,-68.27,45.14,38975,2021-03-01T01:08:22
|
||||
UAL950 ,-68.26,45.14,39000,2021-03-01T01:08:23
|
||||
UAL950 ,-68.26,45.14,39000,2021-03-01T01:08:23
|
||||
UAL950 ,-68.26,45.14,39000,2021-03-01T01:08:24
|
||||
UAL950 ,-68.26,45.14,38975,2021-03-01T01:08:25
|
||||
UAL950 ,-68.26,45.14,39000,2021-03-01T01:08:26
|
||||
UAL950 ,-68.25,45.14,39000,2021-03-01T01:08:26
|
||||
UAL950 ,-68.25,45.14,39000,2021-03-01T01:08:26
|
||||
UAL950 ,-68.25,45.15,39000,2021-03-01T01:08:27
|
||||
UAL950 ,-68.25,45.15,39000,2021-03-01T01:08:27
|
||||
UAL950 ,-68.25,45.15,39000,2021-03-01T01:08:27
|
||||
UAL950 ,-68.25,45.15,39000,2021-03-01T01:08:28
|
||||
UAL950 ,-68.25,45.15,38975,2021-03-01T01:08:29
|
||||
UAL950 ,-68.24,45.15,39000,2021-03-01T01:08:29
|
||||
UAL950 ,-68.24,45.15,39000,2021-03-01T01:08:30
|
||||
UAL950 ,-68.24,45.15,39000,2021-03-01T01:08:30
|
||||
UAL950 ,-68.24,45.15,39000,2021-03-01T01:08:30
|
||||
UAL950 ,-68.24,45.15,38975,2021-03-01T01:08:30
|
||||
UAL950 ,-68.24,45.15,39000,2021-03-01T01:08:31
|
||||
UAL950 ,-68.23,45.15,39000,2021-03-01T01:08:31
|
||||
UAL950 ,-68.23,45.15,39000,2021-03-01T01:08:32
|
||||
UAL950 ,-68.23,45.15,39000,2021-03-01T01:08:32
|
||||
UAL950 ,-68.23,45.15,39000,2021-03-01T01:08:33
|
||||
UAL950 ,-68.23,45.15,38975,2021-03-01T01:08:33
|
||||
UAL950 ,-68.23,45.15,39000,2021-03-01T01:08:34
|
||||
UAL950 ,-68.23,45.15,39000,2021-03-01T01:08:35
|
||||
UAL950 ,-68.22,45.16,39000,2021-03-01T01:08:35
|
||||
UAL950 ,-68.22,45.16,39000,2021-03-01T01:08:35
|
||||
UAL950 ,-68.22,45.16,39000,2021-03-01T01:08:36
|
||||
UAL950 ,-68.22,45.16,39000,2021-03-01T01:08:36
|
||||
UAL950 ,-68.22,45.16,39000,2021-03-01T01:08:36
|
||||
UAL950 ,-68.22,45.16,39000,2021-03-01T01:08:37
|
||||
UAL950 ,-68.21,45.16,39000,2021-03-01T01:08:38
|
||||
UAL950 ,-68.21,45.16,39000,2021-03-01T01:08:38
|
||||
UAL950 ,-68.21,45.16,39000,2021-03-01T01:08:39
|
||||
UAL950 ,-68.21,45.16,39000,2021-03-01T01:08:39
|
||||
UAL950 ,-68.21,45.16,39000,2021-03-01T01:08:40
|
||||
UAL950 ,-68.21,45.16,39000,2021-03-01T01:08:41
|
||||
UAL950 ,-68.2,45.16,39000,2021-03-01T01:08:41
|
||||
UAL950 ,-68.2,45.16,39000,2021-03-01T01:08:41
|
||||
UAL950 ,-68.2,45.16,39000,2021-03-01T01:08:42
|
||||
UAL950 ,-68.2,45.17,39000,2021-03-01T01:08:43
|
||||
UAL950 ,-68.2,45.17,39000,2021-03-01T01:08:43
|
||||
UAL950 ,-68.2,45.17,39000,2021-03-01T01:08:44
|
||||
UAL950 ,-68.19,45.17,39000,2021-03-01T01:08:44
|
||||
UAL950 ,-68.19,45.17,39000,2021-03-01T01:08:44
|
||||
UAL950 ,-68.19,45.17,39000,2021-03-01T01:08:44
|
||||
UAL950 ,-68.19,45.17,39000,2021-03-01T01:08:45
|
||||
UAL950 ,-68.19,45.17,39000,2021-03-01T01:08:46
|
||||
UAL950 ,-68.19,45.17,39000,2021-03-01T01:08:46
|
||||
UAL950 ,-68.18,45.17,39000,2021-03-01T01:08:47
|
||||
UAL950 ,-68.18,45.17,38975,2021-03-01T01:08:47
|
||||
UAL950 ,-68.18,45.17,39000,2021-03-01T01:08:48
|
||||
UAL950 ,-68.18,45.17,39000,2021-03-01T01:08:48
|
||||
UAL950 ,-68.18,45.17,39000,2021-03-01T01:08:49
|
||||
UAL950 ,-68.17,45.17,39000,2021-03-01T01:08:50
|
||||
UAL950 ,-68.17,45.18,38975,2021-03-01T01:08:50
|
||||
UAL950 ,-68.17,45.18,39000,2021-03-01T01:08:51
|
||||
UAL950 ,-68.17,45.18,38975,2021-03-01T01:08:51
|
||||
UAL950 ,-68.17,45.18,38975,2021-03-01T01:08:52
|
||||
UAL950 ,-68.17,45.18,38975,2021-03-01T01:08:52
|
||||
UAL950 ,-68.16,45.18,38975,2021-03-01T01:08:52
|
||||
UAL950 ,-68.16,45.18,38975,2021-03-01T01:08:53
|
||||
UAL950 ,-68.16,45.18,38975,2021-03-01T01:08:54
|
||||
UAL950 ,-68.16,45.18,38975,2021-03-01T01:08:55
|
||||
UAL950 ,-68.16,45.18,38975,2021-03-01T01:08:55
|
||||
UAL950 ,-68.15,45.18,38975,2021-03-01T01:08:56
|
||||
UAL950 ,-68.15,45.18,38975,2021-03-01T01:08:56
|
||||
UAL950 ,-68.15,45.18,38975,2021-03-01T01:08:57
|
||||
UAL950 ,-68.15,45.18,38975,2021-03-01T01:08:57
|
||||
UAL950 ,-68.15,45.19,38975,2021-03-01T01:08:58
|
||||
UAL950 ,-68.15,45.19,38975,2021-03-01T01:08:58
|
||||
UAL950 ,-68.14,45.19,38975,2021-03-01T01:08:59
|
||||
UAL950 ,-68.14,45.19,38975,2021-03-01T01:09:00
|
||||
UAL950 ,-68.14,45.19,38975,2021-03-01T01:09:00
|
||||
UAL950 ,-68.14,45.19,38975,2021-03-01T01:09:01
|
||||
UAL950 ,-68.14,45.19,38975,2021-03-01T01:09:01
|
||||
UAL950 ,-68.13,45.19,38975,2021-03-01T01:09:02
|
||||
UAL950 ,-68.13,45.19,38975,2021-03-01T01:09:02
|
||||
UAL950 ,-68.13,45.19,38975,2021-03-01T01:09:02
|
||||
UAL950 ,-68.13,45.19,38975,2021-03-01T01:09:03
|
||||
UAL950 ,-68.13,45.19,38975,2021-03-01T01:09:04
|
||||
UAL950 ,-68.13,45.19,38975,2021-03-01T01:09:04
|
||||
UAL950 ,-68.12,45.19,38975,2021-03-01T01:09:05
|
||||
UAL950 ,-68.12,45.19,38975,2021-03-01T01:09:05
|
||||
UAL950 ,-68.12,45.2,38975,2021-03-01T01:09:06
|
||||
UAL950 ,-68.12,45.2,38975,2021-03-01T01:09:06
|
||||
UAL950 ,-68.12,45.2,38975,2021-03-01T01:09:06
|
||||
UAL950 ,-68.12,45.2,38975,2021-03-01T01:09:07
|
||||
UAL950 ,-68.11,45.2,38975,2021-03-01T01:09:08
|
||||
UAL950 ,-68.11,45.2,38975,2021-03-01T01:09:08
|
||||
UAL950 ,-68.11,45.2,38975,2021-03-01T01:09:09
|
||||
UAL950 ,-68.11,45.2,38975,2021-03-01T01:09:09
|
||||
UAL950 ,-68.11,45.2,38975,2021-03-01T01:09:10
|
||||
UAL950 ,-68.11,45.2,38975,2021-03-01T01:09:10
|
||||
UAL950 ,-68.1,45.2,38975,2021-03-01T01:09:11
|
||||
UAL950 ,-68.1,45.2,39000,2021-03-01T01:09:12
|
||||
UAL950 ,-68.1,45.2,38975,2021-03-01T01:09:12
|
||||
UAL950 ,-68.09,45.21,39000,2021-03-01T01:09:13
|
||||
UAL950 ,-68.09,45.21,38975,2021-03-01T01:09:15
|
||||
UAL950 ,-68.09,45.21,39000,2021-03-01T01:09:15
|
||||
UAL950 ,-68.08,45.21,39000,2021-03-01T01:09:16
|
||||
UAL950 ,-68.08,45.21,39000,2021-03-01T01:09:17
|
||||
UAL950 ,-68.08,45.21,39000,2021-03-01T01:09:17
|
||||
|
+41
-3
@@ -50,14 +50,52 @@ def volume():
|
||||
level = os.popen('vol').read()
|
||||
return str(level)
|
||||
|
||||
@app.route('/cmd',methods = ['POST'])
|
||||
def command():
|
||||
@app.route('/curl',methods = ['POST'])
|
||||
def curl():
|
||||
if request.method == 'POST':
|
||||
json = request.get_json()
|
||||
output = os.popen("cd /usr/share/dump1090-mutability/html && "+json['command']).read()
|
||||
output = os.popen("curl "+json['url']).read()
|
||||
#output = os.popen(json['command']).read()
|
||||
return str(output)
|
||||
|
||||
@app.route('/cputemp',methods = ['GET'])
|
||||
def cputemp():
|
||||
if request.method == 'GET':
|
||||
output = os.popen("vcgencmd measure_temp").read()
|
||||
return str(output)
|
||||
|
||||
@app.route('/update',methods = ['GET'])
|
||||
def update():
|
||||
if request.method == 'GET':
|
||||
output = os.popen("cd /usr/share/dump1090-mutability/html && sudo git pull").read()
|
||||
return str(output)
|
||||
|
||||
@app.route('/branch',methods = ['GET'])
|
||||
def branch():
|
||||
if request.method == 'GET':
|
||||
output = os.popen("cd /usr/share/dump1090-mutability/html && sudo git branch | grep -F '*'").read()
|
||||
return str(output)
|
||||
|
||||
@app.route('/shutdown',methods = ['GET'])
|
||||
def shutdown():
|
||||
if request.method == 'GET':
|
||||
output = os.popen("cd /usr/local/bin && sudo x728softsd.sh").read()
|
||||
return str(output)
|
||||
|
||||
|
||||
@app.route('/reboot',methods = ['GET'])
|
||||
def reboot():
|
||||
if request.method == 'GET':
|
||||
output = os.popen("cd /usr/local/bin && sudo reboot").read()
|
||||
return str(output)
|
||||
|
||||
@app.route('/setbranch',methods = ['POST'])
|
||||
def setbranch():
|
||||
if request.method == 'POST':
|
||||
json = request.get_json()
|
||||
output = os.popen("cd /usr/share/dump1090-mutability/html && sudo git checkout " +json['branch']).read()
|
||||
return str(output)
|
||||
|
||||
|
||||
@app.after_request
|
||||
def after_request(response):
|
||||
|
||||
+77
-94
@@ -1,124 +1,107 @@
|
||||
var XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;
|
||||
const request = require('request');
|
||||
const fs = require('fs')
|
||||
var json = {}
|
||||
var bounds = {
|
||||
lat_north: 0,
|
||||
lat_south: 0,
|
||||
long_east: 0,
|
||||
long_west: 0
|
||||
lat_north: 0,
|
||||
lat_south: 0,
|
||||
long_east: 0,
|
||||
long_west: 0
|
||||
}
|
||||
const express = require('express')
|
||||
const bodyParser = require("body-parser");
|
||||
const app = express()
|
||||
var cluster = require('cluster');
|
||||
if (cluster.isMaster) {
|
||||
cluster.fork();
|
||||
|
||||
cluster.on('exit', function(worker, code, signal) {
|
||||
cluster.fork();
|
||||
});
|
||||
}
|
||||
|
||||
if (cluster.isWorker) {
|
||||
|
||||
app.use(bodyParser.urlencoded({
|
||||
extended: false
|
||||
}));
|
||||
app.use(bodyParser.urlencoded({ extended: false }));
|
||||
app.use(bodyParser.json());
|
||||
|
||||
app.use(function (req, res, next) {
|
||||
res.header("Access-Control-Allow-Origin", "*");
|
||||
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
|
||||
next();
|
||||
app.use(function(req, res, next) {
|
||||
res.header("Access-Control-Allow-Origin", "*");
|
||||
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
|
||||
next();
|
||||
});
|
||||
|
||||
function getData() {
|
||||
var xhr = new XMLHttpRequest()
|
||||
xhr.open("POST", "http://127.0.0.1:5000/cmd", true);
|
||||
xhr.setRequestHeader('Content-Type', 'application/json');
|
||||
xhr.timeout = 8000;
|
||||
xhr.onreadystatechange = function () {
|
||||
if (xhr.readyState === 4) {
|
||||
parseData(xhr.responseText)
|
||||
}
|
||||
//console.log('http://localhost:7000/data-live.flightradar24.com/zones/fcgi/feed.js?faa=1&bounds='+bounds.lat_north.toFixed(3)+'%2C'+bounds.lat_south.toFixed(3)+'%2C'+bounds.long_east.toFixed(3)+'%2C'+bounds.long_west.toFixed(3)+'&satellite=1&mlat=1&flarm=1&adsb=1&gnd=1&air=1&vehicles=1&estimated=1&maxage=14400&gliders=1&stats=1')
|
||||
const options = {
|
||||
url: 'http://localhost:7000/data-live.flightradar24.com/zones/fcgi/feed.js?faa=1&bounds='+bounds.lat_north.toFixed(3)+'%2C'+bounds.lat_south.toFixed(3)+'%2C'+bounds.long_east.toFixed(3)+'%2C'+bounds.long_west.toFixed(3)+'&satellite=1&mlat=1&flarm=1&adsb=1&gnd=1&air=1&vehicles=1&estimated=1&maxage=14400&gliders=1&stats=1',
|
||||
headers: {
|
||||
'x-requested-with': 'request'
|
||||
}
|
||||
xhr.send(JSON.stringify({
|
||||
command: 'curl "http://data-live.flightradar24.com/zones/fcgi/feed.js?faa=1&bounds=' + bounds.lat_north.toFixed(3) + '%2C' + bounds.lat_south.toFixed(3) + '%2C' + bounds.long_east.toFixed(3) + '%2C' + bounds.long_west.toFixed(3) + '&satellite=1&mlat=1&flarm=1&adsb=1&gnd=1&air=1&vehicles=1&estimated=1&maxage=14400&gliders=1&stats=1"'
|
||||
}));
|
||||
};
|
||||
request(options, function (error, response, body) {
|
||||
if (body) {
|
||||
parseData(body)
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function parseData(data) {
|
||||
data = JSON.parse(data)
|
||||
json.now = new Date()
|
||||
json.now = json.now.getTime() - json.now.getMilliseconds() / 1000
|
||||
json.messages = 0
|
||||
json.aircraft = []
|
||||
for (element in data) {
|
||||
if (element != "stats" && element != "full_count" && element != "version") {
|
||||
json.aircraft.push({
|
||||
hex: data[element][0].toLowerCase(),
|
||||
flight: data[element][16],
|
||||
lat: data[element][1],
|
||||
lon: data[element][2],
|
||||
altitude: data[element][4],
|
||||
track: data[element][3],
|
||||
speed: data[element][5],
|
||||
squawk: data[element][6],
|
||||
seen: 0,
|
||||
seen_pos: 0,
|
||||
rssi: 0,
|
||||
messages: 0,
|
||||
internet: true,
|
||||
dep: data[element][11],
|
||||
arr: data[element][12],
|
||||
airline: data[element][18]
|
||||
})
|
||||
// console.log(element)
|
||||
//console.log(data[element][1])
|
||||
//console.log(data[element][2])
|
||||
}
|
||||
data = JSON.parse(data)
|
||||
json.now = new Date()
|
||||
json.now = json.now.getTime() - json.now.getMilliseconds() / 1000
|
||||
json.messages = 0
|
||||
json.aircraft = []
|
||||
for (element in data) {
|
||||
if (element != "stats" && element != "full_count" && element != "version") {
|
||||
json.aircraft.push({
|
||||
hex: data[element][0].toLowerCase(),
|
||||
flight: data[element][16],
|
||||
lat: data[element][1],
|
||||
lon: data[element][2],
|
||||
altitude: data[element][4],
|
||||
track: data[element][3],
|
||||
speed: data[element][5],
|
||||
squawk: data[element][6],
|
||||
seen: 0,
|
||||
seen_pos: 0,
|
||||
rssi: 0,
|
||||
messages: 0,
|
||||
internet: true,
|
||||
dep: data[element][11],
|
||||
arr: data[element][12],
|
||||
airline: data[element][18]
|
||||
})
|
||||
// console.log(element)
|
||||
//console.log(data[element][1])
|
||||
//console.log(data[element][2])
|
||||
}
|
||||
for (element in json.aircraft) {
|
||||
if (json.aircraft[element].messages != 0) {
|
||||
json.aircraft[element] = {}
|
||||
} else {
|
||||
json.aircraft[element].messages = json.aircraft[element].messages + 1
|
||||
}
|
||||
}
|
||||
for (element in json.aircraft) {
|
||||
if (json.aircraft[element].messages != 0) {
|
||||
json.aircraft[element] = {}
|
||||
} else {
|
||||
json.aircraft[element].messages = json.aircraft[element].messages +1
|
||||
}
|
||||
fs.writeFileSync("/run/dump1090-mutability/aircraft1.json", JSON.stringify(json))
|
||||
// fs.writeFileSync("../data/aircraft1.json", JSON.stringify(json))
|
||||
//console.log(json)
|
||||
}
|
||||
fs.writeFileSync("/run/dump1090-mutability/aircraft1.json", JSON.stringify(json))
|
||||
//console.log(json)
|
||||
}
|
||||
|
||||
function changeTime() {
|
||||
fs.readFile('/run/dump1090-mutability/aircraft1.json', 'utf8', function (err,data) {
|
||||
//fs.readFile('../data/aircraft1.json', 'utf8', function (err, data) {
|
||||
if (err) {
|
||||
return console.log(err);
|
||||
}
|
||||
data = JSON.parse(data)
|
||||
for (element in data.aircraft) {
|
||||
data.aircraft[element].seen = data.aircraft[element].seen + 1
|
||||
data.aircraft[element].seen_pos = data.aircraft[element].seen_pos + 1
|
||||
}
|
||||
fs.writeFileSync("/run/dump1090-mutability/aircraft1.json", JSON.stringify(data))
|
||||
//fs.writeFileSync("../data/aircraft1.json", JSON.stringify(data))
|
||||
});
|
||||
fs.readFile('/run/dump1090-mutability/aircraft1.json', 'utf8', function (err,data) {
|
||||
if (err) {
|
||||
return console.log(err);
|
||||
}
|
||||
data = JSON.parse(data)
|
||||
for (element in data.aircraft) {
|
||||
data.aircraft[element].seen = data.aircraft[element].seen + 1
|
||||
data.aircraft[element].seen_pos = data.aircraft[element].seen_pos +1
|
||||
}
|
||||
fs.writeFileSync("/run/dump1090-mutability/aircraft1.json", JSON.stringify(data))
|
||||
});
|
||||
}
|
||||
|
||||
setInterval(function () {
|
||||
getData()
|
||||
getData()
|
||||
}, 10000);
|
||||
setInterval(function () {
|
||||
changeTime()
|
||||
changeTime()
|
||||
}, 1000);
|
||||
|
||||
app.post("/internet", function (req, res) {
|
||||
//console.log(req.body)
|
||||
bounds = req.body
|
||||
getData()
|
||||
return res.send("Recieved")
|
||||
app.post("/internet", function(req, res) {
|
||||
//console.log(req.body)
|
||||
bounds = req.body
|
||||
getData()
|
||||
return res.send("Recieved")
|
||||
})
|
||||
|
||||
app.listen(8000);
|
||||
}
|
||||
app.listen(8000);
|
||||
+2
-1
@@ -1,6 +1,7 @@
|
||||
sudo python /usr/share/dump1090-mutability/html/python/battery.py & > /dev/null 2>&1 &
|
||||
sudo python /usr/share/dump1090-mutability/html/python/api.py & > /dev/null 2>&1 &
|
||||
sudo node /usr/share/dump1090-mutability/html/scripts/internet_data.js & > /usr/share/dump1090-mutability/html/scripts/log &
|
||||
sudo node /usr/share/dump1090-mutability/html/scripts/internet_data.js & > /dev/null 2>&1 &
|
||||
/usr/bin/wget http://server1.nicholaspease.com:6500/reports/liveatc.json -O /home/pi/dump1090-info/liveatc.json
|
||||
|
||||
export PORT=8080
|
||||
sudo node /home/pi/cors-anywhere/server.js
|
||||
Reference in New Issue
Block a user