Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Data Structures

Aden Chan edited this page Feb 4, 2023 · 3 revisions

AircraftStatus

Name Type Comments
Velocity int
Longitude string
Latitude float
Altitude float
Heading float
BatteryVoltage float

Waypoint

Name Type Comments
ID int Auto-generated
Name string
Longitude float
Latitude float
Altitude null.Float Can be null

JSON Representation

{
    "id": 1,
    "name": "Alpha",
    "longitude": 1.234,
    "latitude": 1.234,
    "altitude": null
}

Related Endpoints

  • [GET] /waypoints
  • [POST] /waypoints

AEACRoute

Name Type Comments
ID int Auto-generated
Number int
StartWaypoint string Waypoint Name
EndWaypoint string Waypoint Name
Passengers int
MaxVehicleWeight float
Value float
Remarks string
Order int

New GCOM Structures

Clone this wiki locally