From 22f1ebd3a6cf63c974aeba7dfd7d0561f50c6517 Mon Sep 17 00:00:00 2001 From: martin <martin> Date: Tue, 2 Jun 2009 22:17:54 +0000 Subject: [PATCH] Add aircraft mapping between different nomenclatures - ICAO, SISO, FlightGear, .... - to help different flavours of flight simulation software to communicate in a single simulation environment. --- MP/00README | 4 ++++ MP/aircraft_types.xml | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 MP/00README create mode 100644 MP/aircraft_types.xml diff --git a/MP/00README b/MP/00README new file mode 100644 index 000000000..bc99f157c --- /dev/null +++ b/MP/00README @@ -0,0 +1,4 @@ +aircraft_types.xml: List to map aircraft types between different + nomenclatures systems (ICAO, SISO, FlightGear, ....) to help different + flavours of flight simulation software to communicate in a single + simulation enviromnent. diff --git a/MP/aircraft_types.xml b/MP/aircraft_types.xml new file mode 100644 index 000000000..1f88cf480 --- /dev/null +++ b/MP/aircraft_types.xml @@ -0,0 +1,32 @@ +<?xml version="1.0"?> +<!-- + AircraftTypes.xml - List of aircraft type identifiers + http://virtualair.sourceforge.net + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License version 2.1, as published by the Free Software Foundation. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + Copyright (C) 2008 Petr Gotthard <petr.gotthard@centrum.cz> + + $Id$ +--> +<AircraftTypes> + <!-- + <Type ICAO="xx" SISO="xx" FlightGear="xx"/> + @ICAO = ICAO-4444/ICAO-8643 identifier of the aircraft equipment type + @SISO = SISO-REF-010 entity-type identifier of the aircraft + @FSX = container title for the Microsoft Flight Simulator X (aircraft.cfg) + @FlightGear = the FlightGear aircraft model configuration file (.xml) + --> + <Type ICAO="A320" SISO="1.2.71.57.1.1.0" FlightGear="Aircraft/A320/Models/a320-fb.xml"/> + <Type ICAO="B733" SISO="1.2.225.57.1.7.0" FlightGear="Aircraft/737-300/Models/737-300.xml"/> + <Type ICAO="B742" SISO="1.2.225.57.1.1.0" FlightGear="Aircraft/747-200/Models/boeing747-200.xml"/> + <Type ICAO="C172" SISO="1.2.225.40.1.1.0" FSX="Cessna Skyhawk 172SP" FlightGear="Aircraft/c172p/Models/c172p.xml"/> + <Type ICAO="UFO" SISO="1.2.0.0.0.0.0" FlightGear="Aircraft/ufo/Models/ufo.xml"/> +</AircraftTypes>