Jules wrote:
So my question for the admins is: What is the exact procedure to create actualLandings_20130910_1803.csv from training2_flighthistory.csv?
Admins,
As reported by Alessandro and Jules, there are discrepancies between training2_flighthistory.csv and actualLandings_20130910_1803.csv.
Want proof? On a bash shell, cd to the directory that has training2_flighthistory.csv and run this command:
cat training2_flighthistory.csv | grep KCVG | cut -f18 -d',' | grep "2013-09-10 18:04" | wc -l
This will output the number of flights that either took off or landed at KCVG AND has an actual_runway_arrival time of "2013-09-10 18:04". One would expect this to be a non-zero value. Why? Because KCVG appears in the first time slot within actualLandings_20130910_1803.csv.
The command, however returns 0. Maybe I got the time wrong? The exact cutoff time is 18:03:53 after all. So let's try this:
cat training2_flighthistory.csv | grep KCVG | cut -f18 -d',' | grep "2013-09-10 18:03" | wc -l
Nada.
Maybe this will work?
cat training2_flighthistory.csv | grep KCVG | cut -f18 -d',' | grep "2013-09-10 18:05" | wc -l
Still nada.
So, what gives?
Curiously enough, there is a flight that lands at KCVG with an actual_runway_departure of 18:04. Makes you wonder...
Please look into it. It is also possible that you are using actualLanding files with incorrect values to score the leaderboard.
with —