airport traffic routes from apt.dat 1000 are unknown to FG, so ignore them for now
This commit is contained in:
parent
9ac1e82c82
commit
2319948b95
1 changed files with 3 additions and 1 deletions
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue