예제 #1
0
 /// <summary>
 /// Retrieve the trajectory for a certain aircraft at a given time. The trajectory is a list of waypoints containing position, barometric altitude, true track and an on-ground flag.
 /// </summary>
 public TrackByAircraftResponseModel GetTrackByAircraft(TrackByAircraftRequestModel requestModel)
 {
     return(GetTrackByAircraftAsync(requestModel).Result);
 }
예제 #2
0
 /// <summary>
 /// Retrieve the trajectory for a certain aircraft at a given time. The trajectory is a list of waypoints containing position, barometric altitude, true track and an on-ground flag.
 /// </summary>
 public async Task <TrackByAircraftResponseModel> GetTrackByAircraftAsync(TrackByAircraftRequestModel requestModel)
 {
     return(await GetAsync <TrackByAircraftRequestModel, TrackByAircraftCommand, TrackByAircraftResponseModel>(requestModel));
 }