How can I change the map and start location in the UAV Package Delivery Example?

Illustration
mh.sayyid - 2023-01-13T12:45:03+00:00
Question: How can I change the map and start location in the UAV Package Delivery Example?

I am looking at the following example from the MathWorks documentation:   I want to modify the map and start location in the model accessed via the command:  >> openExample('uav/UAVPackageDeliveryExample'); How can this be achieved?

Expert Answer

Profile picture of Prashant Kumar Prashant Kumar answered . 2025-11-20

This can most easily be achieved with a MATLAB script. The example code below changes the map to a location in London. 

 

%% Change lat-lon used by QGroundControl map
dict = Simulink.data.dictionary.open('uavPackageDeliveryDataDict.sldd');
sect = getSection(dict, 'Design Data');
latlon = getEntry(sect, 'uavIC_latLon');
 
% Set lat-lon to London, then when you simulate with QGroundControl
% connection, it will show London map. You can then use QGroundControl
% to create and upload new mission in London
setValue(latlon, [51.5072 0]);
 
%% Change initial world position used by low-fidelity model during Simulation
lowFiPlant = 'MultirotorModel/Inner Loop and Plant Model/Low-FidelityModel/Quadrotor Plant';
% Check the world position parameter in block mask
open_system(lowFiPlant);
% Change initial position
set_param(lowFiPlant, "InitialWorldPositionMultirotor", [-60 -182 0]);
 
%% Change initial world position used by high-fidelity model during Simulation
highFidelityInitialConditions = getEntry(sect, 'initialConditions');
ic = getValue(highFidelityInitialConditions);
ic.posNED(:) = [-60 -105 0];
setValue(highFidelityInitialConditions, ic);
In the above script we modified the? parameter "latlon" to select another location with a different [latitude longitude].
 
Additionally, we modified "InitialWorldPositionMultirotor" and "ic.posNed(:)" to choose a different starting position during simulation.


Not satisfied with the answer ?? ASK NOW

Get a Free Consultation or a Sample Assignment Review!