1
0
Fork 0

airport traffic routes from apt.dat 1000 are unknown to FG, so ignore them for now

This commit is contained in:
Christian Schmitt 2013-02-20 23:43:21 +01:00
parent 9ac1e82c82
commit 2319948b95

View file

@ -179,11 +179,13 @@ public:
pavement = false;
} else if ( line_id == 130 ) {
pavement = false;
} else if ( line_id >= 1000 ) {
// airport traffic flow (ignore)
} else if ( line_id == 99 ) {
SG_LOG( SG_GENERAL, SG_DEBUG, "End of file reached" );
} else {
SG_LOG( SG_GENERAL, SG_ALERT,
"Unknown line(#" << line_num << ") in file: " << line );
"Unknown line(#" << line_num << ") in apt.dat file: " << line );
exit( -1 );
}
}