-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
### Processing and Sorting Flight Log Entries | ||
##### The [flights.csv][identifier] file contains entries between certain dates with different fields, the program reads from the csv file to accomplish three tasks: | ||
- The user picks a date interval, and T1.java shows a summary report for the entiries between these dates, listing and calculating total number of entiries, minimum departure delay, maksimum departure delay and average departure delay for each flight ordered by number of entiries decending. | ||
- The user picks an airline and a date interval, and T2.java shows a report for the entiries between these dates listing, origin airport name, destination airport name, flight number and statistics such as total number of entiries, minimum departure delay, maksimum departure delay, average departure delay ordered by departure delay descending. | ||
- T3 splits [flights.csv][identifier] file into small files. Each file will contain entries regarding only one flight. All files are named as AirlineCode-FlightNumber.csv . Ex. TK-2345.csv. | ||
[identifier]: https://drive.google.com/file/d/1Ev7v9P3r05nozA9hLe6w5RLt55sj35Tq/view?usp=sharing |