I have been trying out DroneKit Python and have been working with some of the examples provided. Having got to a point of some knowledge of working with DroneKit I have started writing some python code to perform a single mission. My only problem is that the start location for my missions are always defaulting to Lat = -35.3632605, Lon = 149.1652287
- even though I have set the home location to the following:
start_location = LocationGlobal(51.945102, -2.074558, 10)
vehicle.home_location = start_location
Is there something else in the api I am missing out on doing in order to set the start location of the drone in the simulation environment?