This is awesome. Now I'd love to be able to visualize which aiports are flown to/from the one under the mouse... Where can one get this data?
https://openflights.org/data.html
World Airports Voronoi (2014)
81–90 of 114 posts
Re: World Airports Voronoi (2014)
#82This diagram is oddly selective about which airports it includes. It has some class D airports (Modesto, Santa Maria) but not others (Palo Alto, El Monte, Fullerton). There is no pattern that I can discern other than eliminating airports that are too close to each other, which kind of defeats the purpose of this exercise.
Re: World Airports Voronoi (2014)
#83Earlier quoted context omitted.
I also consider Voronoi diagrams fun, and in my life I've implemented three different algorithms for generating 2D Voronoi diagrams (or Delaunay triangulations, which are the duals of Voronoi diagrams): 1. Fortune's algorithm [0] 2. The Bowyer-Watson algorithm for generating the Delaunay triangulation incrementally [1] 3. Quickhull (which generates the 3D convex hull of points, which is the 2D delaunay triangulation…
I spent a couple weekends trying to implement Voronoi via Fortune's algorithm in PHP, since there is no existing library for generating them. I couldn't get past the point of creating a seemingly random mass of intersecting lines. My math knowledge is lacking (I'm not good at groking geometry for some reason), so I wasn't sure what was wrong or how to approach fixing it. Maybe I should give Quickhull a go. I think I…
Re: World Airports Voronoi (2014)
#84I wonder what happens if you "give weight" to each point relative to size of the airport (measured e.g. by number of take-offs/landings per year)?
Re: World Airports Voronoi (2014)
#85This diagram is oddly selective about which airports it includes. It has some class D airports (Modesto, Santa Maria) but not others (Palo Alto, El Monte, Fullerton). There is no pattern that I can discern other than eliminating airports that are too close to each other, which kind of defeats the purpose of this exercise.
This is probably the most frequently asked question! The data is from here: http://ourairports.com/data/ I had to limit the number of airports displayed for performance reasons. I filtered the airport data so that only those airports with scheduled services and which are denoted "large" or "medium" are included (according to OurAirports), bringing the number down to 2,980.
Re: World Airports Voronoi (2014)
#86This diagram is oddly selective about which airports it includes. It has some class D airports (Modesto, Santa Maria) but not others (Palo Alto, El Monte, Fullerton). There is no pattern that I can discern other than eliminating airports that are too close to each other, which kind of defeats the purpose of this exercise.
I noticed they included most all the tiny regional airports in Iceland, but left out ones like Kulusuk in Greenland, which receives international air traffic.
[1]: not to be confused with the larger Keflavík international airport that handles almost all international flights to Iceland
Re: World Airports Voronoi (2014)
#87Am I missing something, there are a number of airports in Antartica, I assume that none of these are commercial though: https://en.wikipedia.org/wiki/List_of_airports_in_Antarctica
"There are in fact airports on Antarctica, but they are not classed as medium or large, and do not have scheduled services according to this dataset."
Re: World Airports Voronoi (2014)
#88I've been grinding on an observation about the distribution of people on Earth. It can be reduced to the observation that the city of Ushuaia, AR at 55 degrees south is the most southerly city (FWIW the other two contenders for that title are near Ushuaia), while the city of Copenhagen, DK at 55 degrees north is definitely not the most northerly city. Although there is a great deal of land below the Antarctic Circle,…
That's really interesting. Do you think it could be related to the effect of map projection biases? Is that a thing dates far enough back to affect settlement decisions?
Antarctica was not well bounded on maps until the Wilkes expedition and others in the 1830's.
Re: World Airports Voronoi (2014)
#89Re: World Airports Voronoi (2014)
#90I've been grinding on an observation about the distribution of people on Earth. It can be reduced to the observation that the city of Ushuaia, AR at 55 degrees south is the most southerly city (FWIW the other two contenders for that title are near Ushuaia), while the city of Copenhagen, DK at 55 degrees north is definitely not the most northerly city. Although there is a great deal of land below the Antarctic Circle,…