Live data from Hacker News

Airline flights of the world visualized with WebGL

callumprentice.github.io

11–20 of 79 posts

Re: Airline flights of the world visualized with WebGL

#13
That's really cool! I did something similar for my thesis. We used flight information from http://planefinder.net/ as our data set. Unfortunately no WebGL, but you can see an impression in this Youtube video: https://www.youtube.com/watch?v=XvrdxLymMv0 More info here: http://www.cs.rug.nl/svcg/SoftVis/FlightVis

Re: Airline flights of the world visualized with WebGL

#17
post #16

OT but what's up with all the double exclamation marks in the code? https://github.com/callumprentice/callumprentice.github.io/b...

Converts a value to a true boolean: if `a` is truthy (is assimilated to `true` in boolean contexts), `!!a` will be `true` rather than the original value. It's equivalent to but much shorter than `Boolean(a)`, and just as readable if you know the idiom.

Re: Airline flights of the world visualized with WebGL

#18
post #16

OT but what's up with all the double exclamation marks in the code? https://github.com/callumprentice/callumprentice.github.io/b...

Double exclamation marks force a true value, as opposed to a truthy one. For example:

    SomethingTruthy => TruthyThing
    !SomethingTruthy => False
    !!SomethingTruthy => True

Re: Airline flights of the world visualized with WebGL

#19
post #10

This is beautiful, It's amazing to see how humanity goes over every part of the planet. Which flights are those few going over the north pole?? [~30fps/OSX-Chrome]

North Pole flights are North America and mid-Europe to Japan / China / Korea.

Pioneered by Finnair and KLM.

One of the ETOPS certification criteria for modern airliners is demonstrable navigation stability and accuracy over the Pole. Navstar GPS is not so useful there; GLONASS is better but inertial platforms still the best at those latitudes.

Post reply on HN