This endpoint allows getting the predicted flight path for a given mission. It accepts no query parameters, but requires a mission id to be passed into the url.
This endpoint accepts no query parameters. The mission_id must be provided in the URL path.
| Name | Type | Description |
|---|---|---|
| mission_id Required | string | The mission for which to obtain predicted flight path. |
| save_to_file Required | string | Path to save the response data, which may end in either .csv or .json |
| Name | Type | Description |
|---|---|---|
| mission_id Required | string | The mission for which to obtain predicted flight path. |
| output_file Optional | string | Optional. Path to save the response data. If provided, saves the data in CSV or JSON format. |
| print_response Optional | boolean | If True, prints the response data. |
Returns an array of points representing the predicted flight path for the mission.
| Name | Type | Description | Format |
|---|---|---|---|
| prediction | array | An array of points along the predicted flight path | - |
| time | string | An ISO 8601 timestamp of when the balloon will be at this location | ISO 8601 |
| latitude | numeric | Latitude of where the balloon will be for this point | - |
| longitude | numeric | Longitude of where the balloon will be for this point | - |
| altitude | numeric | Altitude in meters of where the balloon will be for this point | meters |