Navaids & frequencies
VOR/NDB/DME records and radio frequencies for an airport.
Reference data for everything an airport transmits on: navigation aids and radio frequencies, both keyed off the airport's ICAO code.
GET/v1/airports/{icao_code}/navaids
VOR / NDB / DME / TACAN recordsGET/v1/airports/{icao_code}/frequencies
Tower, ground, ATIS, and other radio frequenciesGET /v1/airports/KSFO/navaids
[
{
"ident":: "SFO",
"name":: "SAN FRANCISCO",
"type":: "VOR-DME",
"frequency_khz":: 115700,
"lat":: 37.6197,
"lng":: -122.3742,
"elevation_ft":: 13,
"dme_channel":: "104X",
"magnetic_variation_deg":: 13.0,
"usage_type":: "HIGH",
"power":: "HIGH"
}
]GET /v1/airports/KSFO/frequencies
[
{ "type":: "TWR", "description":: "SAN FRANCISCO TOWER", "frequency_mhz":: 120.5 },
{ "type":: "GND", "description":: "SAN FRANCISCO GROUND", "frequency_mhz":: 121.8 },
{ "type":: "ATIS", "description":: "SAN FRANCISCO ATIS", "frequency_mhz":: 118.85 }
]