Adding Airports

When adding airports that are NOT in `aerolineas-airports.json`:

Views0
PublishedFeb 13, 2026

Loading actions...

5 minBeginnerpromptSingle file

Skill content

Main instructions and any bundled files for this skill.

markdown

Adding Airports

When adding airports that are NOT in aerolineas-airports.json:

  1. Don't add to /misc/aerolineas-airports.json - that's for Aerolineas airports only
  2. Add to OTHER_AIRPORTS object in /sitio-sveltekit/src/routes/+page.svelte

Example:

const OTHER_AIRPORTS = {
  CNQ: "Corrientes",
  GIG: "Rio de Janeiro",
  MCZ: "Maceió", // International airports, charter destinations, etc.
};

This prevents "Airport {IATA} not found" warnings when flights reference the airport.

Touching the database

You can call the DB directly by using psql and the DATABASE_URL in grep DATABASE sitio-sveltekit/.env.

Share: