11

I'm looking at developing an app where one of the functions I would like to implement needs to use data which is normally available in AIP, like:

  • Aerodrome names, ICAO codes, GPS location, elevation
  • VFR reporting point names, GPS location
  • Nav points (names, locations)

In addition, I may want to display or use data from NOTAMs, METARs, TAFs, etc in my app.

Does anyone know the official sources for this data, ideally published by CAAs (FAA in the US, Eurocontrol in the EU and similar)? Please note I'm really only interested in programmatic access (e.g. a JSON, XML or similar feed available through a web API or similar), as opposed to document based data in the form of PDF or HTML files.

It goes without saying that I would ideally like this access for free, but a commercial arrangement is also I would look at - provided it's not outrageously expensive.

DeltaLima
  • 83,202
  • 11
  • 272
  • 366
mike
  • 213
  • 1
  • 3
  • 6

3 Answers3

8

ICAO is offering a very nice API for retrieval of, for example, aerodrome names/ICAO codes and NOTAM's. It is currently in public beta, which means that it is free to use. Once they finish testing it, there will be some kind of cost involved, but they have not published any pricing details yet. You can find it here: https://www.icao.int/safety/iStars/Pages/API-Data-Service.aspx

NOAA offers API access to weather information such as METAR's and TAF's: https://aviationweather.gov/adds/dataserver

You can find waypoints and navaids, including names and locations, via EUROCONTROL EAD: https://eadbasic.ead-it.com/fwf-eadbasic/restricted/reporting/reporting.faces (register first, then return to that link). However, what they seem to offer is a one time search/database dump, more than an actual API.

60levelchange
  • 36,364
  • 4
  • 142
  • 163
  • Thanks! I'll have a proper look at the links above this evening, but it seems like most of what I need if not all is there. – mike Jul 08 '17 at 12:05
2

You can find a nice set of APIs at:

https://developer.laminardata.aero/documentation/notamdata/v2

b.a.0
  • 21
  • 1
0

Recent update to aviationweather.gov puts the metar here: https://aviationweather.gov/data/metar/

Raw format for example returns

KRNT 071833Z 19006KT 10SM FEW023 BKN031 OVC037 11/08 A3006 RMK AO2 T01110078
MonoThreaded
  • 309
  • 2
  • 10