We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello everybody! First at all, I am a total beginner with programming. I am a visual designer and I'm trying to use Processing to visualize data.
I followed this great Skillshare class that shows how to visualize a meteorite strikes data set on a map.
I managed to have that done, and now I want to take it a step forward. I found on this website two data sets.
The first one shows all the airports in the world, with their latitude and longitude. I managed to visualize this on a map.
The second data set shows all the routes from airport to airport.
I would like to visualize the routes on the same map. The problem is that I don't know how to connect the two data sets in Processing. The connecting information is the code of the airport, which is present in both data sets.
Any suggestion?
Thanks, Dario.
Answers
you can read airports and routes data and simply match them ... get the "from airport" and "to airport" airport code from the routes dataset and iterate over the airports data and when you match the string get the long/lat values....
how did you read the airports dataset?
Yes, that's what I was thinking about, the thing is that I'm a total noob and I'm kind of stuck on how to do it.
This is what I've done so far, which gave me the airports on the map.
edit post, highlight code, press ctrl-o