Airpot Network Analysi

Introduction

This project analyzes flight network data from March 2020 through October 2021, covering a critical period during the COVID-19 pandemic. The dataset includes comprehensive flight tracking information across multiple months.

Dataset Overview

The analysis uses flight data spanning:

  • Time Period: March 2020 - October 2021
  • Total Files: 20 monthly datasets
  • Data Format: CSV files with flight tracking information

Data Collection Period

Data Structure

Each monthly dataset contains flight information including:

  • Flight identifiers
  • Origin and destination airports
  • Departure and arrival times
  • Flight status information
  • Aircraft details

Project Goals

  1. Network Analysis: Examine the structure and connectivity of the airport network
  2. Temporal Trends: Analyze how flight patterns changed during the pandemic period
  3. Hub Identification: Identify major airport hubs and their characteristics
  4. Route Analysis: Study popular routes and their evolution over time

Sample Data Analysis

Code
# Example: Loading and exploring a dataset
library(readr)
library(dplyr)

# Load a sample month
flights <- read_csv("dataset/flightlist_20210601_20210630.csv")

# Basic summary
summary(flights)

# Example analysis: Top airports by flight count
# top_airports <- flights %>%
#   count(origin_airport, sort = TRUE) %>%
#   head(10)

Network Visualization

Future sections will include:

  • Interactive network graphs showing airport connections
  • Heat maps of flight density by time period
  • Comparison of pre-pandemic vs pandemic flight patterns
  • Geographic visualizations of routes

Methodology

The analysis employs:

  • R for data processing and statistical analysis
  • Network analysis techniques to understand connectivity
  • Time series analysis to identify trends
  • Geospatial analysis for route visualization

Next Steps

  1. Load and combine all monthly datasets
  2. Clean and standardize the data
  3. Perform exploratory data analysis
  4. Build network graphs
  5. Analyze temporal patterns
  6. Create interactive visualizations

Data Source

Flight data collected from public flight tracking sources covering the period of March 2020 through October 2021.


Last updated: 2026-02-05