##Team Members
- Prateek Chandan (120050042)
- Nishant Kumar Singh (120050043)
- Maninder
To run the complete code base. Run the following bash file
./run.sh
##Requirements Language : Python2.7 Operating System : Linux Memory Requirement : ~40GB of free space The following python libraries are used in our code base and are required in this project
- pandas
- sklearn
- numpy
- scipy
- csv
##Data File Fileds
Note: The fileds with * are used in our training model
- *Year 1987-2008
- *Month 1-12
- DayofMonth 1-31
- *DayOfWeek 1 (Monday) - 7 (Sunday)
- *DepTime actual departure time (local, hhmm)
- *CRSDepTime scheduled departure time (local, hhmm)
- *ArrTime actual arrival time (local, hhmm)
- *CRSArrTime scheduled arrival time (local, hhmm)
- *UniqueCarrier unique carrier code
- FlightNum flight number
- TailNum plane tail number
- *ActualElapsedTime in minutes
- *CRSElapsedTime in minutes
- *AirTime in minutes
- ->ArrDelay arrival delay, in minutes
- ->DepDelay departure delay, in minutes
- *Origin origin IATA airport code
- *Dest destination IATA airport code
- *Distance in miles
- TaxiIn taxi in time, in minutes
- TaxiOut taxi out time in minutes
- *Cancelled was the flight cancelled?
- CancellationCode reason for cancellation (A = carrier, B = weather, C = NAS, D = security)
- Diverted 1 = yes, 0 = no
- CarrierDelay in minutes
- WeatherDelay in minutes
- NASDelay in minutes
- SecurityDelay in minutes
- LateAircraftDelay in minutes
- source Time
- source Station Type
- source Maintenance Indicator
- source Sky Conditions
- *source Visibility
- source Weather Type
- *source Dry Bulb Temp
- *source Dew Point Temp
- *source Wet Bulb Temp
- *source % Relative Humidity
- *source Wind Speed (kt)
- source Wind Direction
- source Wind Char. Gusts (kt)
- source Val for Wind Char.
- *source Station Pressure
- source Pressure Tendency
- *source Sea Level Pressure
- source Record Type
- source Precip. Total
- dest Time
- dest Station Type
- dest Maintenance Indicator
- dest Sky Conditions
- *dest Visibility
- dest Weather Type
- *dest Dry Bulb Temp
- *dest Dew Point Temp
- *dest Wet Bulb Temp
- *dest % Relative Humidity
- *dest Wind Speed (kt)
- dest Wind Direction
- dest Wind Char. Gusts (kt)
- dest Val for Wind Char.
- *dest Station Pressure
- dest Pressure Tendency
- *dest Sea Level Pressure
- dest Record Type
- dest Precip. Total
##Data Source
We have used the following data sets:
- Statistical Computing & Statistical Graphics .This data is taken from the Research and Technology Administration (RITA) database and structured for our use. But the above dataset doesn’t have any information related to weather conditions at the origin and destination airports.
- For weather data we have: Hourly landbased weather observations from NOAA .This source contains hourly and daily data of weather at various airports.
- http://statcomputing.org/dataexpo/2009/thedata.html
- http://cdo.ncdc.noaa.gov/qclcd_ascii/
- https://www.scipy.org/
- http://scikit-learn.org/
- http://www.google.com
GITHUB URL : https://github.com/prateekchandan/Flight-Delay-Prediction