Baselight

U.S. Airline Traffic Data (2003-2023)

Monthly data from 2003 to 2023 for all commercial U.S. air carriers

@kaggle.yyxian_u_s_airline_traffic_data

Air Traffic
@kaggle.yyxian_u_s_airline_traffic_data.air_traffic

  • 34.8 KB
  • 249 rows
  • 17 columns
year

Year

month

Month

dom_pax

Dom Pax

int_pax

Int Pax

pax

Pax

dom_flt

Dom Flt

int_flt

Int Flt

flt

Flt

dom_rpm

Dom RPM

int_rpm

Int RPM

rpm

RPM

dom_asm

Dom ASM

int_asm

Int ASM

asm

ASM

dom_lf

Dom LF

int_lf

Int LF

lf

LF

20031430324504905830479382807851605766784282736211422128859804909740256191300179685727415987264.4471.7166.2
20032411667804245366454121466903515125974161034148439107154684486390750088434155878806567631468.1868.7468.31
20033499927005008613550013137971945892685612041774564125670685434163357592901177531747534607572.5370.7972.12
20034470332604345444513787047662605500582126539465980103705924983657254639679155287617016844072.2366.7871.02
20035491523524610834537631867893975526584466241001934115750265257696055349897156298217097971874.0874.0674.07
20036522095165411504576210207983515822585657644492972139181855841115756555517171915797374709678.6780.9679.2
20037558107736191120620018938316196295789457648321924155167946383871859617048187017597831880781.0582.9781.51
20038539209736272332601933058307376376089449746982527159064306288895759634190191448857877907578.7883.0879.83
20039442134084824596490380047818045401783582136819820135708895039070954973852178204787279432966.9876.1569.22
200310499449314920822548657538183085427287258041480412134474465492785858001020176944177569543771.527672.56

CREATE TABLE air_traffic (
  "year" BIGINT,
  "month" BIGINT,
  "dom_pax" BIGINT,
  "int_pax" BIGINT,
  "pax" BIGINT,
  "dom_flt" BIGINT,
  "int_flt" BIGINT,
  "flt" BIGINT,
  "dom_rpm" BIGINT,
  "int_rpm" BIGINT,
  "rpm" BIGINT,
  "dom_asm" BIGINT,
  "int_asm" BIGINT,
  "asm" BIGINT,
  "dom_lf" DOUBLE,
  "int_lf" DOUBLE,
  "lf" DOUBLE
);

Share link

Anyone who has the link will be able to view this.