Aircraft Position

The Aircraft Position object specifies the physical location of an aircraft that is seen by our network. The same object is used independently of the source of the data, making it possible to receive information from multiple sources, like ground- and satellite-based ADS-B, ADS-C, Eurocontrol and FAA, all in one consistent format.

The Aircraft Position object is broken down into a part with information about the Aircraft, and a child object with the Position information.

{
  "icao24": "4D212D",
  "registration": "9H-VJT",
  "blocked": false,
  "position": {
    "baroAltitude": 0,
    "groundSpeed": 0,
    "course": null,
    "verticalRate": null,
    "coordinates": {
      "latitude": 42.69123,
      "longitude": 23.400879
    },
    "observed": "2021-05-21T12:52:09.36603",
    "onGround": true,
    "callsign": "VJT817T",
    "squawk": "1054",
    "technology": "ADSB"
  }
}

The Position object

The Position object contains information on an individual position tracked by our network.

Last updated