Complete the code to create a new waypoint mission object.
mission = [1]()The WaypointMission class is used to create a new waypoint mission object.
Complete the code to add a waypoint with latitude 37.7749 and longitude -122.4194.
mission.add_waypoint([1](37.7749, -122.4194))
The Waypoint class is used to define a waypoint with specific coordinates.
Fix the error in setting the mission speed to 5 meters per second.
mission.set_speed([1])The speed should be set as a numeric value without quotes or units.
Fill both blanks to set the mission altitude to 100 meters and enable auto-return.
mission.set_altitude([1]) mission.[2] = True
Altitude is set by passing the number 100. The auto-return feature is enabled by setting auto_return to True.
Fill all three blanks to create a mission with waypoints, set speed, and start the mission.
mission = [1]() mission.add_waypoint([2](34.0522, -118.2437)) mission.set_speed([3]) mission.start()
Create a WaypointMission object, add a Waypoint with coordinates, set speed to 10, then start the mission.