Code covered by the BSD License  

Highlights from
FlightGear Route Manager

image thumbnail
from FlightGear Route Manager by Johann Schweikl
Matlab functions accessing FlightGear to remotely control an aircraft's route and track its position

pop_wp(host, port)
function pop_wp(host, port)
% POP_WP(HOST, PORT)
% 
% Pops current waypoint in Flightgear over socket connection
% (HOST, PORT).
% Run Flightgear on HOST (e.g. '127.0.0.1' = localhost) with
% parameter "--props = PORT".

import java.net.Socket
import java.io.*

fg_socket = Socket(host, port);
out = PrintWriter(fg_socket.getOutputStream(), true);


out.println(sprintf('set /autopilot/route-manager/input @pop\r\n'));


out.close();
fg_socket.close();

end

Contact us at files@mathworks.com