Recall & Review
beginner
What does the
goto() command do in drone programming?The
goto() command tells the drone to fly to a specific location or set of coordinates.Click to reveal answer
beginner
How do you specify the destination in the
goto() command?You specify the destination by giving coordinates like latitude, longitude, and sometimes altitude.
Click to reveal answer
intermediate
Why is it important to check the drone's current position before using
goto()?Because the drone needs to know where it is to plan the best path to the destination safely.
Click to reveal answer
intermediate
Can the
goto() command be used to navigate to moving targets?Usually,
goto() is for fixed points. For moving targets, more advanced tracking commands are needed.Click to reveal answer
advanced
What happens if the drone encounters an obstacle while executing
goto()?The drone may stop, avoid the obstacle if programmed, or return to a safe point depending on its obstacle avoidance system.
Click to reveal answer
What parameters are typically needed for the
goto() command?✗ Incorrect
The
goto() command requires coordinates like latitude, longitude, and altitude to navigate.If a drone is at position A and you use
goto() to position B, what does the drone do?✗ Incorrect
The drone flies from its current position to the specified destination using
goto().Which of these is NOT a typical use of
goto() in drone programming?✗ Incorrect
goto() is for fixed points, not for tracking moving objects.What should you do before using
goto() to ensure safe navigation?✗ Incorrect
Checking position and battery helps ensure the drone can safely reach the destination.
If the drone encounters an obstacle during
goto(), what is a possible behavior?✗ Incorrect
Drones with obstacle avoidance will try to avoid or stop to prevent crashes.
Explain how the
goto() command works for drone navigation.Think about how you tell a friend to go somewhere using an address.
You got /3 concepts.
Describe safety checks you should do before using
goto() in a drone program.Like checking your car's fuel and route before a trip.
You got /3 concepts.