instruction stringclasses 1
value | input stringlengths 13 72 | output stringlengths 187 290 |
|---|---|---|
Generate pymavlink commands for the following mission: | Fly to latitude 8.218426, longitude 110.389956 at 126 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
8.218426, # Latitude
110.389956, # Longitude
126 # Altitude
) |
Generate pymavlink commands for the following mission: | Disarm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
0, # Disarm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude 6.339783, longitude -126.116298 at 37 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
6.339783, # Latitude
-126.116298, # Longitude
37 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 49.759524, longitude -36.016434 at 42 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
49.759524, # Latitude
-36.016434, # Longitude
42 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 34.355963, longitude -47.303985 at 96 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
34.355963, # Latitude
-47.303985, # Longitude
96 # Altitude
) |
Generate pymavlink commands for the following mission: | Disarm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
0, # Disarm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude 73.429721, longitude 99.080187 at 328 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
73.429721, # Latitude
99.080187, # Longitude
328 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 66.060104, longitude -145.079348 at 468 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
66.060104, # Latitude
-145.079348, # Longitude
468 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 4.356194, longitude -75.325831 at 150 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
4.356194, # Latitude
-75.325831, # Longitude
150 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -71.079104, longitude -1.378901 at 492 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-71.079104, # Latitude
-1.378901, # Longitude
492 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -17.319685, longitude -48.859028 at 413 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-17.319685, # Latitude
-48.859028, # Longitude
413 # Altitude
) |
Generate pymavlink commands for the following mission: | Take off to 50 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_TAKEOFF,
0, # Confirmation
0, 0, 0, 0, 0, 0, 50 # Altitude
) |
Generate pymavlink commands for the following mission: | Take off to 50 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_TAKEOFF,
0, # Confirmation
0, 0, 0, 0, 0, 0, 50 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 76.426087, longitude 109.870891 at 408 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
76.426087, # Latitude
109.870891, # Longitude
408 # Altitude
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude -39.858036, longitude 25.170277 at 308 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-39.858036, # Latitude
25.170277, # Longitude
308 # Altitude
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude -77.268971, longitude -110.738235 at 332 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-77.268971, # Latitude
-110.738235, # Longitude
332 # Altitude
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Fly to latitude 63.119954, longitude 62.506647 at 297 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
63.119954, # Latitude
62.506647, # Longitude
297 # Altitude
) |
Generate pymavlink commands for the following mission: | Take off to 50 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_TAKEOFF,
0, # Confirmation
0, 0, 0, 0, 0, 0, 50 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 64.559143, longitude -113.517362 at 89 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
64.559143, # Latitude
-113.517362, # Longitude
89 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 50.900029, longitude 63.045179 at 476 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
50.900029, # Latitude
63.045179, # Longitude
476 # Altitude
) |
Generate pymavlink commands for the following mission: | Take off to 50 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_TAKEOFF,
0, # Confirmation
0, 0, 0, 0, 0, 0, 50 # Altitude
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude -9.741405, longitude -149.637085 at 405 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-9.741405, # Latitude
-149.637085, # Longitude
405 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -36.759932, longitude -9.784486 at 415 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-36.759932, # Latitude
-9.784486, # Longitude
415 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 81.350883, longitude -82.883652 at 24 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
81.350883, # Latitude
-82.883652, # Longitude
24 # Altitude
) |
Generate pymavlink commands for the following mission: | Disarm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
0, # Disarm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude 16.325709, longitude 97.806597 at 382 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
16.325709, # Latitude
97.806597, # Longitude
382 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 11.478904, longitude -32.358951 at 468 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
11.478904, # Latitude
-32.358951, # Longitude
468 # Altitude
) |
Generate pymavlink commands for the following mission: | Disarm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
0, # Disarm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude -84.141623, longitude -55.181715 at 47 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-84.141623, # Latitude
-55.181715, # Longitude
47 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -7.324057, longitude -100.164947 at 236 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-7.324057, # Latitude
-100.164947, # Longitude
236 # Altitude
) |
Generate pymavlink commands for the following mission: | Disarm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
0, # Disarm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Fly to latitude 2.154993, longitude -26.629765 at 110 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
2.154993, # Latitude
-26.629765, # Longitude
110 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -77.689843, longitude -91.860128 at 228 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-77.689843, # Latitude
-91.860128, # Longitude
228 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 22.054169, longitude 8.522756 at 237 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
22.054169, # Latitude
8.522756, # Longitude
237 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -81.381698, longitude 61.399636 at 403 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-81.381698, # Latitude
61.399636, # Longitude
403 # Altitude
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude 88.948725, longitude 65.771483 at 409 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
88.948725, # Latitude
65.771483, # Longitude
409 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -0.113951, longitude -74.506422 at 105 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-0.113951, # Latitude
-74.506422, # Longitude
105 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -9.109614, longitude -53.490342 at 365 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-9.109614, # Latitude
-53.490342, # Longitude
365 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -50.015174, longitude 51.891131 at 389 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-50.015174, # Latitude
51.891131, # Longitude
389 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -80.521778, longitude -134.12106 at 307 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-80.521778, # Latitude
-134.12106, # Longitude
307 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -18.19182, longitude 44.640371 at 351 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-18.19182, # Latitude
44.640371, # Longitude
351 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 62.214578, longitude -6.638024 at 284 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
62.214578, # Latitude
-6.638024, # Longitude
284 # Altitude
) |
Generate pymavlink commands for the following mission: | Take off to 50 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_TAKEOFF,
0, # Confirmation
0, 0, 0, 0, 0, 0, 50 # Altitude
) |
Generate pymavlink commands for the following mission: | Take off to 50 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_TAKEOFF,
0, # Confirmation
0, 0, 0, 0, 0, 0, 50 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -40.766945, longitude 148.925745 at 367 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-40.766945, # Latitude
148.925745, # Longitude
367 # Altitude
) |
Generate pymavlink commands for the following mission: | Disarm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
0, # Disarm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude -53.058669, longitude 91.114335 at 415 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-53.058669, # Latitude
91.114335, # Longitude
415 # Altitude
) |
Generate pymavlink commands for the following mission: | Take off to 50 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_TAKEOFF,
0, # Confirmation
0, 0, 0, 0, 0, 0, 50 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -64.964129, longitude 70.703399 at 162 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-64.964129, # Latitude
70.703399, # Longitude
162 # Altitude
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude 28.849663, longitude 36.757616 at 389 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
28.849663, # Latitude
36.757616, # Longitude
389 # Altitude
) |
Generate pymavlink commands for the following mission: | Disarm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
0, # Disarm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude -78.472194, longitude 92.640583 at 342 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-78.472194, # Latitude
92.640583, # Longitude
342 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 30.620735, longitude -45.917973 at 382 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
30.620735, # Latitude
-45.917973, # Longitude
382 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 49.931408, longitude -140.142797 at 433 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
49.931408, # Latitude
-140.142797, # Longitude
433 # Altitude
) |
Generate pymavlink commands for the following mission: | Take off to 50 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_TAKEOFF,
0, # Confirmation
0, 0, 0, 0, 0, 0, 50 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 71.596378, longitude -25.565559 at 324 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
71.596378, # Latitude
-25.565559, # Longitude
324 # Altitude
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Fly to latitude -9.264176, longitude -177.057541 at 328 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-9.264176, # Latitude
-177.057541, # Longitude
328 # Altitude
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Fly to latitude -80.653584, longitude -112.749005 at 247 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-80.653584, # Latitude
-112.749005, # Longitude
247 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -69.293248, longitude -130.470112 at 188 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-69.293248, # Latitude
-130.470112, # Longitude
188 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -59.086924, longitude 83.503622 at 500 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-59.086924, # Latitude
83.503622, # Longitude
500 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 72.17021, longitude 97.298133 at 171 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
72.17021, # Latitude
97.298133, # Longitude
171 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 15.161986, longitude 162.286309 at 336 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
15.161986, # Latitude
162.286309, # Longitude
336 # Altitude
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude 39.948537, longitude -40.144943 at 382 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
39.948537, # Latitude
-40.144943, # Longitude
382 # Altitude
) |
Generate pymavlink commands for the following mission: | Take off to 50 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_TAKEOFF,
0, # Confirmation
0, 0, 0, 0, 0, 0, 50 # Altitude
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Fly to latitude -39.129982, longitude 4.545512 at 139 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-39.129982, # Latitude
4.545512, # Longitude
139 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 37.062349, longitude 177.264673 at 373 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
37.062349, # Latitude
177.264673, # Longitude
373 # Altitude
) |
Generate pymavlink commands for the following mission: | Take off to 50 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_TAKEOFF,
0, # Confirmation
0, 0, 0, 0, 0, 0, 50 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 65.271084, longitude 64.750067 at 446 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
65.271084, # Latitude
64.750067, # Longitude
446 # Altitude
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude 61.884087, longitude -103.506265 at 7 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
61.884087, # Latitude
-103.506265, # Longitude
7 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -21.844396, longitude -31.662696 at 312 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-21.844396, # Latitude
-31.662696, # Longitude
312 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -19.503455, longitude 146.9652 at 275 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-19.503455, # Latitude
146.9652, # Longitude
275 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude -37.418665, longitude -139.581955 at 291 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-37.418665, # Latitude
-139.581955, # Longitude
291 # Altitude
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude -66.217541, longitude 153.088066 at 230 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
-66.217541, # Latitude
153.088066, # Longitude
230 # Altitude
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Fly to latitude 68.803737, longitude 88.19907 at 375 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
68.803737, # Latitude
88.19907, # Longitude
375 # Altitude
) |
Generate pymavlink commands for the following mission: | Fly to latitude 69.269031, longitude -22.594161 at 300 meters altitude | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_WAYPOINT,
0, # Confirmation
0, # Delay in seconds
0, 0, 0, # Unused parameters
69.269031, # Latitude
-22.594161, # Longitude
300 # Altitude
) |
Generate pymavlink commands for the following mission: | Disarm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
0, # Disarm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Land the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_NAV_LAND,
0, # Confirmation
0, 0, 0, 0, 0, 0, 0 # Coordinates and altitude not specified
) |
Generate pymavlink commands for the following mission: | Disarm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
0, # Disarm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
Generate pymavlink commands for the following mission: | Arm the drone | master.mav.command_long_send(
master.target_system,
master.target_component,
mavutil.mavlink.MAV_CMD_COMPONENT_ARM_DISARM,
0, # Confirmation
1, # Arm
0, 0, 0, 0, 0, 0 # Unused parameters
) |
End of preview. Expand in Data Studio
No dataset card yet
- Downloads last month
- 26