MCPcopy
hub / github.com/cpaczek/skylight / Runway

Interface Runway

shared/src/airport.ts:6–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4// ICAO/IATA code (the server resolves it from the OurAirports dataset).
5
6export interface Runway {
7 leIdent: string;
8 heIdent: string;
9 le: [number, number]; // [lat, lon]
10 he: [number, number];
11 widthFt: number;
12}
13
14export interface Airport {
15 icao: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected