in reply to warnings unexpecetd
Also, the warning for line 48:if (($delay_ATO_CTO_min ne "") && ($delay_ATO_CTO_min > 10)) {
is another clue that many of your values aren't initialized correctly. Many lines in your input file don't have any "aircraft information", just a timestamp. You should skip those lines (I guess). I think you also "split" on ";" when you should split on whitespace. Consider this instead...Use of uninitialized value in concatenation (.) or string at ./630978. +pl line 66, <INFILE> line 1 (#1)
Good luck!my @Parts = split('\s+'); next if (scalar @Parts != 6);
|
|---|