common-airport-destinations

Airport Destination Comparator

This is a lightweight web tool that compares passenger destinations between two airports entered by ICAO or IATA code. It uses Wikipedia airport pages to identify:

How It Works

  1. Enter two airport codes such as TFU and ZUUU.
  2. The app looks up each airport page through the MediaWiki API.
  3. It loads the page HTML directly from Wikipedia’s parse API.
  4. It extracts airline and destination tables, then compares the routes.

Local Testing

You can run the app locally with any static file server. One simple option is:

python3 -m http.server 4173

Then open:

http://127.0.0.1:4173

Online Version

The deployed Vercel app is available at:

https://common-airport-destinations.vercel.app/

Notes