- Posts: 1
- Thank you received: 0
var url = 'https://opensky-network.org/api/states/all'; //Include the protocol here (https://)
$.when($.getJSON(url)).done(function(data) {
$.each(data.states, function(i, value) {
console.log(value[5]+","+value[6]); //"value" is not an object but an array, so latitude and longitude have to be accessed by their index
});
})
I checked your profile and it seems your receiver is not receiving any messages. The availability chart uses message data to visualise the availability of the sensor. If no message is received over at least a 5 minute period of time, the sensor is considered to have been offline then. The little online-tag on the top left, on the other hand, indicates if a TCP connection to the receiver is active.PS My receiver is online but it shows offline with you guys.