BHGC / website

The Berkeley Hang Gliding Club (website)
https://www.bhgc.org/
4 stars 6 forks source link

OpenSky Network #88

Open HenrikBengtsson opened 9 months ago

HenrikBengtsson commented 9 months ago

OpenSky Network is an online API for query recent flight data, cf. https://openskynetwork.github.io/opensky-api/index.html, e.g.

$ curl --silent "https://opensky-network.org/api/states/all?lamin=37.6&lomin=-122.7&lamax=37.9&lomax=-122.4" | jq '.'{

outputs:

  "time": 1701192699,
  "states": [
    [
      "a03ef7",
      "MXY600  ",
      "United States",
      1701192629,
      1701192685,
      -122.4158,
      37.7275,
      1158.24,
      false,
      145.64,
      297.11,
      14.96,
      null,
      1135.38,
      "3255",
      false,
      0
    ],
    [
      "a65086",
      "DAL977  ",
      "United States",
      1701192604,
      1701192604,
      -122.4645,
      37.7027,
      3352.8,
      false,
      132.14,
      139.74,
      -0.33,
      null,
      3360.42,
      null,
      false,
      0
    ]
  ]
}