<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.flightgear.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Psnarf</id>
	<title>FlightGear wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.flightgear.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Psnarf"/>
	<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/Special:Contributions/Psnarf"/>
	<updated>2026-04-15T04:13:52Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Flightplan_XML_formats&amp;diff=133402</id>
		<title>Flightplan XML formats</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Flightplan_XML_formats&amp;diff=133402"/>
		<updated>2021-10-10T20:48:27Z</updated>

		<summary type="html">&lt;p&gt;Psnarf: correct mis-matched tags - flaps and gear down&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;FlightGear use a few different '''flightplan XML formats''' stored in property-list xml files.  Due to different needs the flightplans used in the route manager and AI scenarios and have different formats.&lt;br /&gt;
&lt;br /&gt;
== AI flightplans ==&lt;br /&gt;
{{see also|AI Scenarios#Flightplans and Their Waypoints|AI groundvehicles#The flightplan}}&lt;br /&gt;
&lt;br /&gt;
These flightplans contain only waypoints.  By tying an AI flightplan to an AI model in a scenario xml file, an AI scenario will be created.&lt;br /&gt;
&lt;br /&gt;
=== Waypoint tags ===&lt;br /&gt;
Each waypoint can contain the following tags:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Tag !! Type !! Use !! Remarks&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;name&amp;amp;gt;&amp;lt;/code&amp;gt; || string || Waypoint name || The last waypoint use &amp;lt;code&amp;gt;EOF&amp;lt;/code&amp;gt;, or if the AI model is to be deleted &amp;lt;code&amp;gt;END&amp;lt;/code&amp;gt;.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;lat&amp;amp;gt;&amp;lt;/code&amp;gt; || double || Latitude, decimal degrees ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;lon&amp;amp;gt;&amp;lt;/code&amp;gt; || double || Longitude, decimal degrees ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;alt&amp;amp;gt;&amp;lt;/code&amp;gt; || double || Altitude above mean sea level, feet ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;crossat&amp;amp;gt;&amp;lt;/code&amp;gt; || double || Crossing altitude, feet ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;ktas&amp;amp;gt;&amp;lt;/code&amp;gt; || double || True air speed, knots ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;on-ground&amp;amp;gt;&amp;lt;/code&amp;gt; || bool || Set to &amp;lt;code&amp;gt;true&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;1&amp;lt;/code&amp;gt; if on ground&lt;br /&gt;
&lt;br /&gt;
Set to &amp;lt;code&amp;gt;false&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;0&amp;lt;/code&amp;gt; if in air or in a tunnel&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;gear-down&amp;amp;gt;&amp;lt;/code&amp;gt; || double || &amp;lt;code&amp;gt;true&amp;lt;/code&amp;gt; for gear down&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;false&amp;lt;/code&amp;gt; for gear up&lt;br /&gt;
| Or any number between 0 and 1&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;flaps-down&amp;amp;gt;&amp;lt;/code&amp;gt; || double || &amp;lt;code&amp;gt;true&amp;lt;/code&amp;gt; for flaps down&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;false&amp;lt;/code&amp;gt; for flaps up&lt;br /&gt;
| Or any number between 0 and 1&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Example ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;PropertyList&amp;gt;&lt;br /&gt;
  &amp;lt;flightplan&amp;gt;&lt;br /&gt;
    &amp;lt;wpt&amp;gt;&lt;br /&gt;
      &amp;lt;name&amp;gt;First!&amp;lt;/name&amp;gt;&lt;br /&gt;
      &amp;lt;lat&amp;gt;53.6762&amp;lt;/lat&amp;gt;&lt;br /&gt;
      &amp;lt;lon&amp;gt;-1.39984&amp;lt;/lon&amp;gt;&lt;br /&gt;
      &amp;lt;alt&amp;gt;1000&amp;lt;/alt&amp;gt;&lt;br /&gt;
      &amp;lt;ktas&amp;gt;120&amp;lt;/ktas&amp;gt;&lt;br /&gt;
      &amp;lt;on-ground&amp;gt;false&amp;lt;/on-ground&amp;gt;&lt;br /&gt;
      &amp;lt;gear-down&amp;gt;1&amp;lt;/gear-down&amp;gt;&lt;br /&gt;
      &amp;lt;flaps-down&amp;gt;0.25&amp;lt;/flaps-down&amp;gt;&lt;br /&gt;
    &amp;lt;/wpt&amp;gt;&lt;br /&gt;
    ...&lt;br /&gt;
    &amp;lt;wpt&amp;gt;&lt;br /&gt;
      &amp;lt;name&amp;gt;END&amp;lt;/name&amp;gt;&lt;br /&gt;
    &amp;lt;/wpt&amp;gt;&lt;br /&gt;
  &amp;lt;/flightplan&amp;gt;&lt;br /&gt;
&amp;lt;/PropertyList&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Route manager flightplans ==&lt;br /&gt;
:''See also [[Route manager#Defining a Route]].''&lt;br /&gt;
&lt;br /&gt;
Route manager waypoints are a bit more complex, for starters they contain departure and destination information and not just one type of waypoint.&lt;br /&gt;
&lt;br /&gt;
Note that the first and last waypoint are the departure and destination airports.&lt;br /&gt;
&lt;br /&gt;
There is also support for Level-D 767 SID:s and STAR:s in FlightGear.&lt;br /&gt;
&lt;br /&gt;
=== Departure and destination tags ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Tag !! Type !! Use !! Remarks&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;airport&amp;amp;gt;&amp;lt;/code&amp;gt; || string || The ICAO identifier of the airport ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;sid&amp;amp;gt;&amp;lt;/code&amp;gt; || string || Any available SID ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;star&amp;amp;gt;&amp;lt;/code&amp;gt; || string || Any available STAR ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;transition&amp;amp;gt;&amp;lt;/code&amp;gt; || string ||  ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;runway&amp;amp;gt;&amp;lt;/code&amp;gt; || string || Departure or destination runway ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Waypoint types and tags ===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Tag !! Type !! Use !! Remarks&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;type&amp;amp;gt;&amp;lt;/code&amp;gt; || string || Type of waypoint. Either &amp;lt;code&amp;gt;runway&amp;lt;/code&amp;gt;, &amp;lt;code&amp;gt;navaid&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;offset-navaid&amp;lt;/code&amp;gt; ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;alt-restrict&amp;amp;gt;&amp;lt;/code&amp;gt; || string ||  ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;altitude-ft&amp;amp;gt;&amp;lt;/code&amp;gt; || double || Altitude in feet ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;ident&amp;amp;gt;&amp;lt;/code&amp;gt; || string || If &amp;lt;code&amp;gt;&amp;amp;lt;type&amp;amp;gt;&amp;lt;/code&amp;gt; is &lt;br /&gt;
: &amp;lt;code&amp;gt;runway&amp;lt;/code&amp;gt;:  The departure or destination airport's runway number. Accompanied in the waypoint by the &amp;lt;code&amp;gt;&amp;amp;lt;icao&amp;amp;gt;&amp;lt;/code&amp;gt; tag.&lt;br /&gt;
: &amp;lt;code&amp;gt;navaid&amp;lt;/code&amp;gt;:  Any significant point along the route. Both airports, navaids and fixes.&lt;br /&gt;
: &amp;lt;code&amp;gt;offset-navaid&amp;lt;/code&amp;gt;:  An point offset from a navaid by a bearing and distance. Note that true bearings are used here.&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;icao&amp;amp;gt;&amp;lt;/code&amp;gt; || string || ICAO code of an airport || Used only if &amp;lt;code&amp;gt;&amp;amp;lt;type&amp;amp;gt;&amp;lt;/code&amp;gt; is &amp;lt;code&amp;gt;runway&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;lon&amp;amp;gt;&amp;lt;/code&amp;gt; || double || Longitude of the waypoint in decimal degrees ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;lat&amp;amp;gt;&amp;lt;/code&amp;gt; || double || Latitude of the waypoint in decimal degrees ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;radial-deg&amp;amp;gt;&amp;lt;/code&amp;gt; || double || True bearing from a navaid, fix or airport || {{inote|Radials on charts are magnetic!}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;&amp;amp;lt;distance-nm&amp;amp;gt;&amp;lt;/code&amp;gt; || double || Distance from a navaid, fix or airport ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Example ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;PropertyList&amp;gt;&lt;br /&gt;
  &amp;lt;version type=&amp;quot;int&amp;quot;&amp;gt;2&amp;lt;/version&amp;gt;&lt;br /&gt;
  &amp;lt;departure&amp;gt;&lt;br /&gt;
    &amp;lt;airport type=&amp;quot;string&amp;quot;&amp;gt;KOAK&amp;lt;/airport&amp;gt;&lt;br /&gt;
    &amp;lt;sid type=&amp;quot;string&amp;quot;&amp;gt;(none)&amp;lt;/sid&amp;gt;&lt;br /&gt;
    &amp;lt;runway type=&amp;quot;string&amp;quot;&amp;gt;29&amp;lt;/runway&amp;gt;&lt;br /&gt;
  &amp;lt;/departure&amp;gt;&lt;br /&gt;
  &amp;lt;destination&amp;gt;&lt;br /&gt;
    &amp;lt;airport type=&amp;quot;string&amp;quot;&amp;gt;KSJC&amp;lt;/airport&amp;gt;&lt;br /&gt;
    &amp;lt;star type=&amp;quot;string&amp;quot;&amp;gt;(none)&amp;lt;/star&amp;gt;&lt;br /&gt;
    &amp;lt;transition type=&amp;quot;string&amp;quot;&amp;gt;&amp;lt;/transition&amp;gt;&lt;br /&gt;
    &amp;lt;runway type=&amp;quot;string&amp;quot;&amp;gt;11&amp;lt;/runway&amp;gt;&lt;br /&gt;
  &amp;lt;/destination&amp;gt;&lt;br /&gt;
  &amp;lt;route&amp;gt;&lt;br /&gt;
    &amp;lt;wp&amp;gt;&lt;br /&gt;
      &amp;lt;type type=&amp;quot;string&amp;quot;&amp;gt;runway&amp;lt;/type&amp;gt;&lt;br /&gt;
      &amp;lt;departure type=&amp;quot;bool&amp;quot;&amp;gt;true&amp;lt;/departure&amp;gt;&lt;br /&gt;
      &amp;lt;generated type=&amp;quot;bool&amp;quot;&amp;gt;true&amp;lt;/generated&amp;gt;&lt;br /&gt;
      &amp;lt;ident type=&amp;quot;string&amp;quot;&amp;gt;29&amp;lt;/ident&amp;gt;&lt;br /&gt;
      &amp;lt;icao type=&amp;quot;string&amp;quot;&amp;gt;KOAK&amp;lt;/icao&amp;gt;&lt;br /&gt;
    &amp;lt;/wp&amp;gt;&lt;br /&gt;
    &amp;lt;wp n=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;type type=&amp;quot;string&amp;quot;&amp;gt;offset-navaid&amp;lt;/type&amp;gt;&lt;br /&gt;
      &amp;lt;alt-restrict type=&amp;quot;string&amp;quot;&amp;gt;at&amp;lt;/alt-restrict&amp;gt;&lt;br /&gt;
      &amp;lt;altitude-ft type=&amp;quot;double&amp;quot;&amp;gt;7500&amp;lt;/altitude-ft&amp;gt;&lt;br /&gt;
      &amp;lt;ident type=&amp;quot;string&amp;quot;&amp;gt;SFO&amp;lt;/ident&amp;gt;&lt;br /&gt;
      &amp;lt;lon type=&amp;quot;double&amp;quot;&amp;gt;-122.3738889&amp;lt;/lon&amp;gt;&lt;br /&gt;
      &amp;lt;lat type=&amp;quot;double&amp;quot;&amp;gt;37.61947222&amp;lt;/lat&amp;gt;&lt;br /&gt;
      &amp;lt;radial-deg type=&amp;quot;double&amp;quot;&amp;gt;88.22972768&amp;lt;/radial-deg&amp;gt;&lt;br /&gt;
      &amp;lt;distance-nm type=&amp;quot;double&amp;quot;&amp;gt;16&amp;lt;/distance-nm&amp;gt;&lt;br /&gt;
    &amp;lt;/wp&amp;gt;&lt;br /&gt;
    &amp;lt;wp n=&amp;quot;2&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;type type=&amp;quot;string&amp;quot;&amp;gt;navaid&amp;lt;/type&amp;gt;&lt;br /&gt;
      &amp;lt;alt-restrict type=&amp;quot;string&amp;quot;&amp;gt;at&amp;lt;/alt-restrict&amp;gt;&lt;br /&gt;
      &amp;lt;altitude-ft type=&amp;quot;double&amp;quot;&amp;gt;10000&amp;lt;/altitude-ft&amp;gt;&lt;br /&gt;
      &amp;lt;ident type=&amp;quot;string&amp;quot;&amp;gt;MISON&amp;lt;/ident&amp;gt;&lt;br /&gt;
      &amp;lt;lon type=&amp;quot;double&amp;quot;&amp;gt;-121.890306&amp;lt;/lon&amp;gt;&lt;br /&gt;
      &amp;lt;lat type=&amp;quot;double&amp;quot;&amp;gt;37.496806&amp;lt;/lat&amp;gt;&lt;br /&gt;
    &amp;lt;/wp&amp;gt;&lt;br /&gt;
    &amp;lt;wp n=&amp;quot;3&amp;quot;&amp;gt;&lt;br /&gt;
      &amp;lt;type type=&amp;quot;string&amp;quot;&amp;gt;runway&amp;lt;/type&amp;gt;&lt;br /&gt;
      &amp;lt;arrival type=&amp;quot;bool&amp;quot;&amp;gt;true&amp;lt;/arrival&amp;gt;&lt;br /&gt;
      &amp;lt;generated type=&amp;quot;bool&amp;quot;&amp;gt;true&amp;lt;/generated&amp;gt;&lt;br /&gt;
      &amp;lt;ident type=&amp;quot;string&amp;quot;&amp;gt;11&amp;lt;/ident&amp;gt;&lt;br /&gt;
      &amp;lt;icao type=&amp;quot;string&amp;quot;&amp;gt;KSJC&amp;lt;/icao&amp;gt;&lt;br /&gt;
    &amp;lt;/wp&amp;gt;&lt;br /&gt;
  &amp;lt;/route&amp;gt;&lt;br /&gt;
&amp;lt;/PropertyList&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Using the flightplans in FlightGear ==&lt;br /&gt;
=== Through the route manager ===&lt;br /&gt;
{{main article|Route manager}}&lt;br /&gt;
&lt;br /&gt;
=== For AI models ===&lt;br /&gt;
{{main article|AI Systems#AI Models}}&lt;br /&gt;
&lt;br /&gt;
== Related content ==&lt;br /&gt;
=== Wiki articles ===&lt;br /&gt;
* [[Howto:Add procedures to the route manager]]&lt;br /&gt;
* [[AI Systems]]&lt;br /&gt;
* [[Howto:Create a flightplan]] – Contains no information whatsoever on using flightplans in FlightGear though.&lt;br /&gt;
* [[AI Traffic#An example of a traffic file]] – Not flightplans per see as they only cover cruise altitude and departure and destination airport.&lt;br /&gt;
* [[List of Nasal extension functions#flightplan()]]&lt;br /&gt;
* [[Nasal Flightplan]]&lt;br /&gt;
* [[PropertyList XML File]]&lt;br /&gt;
* [[UFO from the 'White Project' of the UNESCO]]&lt;br /&gt;
&lt;br /&gt;
=== Source code ===&lt;br /&gt;
==== AI flightplans ====&lt;br /&gt;
* {{flightgear source|src/AIModel/AIFlightPlan.hxx}}&lt;br /&gt;
* {{flightgear source|src/AIModel/AIFlightPlan.cxx}}&lt;br /&gt;
* {{flightgear source|src/Navaids/FlightPlan.hxx}}&lt;br /&gt;
* {{flightgear source|src/Navaids/FlightPlan.cxx}}&lt;br /&gt;
&lt;br /&gt;
==== Route manager flightplans ====&lt;br /&gt;
* {{flightgear source|src/Autopilot/route_mgr.hxx}}&lt;br /&gt;
* {{flightgear source|src/Autopilot/route_mgr.cxx}}&lt;br /&gt;
&lt;br /&gt;
[[Category:XML]]&lt;br /&gt;
[[Category:AI Traffic]]&lt;br /&gt;
[[Category:Autoflight]]&lt;/div&gt;</summary>
		<author><name>Psnarf</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Talk:Boeing_787-8_Dreamliner:_Operating_manual_and_checklists&amp;diff=133268</id>
		<title>Talk:Boeing 787-8 Dreamliner: Operating manual and checklists</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Talk:Boeing_787-8_Dreamliner:_Operating_manual_and_checklists&amp;diff=133268"/>
		<updated>2021-10-03T00:44:08Z</updated>

		<summary type="html">&lt;p&gt;Psnarf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An obvious question to this aircraft (following the checklist) is where is the Parking Brake?! And how do we know if it is set or not? ~BlueRain&lt;br /&gt;
&lt;br /&gt;
    Upper-case 'B' toggles it. The message on the co-pilot side always reads Parking Brake Set. Like most aircraft, they are in various stages of development. Someone might volunteer to test each aircraft and report what works and what is left to do. Recall folks work on Flight Gear in their spare time, much like a hobby. An obvious question to all aircraft is who is going to volunteer to do what needs to be done. [[User:Psnarf|Psnarf]] ([[User talk:Psnarf|talk]]) 00:43, 3 October 2021 (UTC)&lt;/div&gt;</summary>
		<author><name>Psnarf</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Talk:A380_Tutorial&amp;diff=133218</id>
		<title>Talk:A380 Tutorial</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Talk:A380_Tutorial&amp;diff=133218"/>
		<updated>2021-09-29T02:05:56Z</updated>

		<summary type="html">&lt;p&gt;Psnarf: Add current database info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello to everyone!&lt;br /&gt;
I can only download the SID/STAR by paying a fee (of course I did not, I want to fly free!)&lt;br /&gt;
My experience depends on this tutorial, which seems to be old- because I can not find the top-button called SID/STAR on this website. Is anybody of you able to find a good website, where we can download the SID/STAR for free, so that we can change this article :)&lt;br /&gt;
bye for now&lt;br /&gt;
EDDM08R&lt;br /&gt;
&lt;br /&gt;
UPDATE:&lt;br /&gt;
&lt;br /&gt;
I found a website:&lt;br /&gt;
http://www.findthatfile.com/search-11288382-hZIP/winrar-winzip-download-lds767-aio-individual-xml-airports-zip.htm&lt;br /&gt;
&lt;br /&gt;
WHAT DO YOU THINK?&lt;br /&gt;
&lt;br /&gt;
=-=-=-=-=-=-=-=&lt;br /&gt;
UPDATE 09/28/21&lt;br /&gt;
FlightAware.com has current free Stars, IAP, DP plates.&lt;br /&gt;
&lt;br /&gt;
I use the following to generate an fgfs flight plan, get the Airport Diagram to fill in the Radio NAV/DME, get the Departure/Arrival plates for the fix names and altitudes for the approach to line up with the runway, which I look up and add to the .fgfs plan with a text editor. The Launcher tries to generate that info, but current plates are a safer choice to program the autopilot for landing.&lt;br /&gt;
# https://flightplandatabase.com&lt;br /&gt;
# https://flightaware.com  - Enter the airport, download the Diagram, IFR Departure and Arrival plates&lt;br /&gt;
# https://airportguide.com/search/airspace-fix-search/&lt;br /&gt;
[[User:Psnarf|Psnarf]] ([[User talk:Psnarf|talk]]) 02:05, 29 September 2021 (UTC)&lt;/div&gt;</summary>
		<author><name>Psnarf</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Talk:Boeing_787-8_Dreamliner&amp;diff=132856</id>
		<title>Talk:Boeing 787-8 Dreamliner</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Talk:Boeing_787-8_Dreamliner&amp;diff=132856"/>
		<updated>2021-08-20T04:55:13Z</updated>

		<summary type="html">&lt;p&gt;Psnarf: /* Typographical suggestion */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Rate of growth :-) =&lt;br /&gt;
If this continues to grow at this pace, it might be better to split off some parts to separate sub pages, or possibly even create a new &amp;quot;787&amp;quot; sub portal. For example, the checklists and tutorials could be moved at some point. So that it's hopefully becoming easier to navigate all the documentation we have here. Any thoughts/comments?--[[User:Hooray|Hooray]] 09:12, 23 February 2012 (EST)&lt;br /&gt;
::Sure, Atm I'll put the things here and we'll discuss how we should split it... ~[[User:Omega1174|Omega95]]&lt;br /&gt;
::: From a usability POV, I would suggest to use a &amp;quot;tabbed&amp;quot; layout, with things split into distinct categories (systems overview, tutorials, checklists, CDU reference). --[[User:Hooray|Hooray]] 12:32, 25 February 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
In-line with the previous contributor.. I suggest to split into two pages. 787-8 development and a 787-8 [[AFM]] [[User:PH-JBO|PH-JBO]] 12:18, 29 February 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
:::: It might be a good idea to add a template to all related pages, so that we have a good navigation layout (tabs). --[[User:Hooray|Hooray]] 10:05, 7 March 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Aircraft of the Month ==&lt;br /&gt;
&lt;br /&gt;
I suggest to link with the newsletter. [[User:PH-JBO|PH-JBO]] 11:24, 1 March 2012 (EST)&lt;br /&gt;
&lt;br /&gt;
== Typographical suggestion ==&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Landing Gear Chokes&amp;quot; might be spelled &amp;quot;Landing Gear Chocks&amp;quot;.&lt;/div&gt;</summary>
		<author><name>Psnarf</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Talk:Flight_planning&amp;diff=132699</id>
		<title>Talk:Flight planning</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Talk:Flight_planning&amp;diff=132699"/>
		<updated>2021-08-06T21:50:41Z</updated>

		<summary type="html">&lt;p&gt;Psnarf: /* https://flightplandatabase.com */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== https://flightplandatabase.com ==&lt;br /&gt;
&lt;br /&gt;
Just enter your departure/arrival airports, this site generates routes, waypoints, weather en route (temperature, winds, satellite clouds and precipitation), Metar/TAF for both airports, preferred runways depending upon the weather, Navaids. Of course, the official up-to-date charts add more realism, practice for pilot training, but for someone just learning FlightGear, it gets me off the ground.&lt;/div&gt;</summary>
		<author><name>Psnarf</name></author>
	</entry>
</feed>