<?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=Alphamedia</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=Alphamedia"/>
	<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/Special:Contributions/Alphamedia"/>
	<updated>2026-04-28T15:45:15Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Talk:Island_Virtual_Airways&amp;diff=52775</id>
		<title>Talk:Island Virtual Airways</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Talk:Island_Virtual_Airways&amp;diff=52775"/>
		<updated>2012-08-08T03:08:19Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;We need a link to the IVA liveries. Where are they?&lt;br /&gt;
&lt;br /&gt;
David [[User:D-79|D-79]] 13:03, 15 July 2009 (EDT)&lt;br /&gt;
&lt;br /&gt;
The liveries are on the IVA website. I wouldn't care putting a link to the livery page on here but I would rather not put direct links on here to each of them. They are at http://islandva.org/index.php?option=com_content&amp;amp;view=article&amp;amp;id=47&amp;amp;Itemid=53&lt;br /&gt;
&lt;br /&gt;
Michael [[User:mdsmith2| MDSmith2]] 19:57, 15 July 2009 (Zulu)&lt;br /&gt;
&lt;br /&gt;
: Hey Michael, thanks, I just added that.&lt;br /&gt;
: David [[User:D-79|D-79]] 16:37, 15 July 2009 (EDT)&lt;br /&gt;
&lt;br /&gt;
== Merger into AVA ==&lt;br /&gt;
&lt;br /&gt;
There was some discussion on the forums concerning the merging of this VA into AVA. But we never recieved any word from any IVA members. Does anyone know IVA's stance concerning the merger? --[[User:Armchair Ace|Armchair Ace]] 09:00, 25 April 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I believe that IslandVA as a group didn't form a concensus on whether to merge or not. --[[User:Gorilla|Gorilla]] 14:18, 20 June 2010 (UTC)&lt;br /&gt;
&lt;br /&gt;
: Just out of curiosity, is there anyone who can or would like to make a decision on that? (It's in an informal forum chat, but we're kind of interested in using IVA's &amp;quot;old&amp;quot; aircraft) --[[User:Alphamedia|kyokoyama]] 23:05, August 7, 2012 (EDT)&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_March_2012&amp;diff=43990</id>
		<title>FlightGear Newsletter March 2012</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_March_2012&amp;diff=43990"/>
		<updated>2012-03-09T03:04:05Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Grammar Correction and Standard-English Clarification (please confirm to make sure summary is accurate?)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{newsletter}}&lt;br /&gt;
{{TOC_right|limit=2}}&lt;br /&gt;
&lt;br /&gt;
''We would like to emphasize that the monthly newsletter can not live without the contributions of FlightGear users and developers. Everyone with a wiki account (free to register) can edit the newsletter and every contribution is welcome. So if you know about any FlightGear related news or projects such as for example updated scenery or aircraft, please do feel invited to add such news to the newsletter.''&lt;br /&gt;
&lt;br /&gt;
== Development news ==&lt;br /&gt;
&lt;br /&gt;
=== FlightGear and HLA (High Level Architecture) ===&lt;br /&gt;
&lt;br /&gt;
When reading the FlightGear forums or the FlightGear developers mailing list, you'll probably have noticed the term &amp;quot;HLA&amp;quot; being brought up more and more often recently. &lt;br /&gt;
&lt;br /&gt;
In fact, FlightGear core developers and other contributors seem to bring it up whenever somebody asks about better FlightGear modularization, better concurrency support (i.e. using all your idle CPU power), but also better overall frame rates or a more consistent multiplayer experience and weather environment. &lt;br /&gt;
&lt;br /&gt;
It seems as if &amp;quot;HLA&amp;quot; is the swiss army knife to deal with many long-time FlightGear challenges.&lt;br /&gt;
&lt;br /&gt;
So, what is HLA after all? &lt;br /&gt;
&lt;br /&gt;
In short: HLA, &amp;quot;High Level Architecture&amp;quot;, is an industry standard (IEEE 1516) to standardize interactions between component-based simulation architectures in a distributed setup. &lt;br /&gt;
&lt;br /&gt;
Now, that's a mouthful, right?&lt;br /&gt;
&lt;br /&gt;
Let's try to describe the thing in simpler terms: Most programs (like FlightGear) have a single large code base where all subsystems get their processing time assigned by so called &amp;quot;main loop&amp;quot; which sequentially iterates over all systems and calls their &amp;quot;update&amp;quot; routine, to give each system time to do its work (update weather, update GUI, update AI, update FDM, update sound etc). &lt;br /&gt;
&lt;br /&gt;
Unfortunately, this also means that every subsystem running as part of the main loop has a direct effect on the simulation frame rate, i.e. the total run time cost of each complete update iteration is determined by the time spent in each individual routine. Because of this, the total update time adds up; all the work of the FDM, sound, AI, GUI... these add up to framerate losses.&lt;br /&gt;
&lt;br /&gt;
Basically, all the work FlightGear has to do are separate subroutines systems -and having more of them and more information to run directly affects framerates in-sim.&lt;br /&gt;
&lt;br /&gt;
Whenever you add a new system, you need to add it to the program's main loop and add new source files to the code base of the program. This involves rebuilding FlightGear from source. &lt;br /&gt;
&lt;br /&gt;
In HLA, the general idea is to split up a large simulation into a subset of smaller simulations which are interlinked exchanging information (objects and events) to create a consistent simulation environment using a well-defined interface. This division makes it possible to run these simulations in different thread or even in different processes, even running on other computers.&lt;br /&gt;
&lt;br /&gt;
Only the information that is really required will be exchanged, so the exchange of this information is the only run time footprint, each simulation is responsible to compute and update its own state. &lt;br /&gt;
&lt;br /&gt;
Communications between each simulation node take place using a computer network and an API (similar to CORBA). All participating simulations are managed by a central component called the &amp;quot;Run-Time Infrastructure&amp;quot; (RTI). &lt;br /&gt;
The RTI monitors the overall simulation and manages the distribution of data between all individual nodes, which are called &amp;quot;federates&amp;quot;. The simulation in its entirety is called a &amp;quot;federation&amp;quot; in HLA.&lt;br /&gt;
&lt;br /&gt;
We have started a new article and copied earlier announcements and postings to it; please see [[FlightGear HLA support (High Level Architecture)]] for more information.&lt;br /&gt;
&lt;br /&gt;
=== Mailing list digest ===&lt;br /&gt;
&lt;br /&gt;
(by far the easiest option to populate the newsletter with contents is copying/pasting stuff from the forum and the mailing list)&lt;br /&gt;
&lt;br /&gt;
=== Forum digest ===&lt;br /&gt;
&lt;br /&gt;
=== Git digest ===&lt;br /&gt;
&lt;br /&gt;
== Interview with a contributor (NAME) ==&lt;br /&gt;
''In each edition we have an interview with a contributor. Suggestions for possible questions are available on [[interview questions]], you are invited to come up with new questions and interview ideas obviously! Anyone is free to write an interview (with him-/herself or others) for next month's newsletter! If you'd like to help interview a contributor or get interviewed, please do consider adding yourself to the [[list of interview volunteers]]! To keep this going and less awkward, we are currently trying to come up with the convention that former interviewees become next month's interviewers.''&lt;br /&gt;
&lt;br /&gt;
* How long have you been involved in FlightGear?&lt;br /&gt;
* What are your major interests in FlightGear?&lt;br /&gt;
* What project are you working on right now?&lt;br /&gt;
* What do you plan on doing in the future?&lt;br /&gt;
* Are you happy with the way the FlightGear project is going?&lt;br /&gt;
* What do you enjoy most about developing for FlightGear?&lt;br /&gt;
* Are there any &amp;quot;hidden features&amp;quot; you have worked on in FlightGear that new users may miss?&lt;br /&gt;
* What advice can you give to new developers who want to get started on their first aircraft/new feature/Nasal script?&lt;br /&gt;
&lt;br /&gt;
More questions are being collected here: [[Interview questions]].&lt;br /&gt;
&lt;br /&gt;
Stay tuned for next month's interview, featuring FlightGear contributor XXXXXXXX &lt;br /&gt;
&lt;br /&gt;
== Snapshot releases ==&lt;br /&gt;
Every now and then, easy-to-install development snapshots are created (usually, twice montlhy). These snapshos depict a recent state of the development version of FlightGear. By using them users can test out features that will be included in the upcoming release. Testers are encouraged to file bugs at [http://code.google.com/p/flightgear-bugs/ the issue tracker].&lt;br /&gt;
&lt;br /&gt;
The snapshot can be download via the links at the bottom of this page: http://www.flightgear.org/download/. Updates and feedback can be found [http://flightgear.org/forums/viewtopic.php?f=28&amp;amp;t=10488&amp;amp;p=144233&amp;amp;hilit=snapshot#p144233 at the forum].&lt;br /&gt;
&lt;br /&gt;
== Nasal for newbies ==&lt;br /&gt;
&lt;br /&gt;
== New software tools and projects ==&lt;br /&gt;
&lt;br /&gt;
== FlightGear addons and mods ==&lt;br /&gt;
&lt;br /&gt;
== In the hangar ==&lt;br /&gt;
&lt;br /&gt;
All the way back in May 2011, we addopted a new status-rating system for aircraft. So far, only a few have actually been rated, as can be seen in the list 'hockenberry' set up at [https://docs.google.com/spreadsheet/ccc?key=0ApzphjA4w05ndF94Y2F0bzJTbHQ5QTJXZXJRcUVRbWc&amp;amp;hl=en_US Google Docs]. If you're an aircraft developer and your aircraft is/are not on the list, please consider rating their status. All you'll need to know/do is described at [[Formalizing Aircraft Status]]. If you'd just like to get started contributing to FlightGear, this would also seem like an excellent way to get started.&lt;br /&gt;
&lt;br /&gt;
=== New aircraft ===&lt;br /&gt;
&lt;br /&gt;
=== Updated aircraft ===&lt;br /&gt;
==== Airbus A320neo ====&lt;br /&gt;
The [[Airbus A320neo]] have suffer a deep redesign.&lt;br /&gt;
&lt;br /&gt;
=== Liveries ===&lt;br /&gt;
&lt;br /&gt;
== Scenery corner ==&lt;br /&gt;
&lt;br /&gt;
[[File:KMIAeast.jpg|thumb|250px|KMIA preview in Sketchup]]&lt;br /&gt;
=== KMIA ===&lt;br /&gt;
&lt;br /&gt;
Andyramone has returned from a 1 year Flightgear hiatus to work on modelling the Miami International Airport (KMIA.) There is a basic model already built for the main terminal, which will be available via Terrasync mid-march. &lt;br /&gt;
&lt;br /&gt;
The plan is then to work on improving the model by adding more accurate textures, night textures, movable jetways, and a more accurate airport layout, with the potential to move to a 8.50 airport layout. The surrounding hangars, buildings and Cargo hangar to the south will also be added as they are built. &lt;br /&gt;
&lt;br /&gt;
All models will be GPL compliant and available via Terrasync.&lt;br /&gt;
&lt;br /&gt;
== Aircraft of the month ==&lt;br /&gt;
== Airport of the month ==&lt;br /&gt;
== Screenshot of the month ==&lt;br /&gt;
&lt;br /&gt;
== Suggested flights ==&lt;br /&gt;
== Aircraft reviews ==&lt;br /&gt;
&lt;br /&gt;
== Wiki updates ==&lt;br /&gt;
===New articles===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=new&lt;br /&gt;
  count=10&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
===New aircraft articles===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=new&lt;br /&gt;
  count=10&lt;br /&gt;
  categoryRoot=Aircraft&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
===Most popular newsletters===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=hot&lt;br /&gt;
  count=5&lt;br /&gt;
  categoryRoot=FlightGear Newsletter&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Community news ==&lt;br /&gt;
=== FlightGear on YouTube ===&lt;br /&gt;
&lt;br /&gt;
=== New tutorials and screencasts ===&lt;br /&gt;
=== Forum news ===&lt;br /&gt;
=== Multiplayer ===&lt;br /&gt;
=== Virtual airlines ===&lt;br /&gt;
=== FlightGear events ===&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
== And finally ... ==&lt;br /&gt;
=== Contributing ===&lt;br /&gt;
One of the regular thoughts expressed on the FlightGear forums is &amp;quot;I'd like to contribute but I don't know how to program, and I don't have the time&amp;quot;. Unfortunately, there is a common mis-conception that contributing requires programming and lots of free time. In fact, there are a huge range of ways to contribute to the project without needing to write code or spending days working on something. &lt;br /&gt;
&lt;br /&gt;
For ideas on starting to contribute to FlightGear, you may want to check out: [[Volunteer]].&lt;br /&gt;
&lt;br /&gt;
=== Call for volunteers ===&lt;br /&gt;
* The [[OpenRadar]] project is looking for a new maintainer.&lt;br /&gt;
* The [[FGFSPM]] (FlightGear Package Manager) is looking for a new maintainer.&lt;br /&gt;
&lt;br /&gt;
=== Did you know ===&lt;br /&gt;
&lt;br /&gt;
Torsten recently in Git-a new internal command: property-interpolate [http://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg35900.html].&lt;br /&gt;
&lt;br /&gt;
This exposes the SGInterpolator subsystem to bindings in xml animation &lt;br /&gt;
files. The SGInterpolator allows the interpolation of property values &lt;br /&gt;
over time and has so far been used via Nasal in aircraft.door.&lt;br /&gt;
&lt;br /&gt;
For an example, start the Hansajet from git (fgfs --aircraft=Hansajet) &lt;br /&gt;
and zoom to the gyrosyn heading indicator left of the HSI. Locate the &lt;br /&gt;
black/white knob with &amp;quot;VOR&amp;quot; and &amp;quot;ADF&amp;quot; written on it. Click it (it swaps &lt;br /&gt;
the assignment of the needle-driving sources) and notice that it does &lt;br /&gt;
rotate smoothly to its new position (it's a 2-position toggle knob).&lt;br /&gt;
&lt;br /&gt;
Now, look at the overhead panel, either by paning the view up and right &lt;br /&gt;
or by pressing shift-v on the keyboard. Locate the six rotary buttons &lt;br /&gt;
GEN.1, GEN.2, ALT.1, ALT.2 and the two between the AC and DC &lt;br /&gt;
instruments. Move them by clicking their left/right edges. Notice they &lt;br /&gt;
move smoothly instead of jumping to the new position.&lt;br /&gt;
&lt;br /&gt;
Thats done completely without Nasal but from just a few lines in the &lt;br /&gt;
animation files. Basically, you have to add two bindings to the &amp;lt;pick&amp;gt; &lt;br /&gt;
animation:&lt;br /&gt;
1. property-assing the target value describing the state of the button&lt;br /&gt;
    (that's what you are used to do)&lt;br /&gt;
2. property-interpolate the position of the model to it's new state's value&lt;br /&gt;
    (that's the new binding to add)&lt;br /&gt;
3. Animate the model's rotation from the position property, not the &lt;br /&gt;
state property&lt;br /&gt;
    (that's what you have to change)&lt;br /&gt;
4. done.&lt;br /&gt;
&lt;br /&gt;
(see the animations for the object SyncKnob and SyncKnobPick.[LR] in &lt;br /&gt;
Aircraft/Hansajet/Models/Sperry-C-6d.xml as an example).&lt;br /&gt;
&lt;br /&gt;
The use of the property-interpolate may be:&lt;br /&gt;
&lt;br /&gt;
Change the value of /some/target/property to the constant value of &lt;br /&gt;
100.0 over 3 seconds.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;binding&amp;gt;&lt;br /&gt;
   &amp;lt;command&amp;gt;property-interpolate&amp;lt;/command&amp;gt;&lt;br /&gt;
   &amp;lt;property&amp;gt;/some/target/property&amp;lt;/property&amp;gt;&lt;br /&gt;
   &amp;lt;value&amp;gt;100.0&amp;lt;/value&amp;gt;&lt;br /&gt;
   &amp;lt;time&amp;gt;3&amp;lt;/time&amp;gt;&lt;br /&gt;
&amp;lt;/binding&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change the value of /some/target/property to the value of &lt;br /&gt;
/some/source/property over 0.5 seconds.&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;binding&amp;gt;&lt;br /&gt;
   &amp;lt;command&amp;gt;property-interpolate&amp;lt;/command&amp;gt;&lt;br /&gt;
   &amp;lt;property&amp;gt;/some/target/property&amp;lt;/property&amp;gt;&lt;br /&gt;
   &amp;lt;property&amp;gt;/some/source/property&amp;lt;/property&amp;gt;&lt;br /&gt;
   &amp;lt;time&amp;gt;0.5&amp;lt;/time&amp;gt;&lt;br /&gt;
&amp;lt;/binding&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:FlightGear Newsletter]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=43733</id>
		<title>User:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=43733"/>
		<updated>2012-03-04T22:56:26Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Correction: Tokyo-Haneda is RJTT, not RJAA...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to '''&amp;quot;kyokoyama&amp;quot; (K. A. Yokoyama)''''s page!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributions ==&lt;br /&gt;
=== FlightGear Wiki ===&lt;br /&gt;
* [[FlightGear Newsletter]] [[FlightGear_Newsletter_August_2009|Aug. 2009]] to [[FlightGear_Newsletter_February_2010|Feb. 2010]], [[FlightGear_Newsletter_October_2010|Oct. 2010]] to [[FlightGear_Newsletter_December_2010|Dec. 2010]], [[FlightGear_Newsletter_July_2011|Jul. 2011]] to [[FlightGear_Newsletter_October_2011|Oct. 2011]], [[FlightGear_Newsletter_February_2012|Feb. 2012]] and counting.&lt;br /&gt;
* Picture of the Week&lt;br /&gt;
** 2010-[[Template:POTW/2010-44|44]], [[Template:POTW/2010-50|50]].&lt;br /&gt;
** 2011-[[Template:POTW/2011-30|30]], [[Template:POTW/2011-31|31]], [[Template:POTW/2011-32|32]], [[Template:POTW/2011-33|33]], [[Template:POTW/2011-40|40]].&lt;br /&gt;
** 2012-[[Template:POTW/2012-1|01]], [[Template:POTW/2012-2|02]], [[Template:POTW/2012-5|05]], [[Template:POTW/2012-6|06]], [[Template:POTW/2012-8|08]], [[Template:POTW/2012-9|09]].&lt;br /&gt;
* [[Tokyo Haneda International Airport]] Wiki Page&lt;br /&gt;
&lt;br /&gt;
=== The Main Project ===&lt;br /&gt;
* FlightGear V2.4 Official Gallery Image: BAe Concorde. [http://www.flightgear.org/wp-content/gallery/v24/| Click here, then click on &amp;quot;242.png&amp;quot; to see image.]&lt;br /&gt;
* Co-Founding of [[Atlas Virtual Airlines]]&lt;br /&gt;
* Creation of the Boeing 737-900ER Model&lt;br /&gt;
* [[Boeing 767-300]] Cockpit Voice Acting&lt;br /&gt;
&lt;br /&gt;
=== Works in Progress ===&lt;br /&gt;
* Raleigh/Durham International Airport (KRDU) Model&lt;br /&gt;
* Miyazaki International Airport {RJFM) Model and Landclass&lt;br /&gt;
* Tokyo-Haneda (RJTT) and Tokyo-Narita (RJAA) International Airport Models&lt;br /&gt;
* Chiba, Gunma, Tochigi, Fukushima and Miyagi Prefectures Landclass&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=43731</id>
		<title>User:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=43731"/>
		<updated>2012-03-04T22:56:04Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to '''&amp;quot;kyokoyama&amp;quot; (K. A. Yokoyama)''''s page!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributions ==&lt;br /&gt;
=== FlightGear Wiki ===&lt;br /&gt;
* [[FlightGear Newsletter]] [[FlightGear_Newsletter_August_2009|Aug. 2009]] to [[FlightGear_Newsletter_February_2010|Feb. 2010]], [[FlightGear_Newsletter_October_2010|Oct. 2010]] to [[FlightGear_Newsletter_December_2010|Dec. 2010]], [[FlightGear_Newsletter_July_2011|Jul. 2011]] to [[FlightGear_Newsletter_October_2011|Oct. 2011]], [[FlightGear_Newsletter_February_2012|Feb. 2012]] and counting.&lt;br /&gt;
* Picture of the Week&lt;br /&gt;
** 2010-[[Template:POTW/2010-44|44]], [[Template:POTW/2010-50|50]].&lt;br /&gt;
** 2011-[[Template:POTW/2011-30|30]], [[Template:POTW/2011-31|31]], [[Template:POTW/2011-32|32]], [[Template:POTW/2011-33|33]], [[Template:POTW/2011-40|40]].&lt;br /&gt;
** 2012-[[Template:POTW/2012-1|01]], [[Template:POTW/2012-2|02]], [[Template:POTW/2012-5|05]], [[Template:POTW/2012-6|06]], [[Template:POTW/2012-8|08]], [[Template:POTW/2012-9|09]].&lt;br /&gt;
* [[Tokyo Haneda International Airport]] Wiki Page&lt;br /&gt;
&lt;br /&gt;
=== The Main Project ===&lt;br /&gt;
* FlightGear V2.4 Official Gallery Image: BAe Concorde. [http://www.flightgear.org/wp-content/gallery/v24/| Click here, then click on &amp;quot;242.png&amp;quot; to see image.]&lt;br /&gt;
* Co-Founding of [[Atlas Virtual Airlines]]&lt;br /&gt;
* Creation of the Boeing 737-900ER Model&lt;br /&gt;
* [[Boeing 767-300]] Cockpit Voice Acting&lt;br /&gt;
&lt;br /&gt;
=== Works in Progress ===&lt;br /&gt;
* Raleigh/Durham International Airport (KRDU) Model&lt;br /&gt;
* Miyazaki International Airport {RJFM) Model and Landclass&lt;br /&gt;
* Tokyo-Haneda (RJAA) and Tokyo-Narita (RJAA) International Airport Models&lt;br /&gt;
* Chiba, Gunma, Tochigi, Fukushima and Miyagi Prefectures Landclass&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-8&amp;diff=42219</id>
		<title>Template:POTW/2012-8</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-8&amp;diff=42219"/>
		<updated>2012-02-20T03:22:35Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Grammar Correction&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[Image:Boeing_747-400_KLM.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | The '''Boeing 747-400''', known to many as simply the &amp;quot;Jumbo Jet&amp;quot;, is a long-range, two-story airliner capable of flying up to about 7200nm. It is perhaps the most well-known type of commercial aircraft of all type with its distinctive shape and variety of users such as commercial airlines, various militaries and even the President of the United States of America.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[Boeing_747-400|Read more...]] | [[:Category:Picture of the week 2012|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2012]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_February_2012&amp;diff=42218</id>
		<title>FlightGear Newsletter February 2012</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_February_2012&amp;diff=42218"/>
		<updated>2012-02-20T02:29:02Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Reorganization and Cleanup&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{draft|newsletter|Feel free to contribute! Or [[FlightGear Newsletter January 2012|read the latest edition]].}}&lt;br /&gt;
{{newsletter}}&lt;br /&gt;
{{TOC_right|limit=2}}&lt;br /&gt;
&lt;br /&gt;
''We would like to emphasize that the monthly newsletter can not live without the contributions of FlightGear users and developers. Everyone with a wiki account (free to register) can edit the newsletter and every contribution is welcome. So if you know about any FlightGear related news or projects such as for example updated scenery or aircraft, please do feel invited to add such news to the newsletter.''&lt;br /&gt;
&lt;br /&gt;
== FlightGear 2.6.0 released ==&lt;br /&gt;
Following our [[release plan]], version 2.6.0 of our simulator has been released. Please check the [[changelog 2.6.0]] for what has changed since our last release 6 months ago.&lt;br /&gt;
&lt;br /&gt;
== Development news ==&lt;br /&gt;
&lt;br /&gt;
=== Heads up: Project Rembrandt ===&lt;br /&gt;
As many of you may have heard already, Fred is currently making huge progress on adding shadows to FlightGear in [[Project Rembrandt]]. Now, F-JJTH ported the P92 to use the new system and posted a youtube video demonstrating [[Project Rembrandt]] at work. To provide feedback, please check out the the [http://flightgear.org/forums/viewtopic.php?f=47&amp;amp;t=14883 forum thread].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|{{#ev:youtube|v02phoOqWHE|400|Project Rembrandt at work}}&lt;br /&gt;
|[[File:Project-rembrandt-cockpit-lighting.png|600px|Cockpit lighting in Project Rembrandt at work (by F-JJTH)]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Interview with a contributor (NAME) ==&lt;br /&gt;
''In each edition we have an interview with a contributor. Suggestions for possible questions are available on [[interview questions]], you are invited to come up with new questions and interview ideas obviously! Anyone is free to write an interview (with him-/herself or others) for next month's newsletter! If you'd like to help interview a contributor or get interviewed, please do consider adding yourself to the [[list of interview volunteers]]! To keep this going and less awkward, we are currently trying to come up with the convention that former interviewees become next month's interviewers.''&lt;br /&gt;
&lt;br /&gt;
* How long have you been involved in FlightGear?&lt;br /&gt;
* What are your major interests in FlightGear?&lt;br /&gt;
* What project are you working on right now?&lt;br /&gt;
* What do you plan on doing in the future?&lt;br /&gt;
* Are you happy with the way the FlightGear project is going?&lt;br /&gt;
* What do you enjoy most about developing for FlightGear?&lt;br /&gt;
* Are there any &amp;quot;hidden features&amp;quot; you have worked on in FlightGear that new users may miss?&lt;br /&gt;
* What advice can you give to new developers who want to get started on their first aircraft/new feature/Nasal script?&lt;br /&gt;
&lt;br /&gt;
More questions are being collected here: [[Interview questions]].&lt;br /&gt;
&lt;br /&gt;
Stay tuned for next month's interview, featuring FlightGear contributor XXXXXXXX &lt;br /&gt;
&lt;br /&gt;
== Snapshot releases ==&lt;br /&gt;
Every now and then, easy-to-install development snapshots are created (usually, twice montlhy). These snapshos depict a recent state of the development version of FlightGear. By using them users can test out features that will be included in the upcoming release. Testers are encouraged to file bugs at [http://code.google.com/p/flightgear-bugs/ the issue tracker].&lt;br /&gt;
&lt;br /&gt;
The snapshot can be download via the links at the bottom of this page: http://www.flightgear.org/download/. Updates and feedback can be found [http://flightgear.org/forums/viewtopic.php?f=28&amp;amp;t=10488&amp;amp;p=144233&amp;amp;hilit=snapshot#p144233 at the forum].&lt;br /&gt;
&lt;br /&gt;
== Nasal for newbies ==&lt;br /&gt;
&lt;br /&gt;
== New software tools and projects ==&lt;br /&gt;
&lt;br /&gt;
== FlightGear addons and mods ==&lt;br /&gt;
&lt;br /&gt;
== In the hangar ==&lt;br /&gt;
All the way back in May 2011, we addopted a new status-rating system for aircraft. So far, only a few have actually been rated, as can be seen in the list 'hockenberry' set up at [https://docs.google.com/spreadsheet/ccc?key=0ApzphjA4w05ndF94Y2F0bzJTbHQ5QTJXZXJRcUVRbWc&amp;amp;hl=en_US Google Docs]. If you're an aircraft developer and your aircraft is/are not on the list, please consider rating their status. All you'll need to know/do is described at [[Formalizing Aircraft Status]]. If you'd just like to get started contributing to FlightGear, this would also seem like an excellent way to get started.&lt;br /&gt;
&lt;br /&gt;
=== A new instrument: Vertical Situation Display ===&lt;br /&gt;
[[File:Omega95-vsd-instrument.jpeg|200px|thumb|Omega95's VSD instrument]]&lt;br /&gt;
Omega95 has created an entirely new instrument type for FlightGear, a so called Vertical Situation Display (VSD).&lt;br /&gt;
&lt;br /&gt;
This was done entirely in scripting space using Nasal and XML animations. He's basically proven everbody wrong who ever claimed that complex instruments couldn't yet be created in scripting space. Apparently, he managed to create this instrument in less than 24 hrs. His first question related to this was about accessing trigonometric functions from Nasal, shortly thereafter he posted screen shots depicting his VSD. &lt;br /&gt;
&lt;br /&gt;
To read up on the whole discussion, please see [http://flightgear.org/forums/viewtopic.php?f=30&amp;amp;t=15200 the forum topic]. There's work ongoing to turn his project into a new tutorial for the wiki on creating complex instruments in scripting space: [[Howto: Implement a Vertical Situation Display in Nasal]].&lt;br /&gt;
&lt;br /&gt;
=== Glider winch launching ropes ===&lt;br /&gt;
[[File:DG-101G_winch_launch_with_rope.png|thumb|200px|A DG-101G during a winch launch.]]&lt;br /&gt;
Before now, FlightGear never showed ropes during winch launching. However, now, you will no longer have to fly gliders while being pulled by some invisible connection between you and the winch. &lt;br /&gt;
&lt;br /&gt;
[[User:Gijs|Gijs]] started working on an animated 3D rope, attached to the glider and winch. The cable exist of the following parts:&lt;br /&gt;
&lt;br /&gt;
* '''Strop''' (3 m) attached to the glider with a ring.&lt;br /&gt;
* '''Weak link assembly''' designed to break apart before the cable or any other equipment fails.&lt;br /&gt;
* '''Trace''' (17 m)&lt;br /&gt;
* '''Parachute''' so the cable doesn't drop too quickly after releasing.&lt;br /&gt;
* '''Launch cable''' the longest part; all the way to the winch.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== New aircraft ===&lt;br /&gt;
==== Hawker Siddeley Harrier GR.1 ====&lt;br /&gt;
[[File:Harrier-GR1 Splash.png|thumb|200px|Harrier GR.1 splash screen]]&lt;br /&gt;
[[Hawker Siddeley Harrier GR1]] is a private project by pjedvaj, it was not intended to replace or update the existing [[British Aerospace Harrier]].&lt;br /&gt;
&lt;br /&gt;
It has a detailed 3D model complete with a cockpit, animations and RAF livery. Instruments and HUD are also fairly authentic. The aircraft has working ADEN guns and basic fuel and weight control.&lt;br /&gt;
&lt;br /&gt;
The FDM is adapted from the original BAe Harrier, but internal and external fuel tank capacities are modified to match the GR.1 version.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Updated aircraft ===&lt;br /&gt;
==== Boeing 787-8 Dreamliner ====&lt;br /&gt;
[[File:boeing-787-8-splash.png|thumb|200px|The Boeing 787-8 Splash Screen]]&lt;br /&gt;
The Boeing 787-8 Dreamliner has already been there in FlightGear for a very long time -it has been in the FG official hangar since version 1.0. &lt;br /&gt;
However, it was created while the 787 was still a prototype aircraft; it did not correctly show many of the 787's actual features like a realistic glass cockpit and accurate instruments.&lt;br /&gt;
&lt;br /&gt;
The new/updated Boeing 787-8 is a community project that features new JSBSim flight dynamics, Vertical Navigation, a realistic 787 glass cockpit, new CDUs, Electronic Flight Bags, TCAS, advanced Nav Displays, [[Howto:_Implement_a_Vertical_Situation_Display_in_Nasal|Vertical Situation Display]], [[Howto:_Implement_a_Fly-By-Wire_System_for_Airliners|Fly-by-wire]] and a lot of other neat features. It has not exactly been completed and the project is still running.&lt;br /&gt;
&lt;br /&gt;
You can find out more about the Boeing 787-8 Project HERE or wait for a while till a wiki page is created for it. One of the really good points of this project is how most of our findings and resources have been converted into Wiki HowTos for other aircraft developers to use for their projects.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Cessna 337G Skymaster ====&lt;br /&gt;
[[File:Cessna337-cockpit.png|thumb|200px|General view of the new Cessna 337G Skymaster cockpit]]&lt;br /&gt;
The [[Cessna 337G Skymaster]] from the Spain-Latinamerica &amp;quot;Vive FlightGear&amp;quot; factory have received a major update. &lt;br /&gt;
&lt;br /&gt;
The new cockpit is now totally modelled, almost buttons and knobs are functional, animated, and properly labeled for easy identification.&lt;br /&gt;
&lt;br /&gt;
New custom sounds, lights, controls, a Bendix/King avionics pack capable of full IFR and night navigation, 2 new HQ liveries and the first FlightGear's working [[ELT]] (Emergency Locator Transmitter) are part of this great improvement on a FlightGear aircraft.&lt;br /&gt;
&lt;br /&gt;
=== Liveries ===&lt;br /&gt;
&lt;br /&gt;
== Scenery corner ==&lt;br /&gt;
=== Shanghai Skylines: FG's New (not-so-)Hidden Gem ===&lt;br /&gt;
Shanghai is one of the biggest city in China and is among the cities with the most number of skyscrapers -this is now also true for FlightGear.&lt;br /&gt;
21 models were created over the past few months by JVC, who also modeled the Akashi-Kaikyo Bridge in Japan and the United Nations building in New York.&lt;br /&gt;
{|&lt;br /&gt;
|[[File:SH fgfs-screen-001.png|250px|thumb|A view of the Shanghai skyline]]&lt;br /&gt;
|[[File:Shanghai003.png|250px|thumb|Another view of Shanghai]]&lt;br /&gt;
|[[File:Shanghai007.png|250px|thumb|A closer view from near the Shanghai Stock Exchange]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Airports ===&lt;br /&gt;
&lt;br /&gt;
== Aircraft of the month ==&lt;br /&gt;
== Airport of the month ==&lt;br /&gt;
== Screenshot of the month ==&lt;br /&gt;
&lt;br /&gt;
== Suggested flights ==&lt;br /&gt;
===Copacabana to San Rafael over Lake Titicaca===&lt;br /&gt;
Bolivia to Peru. This trip will lead you over one of the highest and deepest lakes in the world towards the highest airfield in the world. It a demonstration of a [[IFR]] flight towards a fix and a demonstration how accurate FlightGear simulates air density and the effects it has on aircraft.&lt;br /&gt;
[[File:Slcc-sprf.jpg|thumb|200px|left|Flight and fix SLCC to SPRF]]&lt;br /&gt;
Place your aircraft on the airfield [http://en.wikipedia.org/wiki/Copacabana,_Bolivia SLCC, Copacabana], with an [[elevation]] of 12,592 feet. FlightGear will show snow all around you but that is not very realistic so let's clean up. View=&amp;gt; Rendering Options=&amp;gt; Snow line=&amp;gt; Set to max. (5,000M). &lt;br /&gt;
&lt;br /&gt;
We will fly towards and land at SPRF. If you would enter SLCC and SPRF in [[Kelpie]] planner you probably would not be able to find SPRF. To find SPRF I am adding an additional VOR-DME station and for a good fix give you another VOR-DME. Try Kelpie planner to plan this route and compare with this suggestion.&lt;br /&gt;
&lt;br /&gt;
Equipment preparation. Set [[NAV1]] to [http://en.wikipedia.org/wiki/Juliaca Juliaca] VOR-DME on 155.55 with a radial of 311° (magnetic). Set [[NAV2]] to Arequipa VOR-DME on 113.7 with a radial of 212°. During our flight we will fly with [[true altitude]] as set with [[QNH]], keep QNH updated. Arm the autopilot with the [[heading bug]] at 311° and an initial altitude of 13,500 feet.&lt;br /&gt;
&lt;br /&gt;
Take off and if you took the wrong RW pull up hard. Take a small tour over [http://en.wikipedia.org/wiki/Titicaca lake Titicaca], see the floating islands and try to find the lost golden treasure. Intercept the nearest radial on NAV1 towards Juliaca (about 311°). &lt;br /&gt;
&lt;br /&gt;
Just before Juliaca is a hill so while on lake Titicaca increase altitude to 14,200 feet, the [[VFR]] part of this trip is over. After passing Juliaca set the radial of NAV1 to 352° and set the altitude to 17,422 feet. We will fly from NAV1 and slowly increase altitude.&lt;br /&gt;
&lt;br /&gt;
At a distance of about 60 NM set the heading bug on the current course. Monitor the distance to NAV1, the radial of NAV2 and the distance to NAV2. At a distance of 74.5 NM to NAV1, a distance of 140.7 NM and at the '''radial''' intercept of NAV2 should be the runway. So, from 60 NM onwards, look outside the window, then at NAV1 and then NAV2 etc.&lt;br /&gt;
&lt;br /&gt;
If you are at 80NM to NAV1 you have missed the airfield but you still won't hit any hills (unless you bank left). Bank right and set the heading bug to 172°. Fly back towards NAV1 and intercept the radial 352° at about 50NM again to repeat the search.&lt;br /&gt;
&lt;br /&gt;
The runway SPRF, San Rafael, has a elevation of 14,422 feet and a heading of 297°/ 117°. Our initial altitude has been set 3,000NM above the RW elevation. That should give sufficient room for navigation.&lt;br /&gt;
&lt;br /&gt;
After you have seen the airfield set the radial of NAV1 to 297°, the heading of the runway (not the course to the runway) as a visual aid. Land on RW 30 (and not on RW 12 unless you are a show-off). Oh, there is a small hill in front of RW 30, just so you know.&lt;br /&gt;
&lt;br /&gt;
Decreasing speed at this altitude can be a bit tricky. The air is thin and does not give much resistance. Next to that, the difference between [[indicated airspeed]] and [[ground speed]] is very noticeable. The ground speed is much higher as the indicated airspeed.&lt;br /&gt;
&lt;br /&gt;
After a successful landing, try to discover the [[Suggested_Flights#Origin_of_the_Amazon_River | origin of the Amazon river]] since we are now at the starting point of that trip.&lt;br /&gt;
&lt;br /&gt;
*More places you can visit can be found at [[Suggested Flights]].&lt;br /&gt;
&lt;br /&gt;
== Aircraft reviews ==&lt;br /&gt;
&lt;br /&gt;
== Wiki updates ==&lt;br /&gt;
[[User:Johan G|Johan G]] did a great job starting to categorise all images. The sub-categories are listed under [[:Category:Images]]. Please note when uploading images that it's important to give the file a descriptive name. That'll make it easier for others to find your file and use it in articles.&lt;br /&gt;
&lt;br /&gt;
A good example comes from Michat who has designed new small logos for [[Dual Control]] and [[Bombable]] aircrafts allowing you to see at a glance which aircraft has some of those interesting features.&lt;br /&gt;
&lt;br /&gt;
[[File:Dualcontrolready2.png|Dual_control]]  [[File:BombableReady.png|Bombable]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New articles===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=new&lt;br /&gt;
  count=10&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
===New aircraft articles===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=new&lt;br /&gt;
  count=10&lt;br /&gt;
  categoryRoot=Aircraft&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
===Most popular newsletters===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=hot&lt;br /&gt;
  count=5&lt;br /&gt;
  categoryRoot=FlightGear Newsletter&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Community news ==&lt;br /&gt;
=== FlightGear on YouTube ===&lt;br /&gt;
* [http://youtu.be/hBEaOMzBq6E KSFO Thermal Demo] by MD-BFC Going on their way for Bocian certification&lt;br /&gt;
* [http://youtu.be/-yI5PzC5RE8 Sukhoi 37 'The russian dream'] by Águilas de FlightGear performing &amp;quot;Balalaika amok&amp;quot; master tune by Aleksei Arkhipovsky.&lt;br /&gt;
&lt;br /&gt;
=== New tutorials and screencasts ===&lt;br /&gt;
=== Forum news ===&lt;br /&gt;
=== Multiplayer ===&lt;br /&gt;
=== Virtual airlines ===&lt;br /&gt;
=== FlightGear events ===&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
== And finally ... ==&lt;br /&gt;
=== Contributing ===&lt;br /&gt;
One of the regular thoughts expressed on the FlightGear forums is &amp;quot;I'd like to contribute but I don't know how to program, and I don't have the time&amp;quot;. Unfortunately, there is a common mis-conception that contributing requires programming and lots of free time. In fact, there are a huge range of ways to contribute to the project without needing to write code or spending days working on something. &lt;br /&gt;
&lt;br /&gt;
For ideas on starting to contribute to FlightGear, you may want to check out: [[Volunteer]].&lt;br /&gt;
&lt;br /&gt;
=== Call for volunteers ===&lt;br /&gt;
* The [[OpenRadar]] project is looking for a new maintainer.&lt;br /&gt;
* The [[FGFSPM]] (FlightGear Package Manager) is looking for a new maintainer.&lt;br /&gt;
&lt;br /&gt;
=== Did you know ===&lt;br /&gt;
...that you can use expressions to create complex animations of objects in your 3d models or even drive them from multiple properties?&lt;br /&gt;
Usually, an animation looks like this&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;animation&amp;gt;&lt;br /&gt;
     &amp;lt;type&amp;gt;translate&amp;lt;/type&amp;gt;&lt;br /&gt;
     &amp;lt;property&amp;gt;foo/bar&amp;lt;/property&amp;gt;&lt;br /&gt;
     [..]more elements[..]&lt;br /&gt;
 &amp;lt;/animation&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
You can add a scaling factor or an offset to it, but that's basically all you can do that way. &lt;br /&gt;
If you want to animate your object following a complex function, most people create complex Nasal scripts to compute the driving properties, probably not knowing that there is another way to achieve the goal: Expressions. &lt;br /&gt;
Here is an example for a translate animation depending on two properties and the cosine function&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;animation&amp;gt;&lt;br /&gt;
     &amp;lt;type&amp;gt;translate&amp;lt;/type&amp;gt;&lt;br /&gt;
     &amp;lt;expression&amp;gt;&lt;br /&gt;
       &amp;lt;product&amp;gt;&lt;br /&gt;
         &amp;lt;property&amp;gt;/my/factor-property&amp;lt;/property&amp;gt;&lt;br /&gt;
         &amp;lt;cos&amp;gt;&lt;br /&gt;
           &amp;lt;deg2rad&amp;gt;&lt;br /&gt;
             &amp;lt;property&amp;gt;/my/angular-property&amp;lt;/property&amp;gt;&lt;br /&gt;
           &amp;lt;/deg2rad&amp;gt;&lt;br /&gt;
         &amp;lt;/cos&amp;gt;&lt;br /&gt;
       &amp;lt;/product&amp;gt;&lt;br /&gt;
     &amp;lt;/expression&amp;gt;&lt;br /&gt;
     [..]more elements[..]&lt;br /&gt;
 &amp;lt;/animation&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
A rich set of predefined functions is available, including almost all those you have on your scientific pocket calculator.&lt;br /&gt;
&lt;br /&gt;
[[Category:FlightGear Newsletter|2012 02]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_February_2012&amp;diff=42118</id>
		<title>FlightGear Newsletter February 2012</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_February_2012&amp;diff=42118"/>
		<updated>2012-02-19T16:15:19Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{draft|newsletter|Feel free to contribute! Or [[FlightGear Newsletter January 2012|read the latest edition]].}}&lt;br /&gt;
{{newsletter}}&lt;br /&gt;
{{TOC_right|limit=2}}&lt;br /&gt;
&lt;br /&gt;
''We would like to emphasize that the monthly newsletter can not live without the contributions of FlightGear users and developers. Everyone with a wiki account (free to register) can edit the newsletter and every contribution is welcome. So if you know about any FlightGear related news or projects such as for example updated scenery or aircraft, please do feel invited to add such news to the newsletter.''&lt;br /&gt;
&lt;br /&gt;
== Development news ==&lt;br /&gt;
&lt;br /&gt;
=== Heads up: Project Rembrandt ===&lt;br /&gt;
As many of you may have heard already, Fred is currently making huge progress on adding shadows to FlightGear in [[Project Rembrandt]]. Now, F-JJTH ported the P92 to use the new system and posted a youtube video demonstrating [[Project Rembrandt]] at work. To provide feedback, please check out the the [http://flightgear.org/forums/viewtopic.php?f=47&amp;amp;t=14883 forum thread].&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|v02phoOqWHE|400|Project Rembrandt at work}} [[File:Project-rembrandt-cockpit-lighting.png|400px|Cockpit lighting in Project Rembrandt at work (by F-JJTH)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Interview with a contributor (NAME) ==&lt;br /&gt;
''In each edition we have an interview with a contributor. Suggestions for possible questions are available on [[interview questions]], you are invited to come up with new questions and interview ideas obviously! Anyone is free to write an interview (with him-/herself or others) for next month's newsletter! If you'd like to help interview a contributor or get interviewed, please do consider adding yourself to the [[list of interview volunteers]]! To keep this going and less awkward, we are currently trying to come up with the convention that former interviewees become next month's interviewers.''&lt;br /&gt;
&lt;br /&gt;
* How long have you been involved in FlightGear?&lt;br /&gt;
* What are your major interests in FlightGear?&lt;br /&gt;
* What project are you working on right now?&lt;br /&gt;
* What do you plan on doing in the future?&lt;br /&gt;
* Are you happy with the way the FlightGear project is going?&lt;br /&gt;
* What do you enjoy most about developing for FlightGear?&lt;br /&gt;
* Are there any &amp;quot;hidden features&amp;quot; you have worked on in FlightGear that new users may miss?&lt;br /&gt;
* What advice can you give to new developers who want to get started on their first aircraft/new feature/Nasal script?&lt;br /&gt;
&lt;br /&gt;
More questions are being collected here: [[Interview questions]].&lt;br /&gt;
&lt;br /&gt;
Stay tuned for next month's interview, featuring FlightGear contributor XXXXXXXX &lt;br /&gt;
&lt;br /&gt;
== Snapshot releases ==&lt;br /&gt;
Every now and then, easy-to-install development snapshots are created (usually, twice montlhy). These snapshos depict a recent state of the development version of FlightGear. By using them users can test out features that will be included in the upcoming release. Testers are encouraged to file bugs at [http://code.google.com/p/flightgear-bugs/ the issue tracker].&lt;br /&gt;
&lt;br /&gt;
The snapshot can be download via the links at the bottom of this page: http://www.flightgear.org/download/. Updates and feedback can be found [http://flightgear.org/forums/viewtopic.php?f=28&amp;amp;t=10488&amp;amp;p=144233&amp;amp;hilit=snapshot#p144233 at the forum].&lt;br /&gt;
&lt;br /&gt;
== Nasal for newbies ==&lt;br /&gt;
&lt;br /&gt;
== New software tools and projects ==&lt;br /&gt;
&lt;br /&gt;
== FlightGear addons and mods ==&lt;br /&gt;
&lt;br /&gt;
== In the hangar ==&lt;br /&gt;
All the way back in May 2011, we addopted a new status-rating system for aircraft. So far, only a few have actually been rated, as can be seen in the list 'hockenberry' set up at [https://docs.google.com/spreadsheet/ccc?key=0ApzphjA4w05ndF94Y2F0bzJTbHQ5QTJXZXJRcUVRbWc&amp;amp;hl=en_US Google Docs]. If you're an aircraft developer and your aircraft is/are not on the list, please consider rating their status. All you'll need to know/do is described at [[Formalizing Aircraft Status]]. If you'd just like to get started contributing to FlightGear, this would also seem like an excellent way to get started.&lt;br /&gt;
&lt;br /&gt;
=== A new instrument: Vertical Situation Display ===&lt;br /&gt;
[[File:Omega95-vsd-instrument.jpeg|250px|thumb|Omega95's VSD instrument]]&lt;br /&gt;
Omega95 has created an entirely new instrument type for FlightGear, a so called Vertical Situation Display (VSD).&lt;br /&gt;
&lt;br /&gt;
This was done entirely in scripting space using Nasal and XML animations. He's basically proven everbody wrong who ever claimed that complex instruments couldn't yet be created in scripting space. Apparently, he managed to create this instrument in less than 24 hrs. His first question related to this was about accessing trigonometric functions from Nasal, shortly thereafter he posted screen shots depicting his VSD. &lt;br /&gt;
&lt;br /&gt;
To read up on the whole discussion, please see [http://flightgear.org/forums/viewtopic.php?f=30&amp;amp;t=15200 the forum topic]. There's work ongoing to turn his project into a new tutorial for the wiki on creating complex instruments in scripting space: [[Howto: Implement a Vertical Situation Display in Nasal]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Glider winch launching ropes ===&lt;br /&gt;
[[File:DG-101G_winch_launch_with_rope.png|thumb|250px|A DG-101G during a winch launch.]]&lt;br /&gt;
FlightGear never showed ropes during winch launching. [[User:Gijs|Gijs]] started working on an animated 3D rope, attached to the glider and winch. The cable exist of the following parts:&lt;br /&gt;
&lt;br /&gt;
* '''Strop''' (3 m) attached to the glider with a ring.&lt;br /&gt;
* '''Weak link assembly''' designed to break apart before the cable or any other equipment fails.&lt;br /&gt;
* '''Trace''' (17 m)&lt;br /&gt;
* '''Parachute''' so the cable doesn't drop too quickly after releasing.&lt;br /&gt;
* '''Launch cable''' the longest part; all the way to the winch.&lt;br /&gt;
&lt;br /&gt;
=== New aircraft ===&lt;br /&gt;
==== Hawker Siddeley Harrier GR.1 ====&lt;br /&gt;
[[File:Harrier-GR1 Splash.png|thumb|250px|Harrier GR.1 splash screen]]&lt;br /&gt;
[[Hawker Siddeley Harrier GR1]] is a private project by pjedvaj, it was not intended to replace or update the existing [[British Aerospace Harrier]].&lt;br /&gt;
&lt;br /&gt;
It has a detailed 3D model, animations and RAF livery. Instruments and HUD are fairly authentic. The aircraft has working ADEN guns and basic fuel and weight control. FDM is adapted from the original BAe Harrier, internal and external fuel tank capacities are modified to match the GR.1 version.&lt;br /&gt;
&lt;br /&gt;
=== Updated aircraft ===&lt;br /&gt;
==== Boeing 787-8 Dreamliner ====&lt;br /&gt;
[[File:boeing-787-8-splash.png|thumb|250px|The Boeing 787-8 Splash Screen]]&lt;br /&gt;
The Boeing 787-8 Dreamliner has already been there in FlightGear for a very long time but then it didn't have many of the 787's features like a realistic glass cockpit and many of the instruments.&lt;br /&gt;
&lt;br /&gt;
The new/updated Boeing 787-8 is a community project that features new JSBSim flight dynamics, Vertical Navigation, realistic 787 glass cockpit, new CDU, Electronic Flight Bag, TCAS, advanced Nav Displays, [[Howto:_Implement_a_Vertical_Situation_Display_in_Nasal|Vertical Situation Display]], [[Howto:_Implement_a_Fly-By-Wire_System_for_Airliners|Fly-by-wire]] and a lot of other neat features. It has not exactly been completed and the project is still running.&lt;br /&gt;
&lt;br /&gt;
You can find out more about the Boeing 787-8 Project HERE or wait for a while till a wiki page is created for it. One of the really good points of this project is how most of our findings and resources have been converted into Wiki HowTos for other aircraft developers to use for their projects.&lt;br /&gt;
&lt;br /&gt;
==== Cessna 337G Skymaster ====&lt;br /&gt;
[[File:Cessna337-cockpit.png|thumb|250px|General view of the new Cessna 337G Skymaster cockpit]]&lt;br /&gt;
The [[Cessna 337G Skymaster]] from the Spain-Latinamerica &amp;quot;Vive FlightGear&amp;quot; factory have received a major update. &lt;br /&gt;
&lt;br /&gt;
The new cockpit is now totally modelled, almost buttons and knobs are functional, animated, and properly labeled for easy identification.&lt;br /&gt;
&lt;br /&gt;
New custom sounds, lights, controls, a Bendix/King avionics pack capable of full IFR and night navigation, 2 new HQ liveries and the first FlightGear's working [[ELT]] (Emergency Locator Transmitter) are part of this great improvement on a FlightGear aircraft.&lt;br /&gt;
&lt;br /&gt;
=== Liveries ===&lt;br /&gt;
&lt;br /&gt;
== Scenery corner ==&lt;br /&gt;
=== Shanghai Skylines: FG's New (not-so-)Hidden Gem ===&lt;br /&gt;
[[File:SH fgfs-screen-001.png|250px|thumb|A view of the Shanghai skyline]][[File:Shanghai003.png|250px|thumb]][[File:Shanghai007.png|250px|thumb]]&lt;br /&gt;
Shanghai is one of the biggest city in China and is among the cities with the most number of skyscrapers -this is now also true for FlightGear.&lt;br /&gt;
21 models were created over the past few months by JVC, who also modeled the Akashi-Kaikyo Bridge in Japan and the United Nations building in New York.&lt;br /&gt;
&lt;br /&gt;
=== Airports ===&lt;br /&gt;
&lt;br /&gt;
== Aircraft of the month ==&lt;br /&gt;
== Airport of the month ==&lt;br /&gt;
== Screenshot of the month ==&lt;br /&gt;
&lt;br /&gt;
== Suggested flights ==&lt;br /&gt;
===Copacabana to San Rafael over Lake Titicaca===&lt;br /&gt;
Bolivia to Peru. This trip will lead you over one of the highest and deepest lakes in the world towards the highest airfield in the world. It a demonstration of a [[IFR]] flight towards a fix and a demonstration how accurate FlightGear simulates air density and the effects it has on aircraft.&lt;br /&gt;
[[File:Slcc-sprf.jpg|thumb|200px|left|Flight and fix SLCC to SPRF]]&lt;br /&gt;
Place your aircraft on the airfield [http://en.wikipedia.org/wiki/Copacabana,_Bolivia SLCC, Copacabana], with an [[elevation]] of 12,592 feet. FlightGear will show snow all around you but that is not very realistic so let's clean up. View=&amp;gt; Rendering Options=&amp;gt; Snow line=&amp;gt; Set to max. (5,000M). &lt;br /&gt;
&lt;br /&gt;
We will fly towards and land at SPRF. If you would enter SLCC and SPRF in [[Kelpie]] planner you probably would not be able to find SPRF. To find SPRF I am adding an additional VOR-DME station and for a good fix give you another VOR-DME. Try Kelpie planner to plan this route and compare with this suggestion.&lt;br /&gt;
&lt;br /&gt;
Equipment preparation. Set [[NAV1]] to [http://en.wikipedia.org/wiki/Juliaca Juliaca] VOR-DME on 155.55 with a radial of 311° (magnetic). Set [[NAV2]] to Arequipa VOR-DME on 113.7 with a radial of 212°. During our flight we will fly with [[true altitude]] as set with [[QNH]], keep QNH updated. Arm the autopilot with the [[heading bug]] at 311° and an initial altitude of 13,500 feet.&lt;br /&gt;
&lt;br /&gt;
Take off and if you took the wrong RW pull up hard. Take a small tour over [http://en.wikipedia.org/wiki/Titicaca lake Titicaca], see the floating islands and try to find the lost golden treasure. Intercept the nearest radial on NAV1 towards Juliaca (about 311°). &lt;br /&gt;
&lt;br /&gt;
Just before Juliaca is a hill so while on lake Titicaca increase altitude to 14,200 feet, the [[VFR]] part of this trip is over. After passing Juliaca set the radial of NAV1 to 352° and set the altitude to 17,422 feet. We will fly from NAV1 and slowly increase altitude.&lt;br /&gt;
&lt;br /&gt;
At a distance of about 60 NM set the heading bug on the current course. Monitor the distance to NAV1, the radial of NAV2 and the distance to NAV2. At a distance of 74.5 NM to NAV1, a distance of 140.7 NM and at the '''radial''' intercept of NAV2 should be the runway. So, from 60 NM onwards, look outside the window, then at NAV1 and then NAV2 etc.&lt;br /&gt;
&lt;br /&gt;
If you are at 80NM to NAV1 you have missed the airfield but you still won't hit any hills (unless you bank left). Bank right and set the heading bug to 172°. Fly back towards NAV1 and intercept the radial 352° at about 50NM again to repeat the search.&lt;br /&gt;
&lt;br /&gt;
The runway SPRF, San Rafael, has a elevation of 14,422 feet and a heading of 297°/ 117°. Our initial altitude has been set 3,000NM above the RW elevation. That should give sufficient room for navigation.&lt;br /&gt;
&lt;br /&gt;
After you have seen the airfield set the radial of NAV1 to 297°, the heading of the runway (not the course to the runway) as a visual aid. Land on RW 30 (and not on RW 12 unless you are a show-off). Oh, there is a small hill in front of RW 30, just so you know.&lt;br /&gt;
&lt;br /&gt;
Decreasing speed at this altitude can be a bit tricky. The air is thin and does not give much resistance. Next to that, the difference between [[indicated airspeed]] and [[ground speed]] is very noticeable. The ground speed is much higher as the indicated airspeed.&lt;br /&gt;
&lt;br /&gt;
After a successful landing, try to discover the [[Suggested_Flights#Origin_of_the_Amazon_River | origin of the Amazon river]] since we are now at the starting point of that trip.&lt;br /&gt;
&lt;br /&gt;
*More places you can visit can be found at [[Suggested Flights]].&lt;br /&gt;
&lt;br /&gt;
== Aircraft reviews ==&lt;br /&gt;
&lt;br /&gt;
== Wiki updates ==&lt;br /&gt;
[[User:Johan G|Johan G]] did a great job categorising all images. All sub-categories are listed under [[:Category:Images]]. Please note when uploading images that it's important to give the file a descriptive name. That'll make it easier for others to find your file and use it in articles.&lt;br /&gt;
&lt;br /&gt;
A good example comes from Michat who has designed new small logos for [[Dual Control]] and [[Bombable]] aircrafts allowing you to see at a glance if aircraft has some of those interesting features.&lt;br /&gt;
&lt;br /&gt;
[[File:Dualcontrolready2.png|Dual_control]]  [[File:BombableReady.png|Bombable]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===New articles===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=new&lt;br /&gt;
  count=10&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
===New aircraft articles===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=new&lt;br /&gt;
  count=10&lt;br /&gt;
  categoryRoot=Aircraft&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
===Most popular newsletters===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=hot&lt;br /&gt;
  count=5&lt;br /&gt;
  categoryRoot=FlightGear Newsletter&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Community news ==&lt;br /&gt;
=== FlightGear on YouTube ===&lt;br /&gt;
* [http://youtu.be/hBEaOMzBq6E KSFO Thermal Demo] by MD-BFC Going on their way for Bocian certification&lt;br /&gt;
* [http://youtu.be/-yI5PzC5RE8 Sukhoi 37 'The russian dream'] by Águilas de FlightGear performing &amp;quot;Balalaika amok&amp;quot; master tune by Aleksei Arkhipovsky.&lt;br /&gt;
&lt;br /&gt;
=== New tutorials and screencasts ===&lt;br /&gt;
=== Forum news ===&lt;br /&gt;
=== Multiplayer ===&lt;br /&gt;
=== Virtual airlines ===&lt;br /&gt;
=== FlightGear events ===&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
== And finally ... ==&lt;br /&gt;
=== Contributing ===&lt;br /&gt;
One of the regular thoughts expressed on the FlightGear forums is &amp;quot;I'd like to contribute but I don't know how to program, and I don't have the time&amp;quot;. Unfortunately, there is a common mis-conception that contributing requires programming and lots of free time. In fact, there are a huge range of ways to contribute to the project without needing to write code or spending days working on something. &lt;br /&gt;
&lt;br /&gt;
For ideas on starting to contribute to FlightGear, you may want to check out: [[Volunteer]].&lt;br /&gt;
&lt;br /&gt;
=== Call for volunteers ===&lt;br /&gt;
* The [[OpenRadar]] project is looking for a new maintainer.&lt;br /&gt;
* The [[FGFSPM]] (FlightGear Package Manager) is looking for a new maintainer.&lt;br /&gt;
&lt;br /&gt;
=== Did you know ===&lt;br /&gt;
...that you can use expressions to create complex animations of objects in your 3d models or even drive them from multiple properties?&lt;br /&gt;
Usually, an animation looks like this&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;animation&amp;gt;&lt;br /&gt;
     &amp;lt;type&amp;gt;translate&amp;lt;/type&amp;gt;&lt;br /&gt;
     &amp;lt;property&amp;gt;foo/bar&amp;lt;/property&amp;gt;&lt;br /&gt;
     [..]more elements[..]&lt;br /&gt;
 &amp;lt;/animation&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
You can add a scaling factor or an offset to it, but that's basically all you can do that way. &lt;br /&gt;
If you want to animate your object following a complex function, most people create complex Nasal scripts to compute the driving properties, probably not knowing that there is another way to achieve the goal: Expressions. &lt;br /&gt;
Here is an example for a translate animation depending on two properties and the cosine function&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;animation&amp;gt;&lt;br /&gt;
     &amp;lt;type&amp;gt;translate&amp;lt;/type&amp;gt;&lt;br /&gt;
     &amp;lt;expression&amp;gt;&lt;br /&gt;
       &amp;lt;product&amp;gt;&lt;br /&gt;
         &amp;lt;property&amp;gt;/my/factor-property&amp;lt;/property&amp;gt;&lt;br /&gt;
         &amp;lt;cos&amp;gt;&lt;br /&gt;
           &amp;lt;deg2rad&amp;gt;&lt;br /&gt;
             &amp;lt;property&amp;gt;/my/angular-property&amp;lt;/property&amp;gt;&lt;br /&gt;
           &amp;lt;/deg2rad&amp;gt;&lt;br /&gt;
         &amp;lt;/cos&amp;gt;&lt;br /&gt;
       &amp;lt;/product&amp;gt;&lt;br /&gt;
     &amp;lt;/expression&amp;gt;&lt;br /&gt;
     [..]more elements[..]&lt;br /&gt;
 &amp;lt;/animation&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
A rich set of predefined functions is available, including almost all those you have on your scientific pocket calculator.&lt;br /&gt;
&lt;br /&gt;
[[Category:FlightGear Newsletter|2012 02]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:Shanghai003.png&amp;diff=42117</id>
		<title>File:Shanghai003.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:Shanghai003.png&amp;diff=42117"/>
		<updated>2012-02-19T16:14:49Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Skyline of Shanghai, originally modeled and published on Forums by JVC on Feb. 19, 2012. Original Forum Thread at http://flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=15386&lt;br /&gt;
[[Category:FlightGear scenery screenshots]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:Shanghai007.png&amp;diff=42116</id>
		<title>File:Shanghai007.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:Shanghai007.png&amp;diff=42116"/>
		<updated>2012-02-19T16:14:47Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Skyline of Shanghai, originally modeled and published on Forums by JVC on Feb. 19, 2012.&lt;br /&gt;
Original Forum Thread at http://flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=15386&lt;br /&gt;
[[Category:FlightGear scenery screenshots]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:Shanghai003.png&amp;diff=42113</id>
		<title>File:Shanghai003.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:Shanghai003.png&amp;diff=42113"/>
		<updated>2012-02-19T15:58:59Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Skyline of Shanghai, originally modeled and published on Forums by JVC on Feb. 19, 2012. Original Forum Thread at http://flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=15386&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Skyline of Shanghai, originally modeled and published on Forums by JVC on Feb. 19, 2012. Original Forum Thread at http://flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=15386&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:Shanghai007.png&amp;diff=42112</id>
		<title>File:Shanghai007.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:Shanghai007.png&amp;diff=42112"/>
		<updated>2012-02-19T15:56:23Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Skyline of Shanghai, originally modeled and published on Forums by JVC on Feb. 19, 2012.
Original Forum Thread at http://flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=15386&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Skyline of Shanghai, originally modeled and published on Forums by JVC on Feb. 19, 2012.&lt;br /&gt;
Original Forum Thread at http://flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=15386&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=42101</id>
		<title>User:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=42101"/>
		<updated>2012-02-19T07:34:30Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Information Reorganization&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to '''&amp;quot;kyokoyama&amp;quot; (K. A. Yokoyama)''''s page!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributions ==&lt;br /&gt;
=== FlightGear Wiki ===&lt;br /&gt;
* [[FlightGear Newsletter]] [[FlightGear_Newsletter_August_2009|Aug. 2009]] to [[FlightGear_Newsletter_February_2010|Feb. 2010]], [[FlightGear_Newsletter_October_2010|Oct. 2010]] to [[FlightGear_Newsletter_December_2010|Dec. 2010]], [[FlightGear_Newsletter_July_2011|Jul. 2011]] to [[FlightGear_Newsletter_October_2011|Oct. 2011]] and counting.&lt;br /&gt;
* Picture of the Week&lt;br /&gt;
** 2010-[[Template:POTW/2010-44|44]], [[Template:POTW/2010-50|50]].&lt;br /&gt;
** 2011-[[Template:POTW/2011-30|30]], [[Template:POTW/2011-31|31]], [[Template:POTW/2011-32|32]], [[Template:POTW/2011-33|33]], [[Template:POTW/2011-40|40]].&lt;br /&gt;
** 2012-[[Template:POTW/2012-1|01]], [[Template:POTW/2012-2|02]], [[Template:POTW/2012-5|05]], [[Template:POTW/2012-6|06]], [[Template:POTW/2012-8|08]], [[Template:POTW/2012-9|09]].&lt;br /&gt;
* [[Tokyo Haneda International Airport]] Wiki Page&lt;br /&gt;
&lt;br /&gt;
=== The Main Project ===&lt;br /&gt;
* FlightGear V2.4 Official Gallery Image: BAe Concorde. [http://www.flightgear.org/wp-content/gallery/v24/| Click here, then click on &amp;quot;242.png&amp;quot; to see image.]&lt;br /&gt;
* Co-Founding of [[Atlas Virtual Airlines]]&lt;br /&gt;
* Creation of the Boeing 737-900ER Model&lt;br /&gt;
* [[Boeing 767-300]] Cockpit Voice Acting&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=42100</id>
		<title>User:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=42100"/>
		<updated>2012-02-19T07:29:25Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to '''&amp;quot;kyokoyama&amp;quot; (K. A. Yokoyama)''''s page!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributions ==&lt;br /&gt;
* [[FlightGear Newsletter]] [[FlightGear_Newsletter_August_2009|Aug. 2009]] to [[FlightGear_Newsletter_February_2010|Feb. 2010]], [[FlightGear_Newsletter_October_2010|Oct. 2010]] to [[FlightGear_Newsletter_December_2010|Dec. 2010]], [[FlightGear_Newsletter_July_2011|Jul. 2011]] to [[FlightGear_Newsletter_October_2011|Oct. 2011]] and counting.&lt;br /&gt;
* Picture of the Week&lt;br /&gt;
** 2010-[[Template:POTW/2010-44|44]], [[Template:POTW/2010-50|50]].&lt;br /&gt;
** 2011-[[Template:POTW/2011-30|30]], [[Template:POTW/2011-31|31]], [[Template:POTW/2011-32|32]], [[Template:POTW/2011-33|33]], [[Template:POTW/2011-40|40]].&lt;br /&gt;
** 2012-[[Template:POTW/2012-1|01]], [[Template:POTW/2012-2|02]], [[Template:POTW/2012-5|05]], [[Template:POTW/2012-6|06]], [[Template:POTW/2012-8|08]], [[Template:POTW/2012-9|09]].&lt;br /&gt;
* Boeing 737-900ER Model&lt;br /&gt;
* [[Boeing 767-300]] Cockpit Voice Acting&lt;br /&gt;
* [[Atlas Virtual Airlines]]&lt;br /&gt;
* [[Tokyo Haneda International Airport]] Wiki Page&lt;br /&gt;
* [http://www.flightgear.org/wp-content/gallery/v24/242.jpg|FlightGear V2.4 Official Gallery Image: BAe Concorde]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-9&amp;diff=42099</id>
		<title>Template:POTW/2012-9</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-9&amp;diff=42099"/>
		<updated>2012-02-19T07:28:33Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[Image:747-400_SIA_climbing_out_EGKK.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | Located about 45km (28mi) from central London, '''London Gatwick Airport''' (IATA: '''LGW''', ICAO: '''EGKK''') is the world's busiest single-use runway airport and one of the major gateways to the United Kingdom and one of the many custom-model airports optionally available in FlightGear.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[London_Gatwick_Airport|Read more...]] | [[:Category:Picture of the week 2012|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2012]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-9&amp;diff=42098</id>
		<title>Template:POTW/2012-9</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-9&amp;diff=42098"/>
		<updated>2012-02-19T07:28:13Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;  | align=&amp;quot;center&amp;quot; |300px |- | align=&amp;quot;left&amp;quot; | Located about 45km (28mi) from...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[Image:Boeing_747-400_KLM.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | Located about 45km (28mi) from central London, '''London Gatwick Airport''' (IATA: '''LGW''', ICAO: '''EGKK''') is the world's busiest single-use runway airport and one of the major gateways to the United Kingdom and one of the many custom-model airports optionally available in FlightGear.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[London_Gatwick_Airport|Read more...]] | [[:Category:Picture of the week 2012|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2012]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-8&amp;diff=42097</id>
		<title>Template:POTW/2012-8</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-8&amp;diff=42097"/>
		<updated>2012-02-19T07:28:06Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;  | align=&amp;quot;center&amp;quot; |300px |- | align=&amp;quot;left&amp;quot; | The '''Boeing 747-400''', know...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[Image:Boeing_747-400_KLM.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | The '''Boeing 747-400''', known to many as simply the &amp;quot;Jumbo Jet&amp;quot;, is a long-range, two-story airliner capable of flying up to about 7200nm. It is perhaps the most well-known type of commercial aircraft of all type with its distinctive shape and varied use from commercial airlines to various militaries and even the President of the United States of America.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[Boeing_747-400|Read more...]] | [[:Category:Picture of the week 2012|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2012]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=40173</id>
		<title>User:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=40173"/>
		<updated>2012-02-06T02:19:01Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to '''&amp;quot;kyokoyama&amp;quot; (K. A. Yokoyama)''''s page!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributions ==&lt;br /&gt;
* [[FlightGear Newsletter]] [[FlightGear_Newsletter_August_2009|Aug. 2009]] to [[FlightGear_Newsletter_February_2010|Feb. 2010]], [[FlightGear_Newsletter_October_2010|Oct. 2010]] to [[FlightGear_Newsletter_December_2010|Dec. 2010]], [[FlightGear_Newsletter_July_2011|Jul. 2011]] to [[FlightGear_Newsletter_October_2011|Oct. 2011]] and counting.&lt;br /&gt;
* Picture of the Week&lt;br /&gt;
** 2010-[[Template:POTW/2010-44|44]], [[Template:POTW/2010-50|50]].&lt;br /&gt;
** 2011-[[Template:POTW/2011-30|30]], [[Template:POTW/2011-31|31]], [[Template:POTW/2011-32|32]], [[Template:POTW/2011-33|33]], [[Template:POTW/2011-40|40]].&lt;br /&gt;
** 2012-[[Template:POTW/2012-1|01]], [[Template:POTW/2012-2|02]], [[Template:POTW/2012-5|05]], [[Template:POTW/2012-6|06]].&lt;br /&gt;
* Boeing 737-900ER Model&lt;br /&gt;
* [[Boeing 767-300]] Cockpit Voice Acting&lt;br /&gt;
* [[Atlas Virtual Airlines]]&lt;br /&gt;
* [[Tokyo Haneda International Airport]] Wiki Page&lt;br /&gt;
* [http://www.flightgear.org/wp-content/gallery/v24/242.jpg|FlightGear V2.4 Official Gallery Image: BAe Concorde]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-6&amp;diff=40172</id>
		<title>Template:POTW/2012-6</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-6&amp;diff=40172"/>
		<updated>2012-02-06T02:18:21Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;  | align=&amp;quot;center&amp;quot; |300px |- | align=&amp;quot;left&amp;quot; | The '''AH-1 Cobra''' is a narrow-...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[Image:Ah-1_front_slim.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | The '''AH-1 Cobra''' is a narrow-bodied America military attack helicopter which is sometimes also modified to fight forest fires.   &amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[AH-1_Cobra|Read more...]] | [[:Category:Picture of the week 2012|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2012]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=39592</id>
		<title>User:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=39592"/>
		<updated>2012-01-24T02:07:45Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to '''&amp;quot;kyokoyama&amp;quot; (K. A. Yokoyama)''''s page!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributions ==&lt;br /&gt;
* [[FlightGear Newsletter]] [[FlightGear_Newsletter_August_2009|Aug. 2009]] to [[FlightGear_Newsletter_February_2010|Feb. 2010]], [[FlightGear_Newsletter_October_2010|Oct. 2010]] to [[FlightGear_Newsletter_December_2010|Dec. 2010]], [[FlightGear_Newsletter_July_2011|Jul. 2011]] to [[FlightGear_Newsletter_October_2011|Oct. 2011]] and counting.&lt;br /&gt;
* Picture of the Week&lt;br /&gt;
** 2010-[[Template:POTW/2010-44|44]], [[Template:POTW/2010-50|50]].&lt;br /&gt;
** 2011-[[Template:POTW/2011-30|30]], [[Template:POTW/2011-31|31]], [[Template:POTW/2011-32|32]], [[Template:POTW/2011-33|33]], [[Template:POTW/2011-40|40]].&lt;br /&gt;
** 2012-[[Template:POTW/2012-1|01]], [[Template:POTW/2012-2|02]], [[Template:POTW/2012-5|05]].&lt;br /&gt;
* Boeing 737-900ER Model&lt;br /&gt;
* [[Boeing 767-300]] Cockpit Voice Acting&lt;br /&gt;
* [[Atlas Virtual Airlines]]&lt;br /&gt;
* [[Tokyo Haneda International Airport]] Wiki Page&lt;br /&gt;
* [http://www.flightgear.org/wp-content/gallery/v24/242.jpg|FlightGear V2.4 Official Gallery Image: BAe Concorde]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-5&amp;diff=39591</id>
		<title>Template:POTW/2012-5</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-5&amp;diff=39591"/>
		<updated>2012-01-24T02:07:23Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;  | align=&amp;quot;center&amp;quot; |300px |- | align=&amp;quot;left&amp;quot; | '''FGo!''' is a Python-based graphical user ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[File:Fgo01.jpg|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | '''FGo!''' is a Python-based graphical user interface (GUI) for FlightGear that is an alternative to the default FlightGear Launch Control system. It features a compact design with many important options such as aircraft and airport selection, startup scenarios and custom properties in one window, offering a new way to control the simulator.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[FGo!|Read more...]] | [[:Category:Picture of the week 2012|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2012]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=39160</id>
		<title>User:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=39160"/>
		<updated>2012-01-10T02:18:44Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to '''&amp;quot;kyokoyama&amp;quot; (K. A. Yokoyama)''''s page!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributions ==&lt;br /&gt;
* [[FlightGear Newsletter]] [[FlightGear_Newsletter_August_2009|Aug. 2009]] to [[FlightGear_Newsletter_February_2010|Feb. 2010]], [[FlightGear_Newsletter_October_2010|Oct. 2010]] to [[FlightGear_Newsletter_December_2010|Dec. 2010]], [[FlightGear_Newsletter_July_2011|Jul. 2011]] to [[FlightGear_Newsletter_October_2011|Oct. 2011]] and counting.&lt;br /&gt;
* Picture of the Week&lt;br /&gt;
** 2010-[[Template:POTW/2010-44|44]], [[Template:POTW/2010-50|50]].&lt;br /&gt;
** 2011-[[Template:POTW/2011-30|30]], [[Template:POTW/2011-31|31]], [[Template:POTW/2011-32|32]], [[Template:POTW/2011-33|33]], [[Template:POTW/2011-40|40]].&lt;br /&gt;
** 2012-[[Template:POTW/2012-1|01]], [[Template:POTW/2012-2|02]].&lt;br /&gt;
* Boeing 737-900ER Model&lt;br /&gt;
* [[Boeing 767-300]] Cockpit Voice Acting&lt;br /&gt;
* [[Atlas Virtual Airlines]]&lt;br /&gt;
* [[Tokyo Haneda International Airport]] Wiki Page&lt;br /&gt;
* [http://www.flightgear.org/wp-content/gallery/v24/242.jpg|FlightGear V2.4 Official Gallery Image: BAe Concorde]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-2&amp;diff=39159</id>
		<title>Template:POTW/2012-2</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-2&amp;diff=39159"/>
		<updated>2012-01-10T02:07:49Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;  | align=&amp;quot;center&amp;quot; |300px |- | align=&amp;quot;left&amp;quot; | The '''3D Anaglyph Image''' abi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[Image:OV_10_in_Anaglyph.jpg|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | The '''3D Anaglyph Image''' ability allows graphics in FlightGear to be rendered so that the viewer will see an illusion that makes the simulator appear truly 3-D. Using FlightGear's OSG Engine and a pair of red-green or red-cyan 3D glasses, one can experience all that FlightGear has to offer in immersive 3D. &amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[Anaglyph_(3D)|Read more...]] | [[:Category:Picture of the week 2012|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2012]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=38772</id>
		<title>User:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=38772"/>
		<updated>2012-01-02T20:19:53Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to '''&amp;quot;kyokoyama&amp;quot; (K. A. Yokoyama)''''s page!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributions ==&lt;br /&gt;
* [[FlightGear Newsletter]] Aug. 2009 to Feb. 2010, Oct. 2010 to Dec. 2010, Jul. 2011 to Oct. 2011 and counting.&lt;br /&gt;
* Picture of the Week 2010-44, 50. 2011-30, 31, 32, 33, 40. 2012-01.&lt;br /&gt;
* Boeing 737-900ER Model&lt;br /&gt;
* [[Boeing 767-300]] Cockpit Voice Acting&lt;br /&gt;
* [[Atlas Virtual Airlines]]&lt;br /&gt;
* [[Tokyo Haneda International Airport]] Wiki Page&lt;br /&gt;
* [http://www.flightgear.org/wp-content/gallery/v24/242.jpg|FlightGear V2.4 Official Gallery Image: BAe Concorde]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Category:Picture_of_the_week_2012&amp;diff=38771</id>
		<title>Category:Picture of the week 2012</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Category:Picture_of_the_week_2012&amp;diff=38771"/>
		<updated>2012-01-02T20:19:01Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;2012&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Picture of the week|2012]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-1&amp;diff=38770</id>
		<title>Template:POTW/2012-1</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2012-1&amp;diff=38770"/>
		<updated>2012-01-02T20:15:32Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;  | align=&amp;quot;center&amp;quot; |300px |- | align=&amp;quot;left&amp;quot; | '''Shaders''' calculate and display...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[Image:IAR-80-dirt-3.jpg|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | '''Shaders''' calculate and display various rendering effects in graphic software. FlightGear uses them extensively to draw out countless effects such as atmosphere scattering, snow, water reflection, terrain effects and, as seen here, physical details of certain aircraft. &amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[Shaders|Read more...]] | [[:Category:Picture of the week 2012|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2012]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=36663</id>
		<title>User:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=36663"/>
		<updated>2011-11-01T04:28:42Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Revision of Contributions List&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to '''&amp;quot;kyokoyama&amp;quot; (K. A. Yokoyama)''''s page!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributions ==&lt;br /&gt;
* [[FlightGear Newsletter]] Aug. 2009 to Feb. 2010, Oct. 2010 to Dec. 2010, Jul. 2011 to Oct. 2011 and counting.&lt;br /&gt;
* Picture of the Week 2010-44, 50. 2011-30, 31, 32, 33, 40.&lt;br /&gt;
* Boeing 737-900ER Model&lt;br /&gt;
* [[Boeing 767-300]] Cockpit Voice Acting&lt;br /&gt;
* [[Atlas Virtual Airlines]]&lt;br /&gt;
* [[Tokyo Haneda International Airport]] Wiki Page&lt;br /&gt;
* [http://www.flightgear.org/wp-content/gallery/v24/242.jpg|FlightGear V2.4 Official Gallery Image: BAe Concorde]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_October_2011&amp;diff=36662</id>
		<title>FlightGear Newsletter October 2011</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_October_2011&amp;diff=36662"/>
		<updated>2011-11-01T04:23:38Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: /* Screenshot of the month */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{newsletter}}&lt;br /&gt;
{{TOC_right|limit=2}}&lt;br /&gt;
&lt;br /&gt;
''We would like to emphasize that the monthly newsletter can not live without the contributions of FlightGear users and developers. Everyone with a wiki account (free to register) can edit the newsletter and every contribution is welcome. So if you know about any FlightGear related projects such as for example updated scenery or aircraft, please do feel invited to add such news to the newsletter.''&lt;br /&gt;
&lt;br /&gt;
== Development news ==&lt;br /&gt;
&lt;br /&gt;
=== FGdata split ===&lt;br /&gt;
A team of developers started preparing the FlightGear [[git]] repositories for a significant change. Aircraft will be split of from fgdata, in order to ease development of aircraft and data as a whole. At the moment (of publication of this newsletter) we're in the testing phase; inviting anyone to test out the new system and report any bugs, comments and questions.&lt;br /&gt;
&lt;br /&gt;
We would like to emphasize that those testing repositories are not meant to replace the &amp;quot;old&amp;quot; fgdata yet! There are various ways of splitting (eg. all aircraft in one big repository, repositories per author), so until we've settled on what way to go, things might (and will) change.&lt;br /&gt;
&lt;br /&gt;
Details can be found on the special wiki page: [[FlightGear Git: splitting fgdata]].&lt;br /&gt;
&lt;br /&gt;
=== Move to CMake ===&lt;br /&gt;
The build system for the FlightGear core was switched to &amp;quot;CMake&amp;quot; - which means we now have a single build system for all environments - Windows, Linux and Mac. So far, &amp;quot;automake&amp;quot; scripts for Linux/Mac and a separate MSVC project for each individual VisualStudio version had to be maintained. With the unified system maintenance is easier when adding new sources, library dependencies or compile-time switches to the project.&lt;br /&gt;
&lt;br /&gt;
FlightGear (Windows) users are likely to not even notice any change though: the Jenkins build server was already switched to using CMake, and nothing will change for the provided release or development snapshot installers.&lt;br /&gt;
&lt;br /&gt;
Further information: [[Building using CMake]], [[Developing using CMake]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- http://www.mail-archive.com/flightgear-devel@lists.sourceforge.net/msg34344.html --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== New Replay System ===&lt;br /&gt;
The [[Instant Replay]] system has received a major overhaul. The existing system worked well with specific types of aircraft only, since it relied on a hard-coded set of properties to be recorded/replayed, mainly covering propeller aircraft. Jet engines (thrust-reversers, N1/N2 rpm), or non-standard gears (i.e. a Concorde with 4 landing gears) were not working well though. The new system can be adapted to any kind of aircraft and any kind of custom property or animation.&lt;br /&gt;
&lt;br /&gt;
[[File:FG-instant-replay-new.png|thumb|500px|The new instant replay dialog.]]&lt;br /&gt;
&lt;br /&gt;
Most obvious change is probably an improved replay dialog: the video player-like GUI provides play/pause/skip buttons and also controls replay speed. During replay use the 4 arrow keys as controls (left/right to skip, up/down to speed-up/slow-down). Also new: ''slow-motion playback'' is now supported!&lt;br /&gt;
&lt;br /&gt;
Another new feature is the option of taking controls at any point during replay. Use the ''Instant Replay'' to go back in time, then hit the &amp;quot;My controls!&amp;quot; button to regain controls and continue the flight from the current position. You may find this to be useful to train particular flight phases, such as flying the same approach again and again, maybe using different weather/wind conditions. Even if you messed up an approach: go back, try again, until you're getting better! :) Currently this particular feature is only available for YASim aircraft - except helicopters. JSBSim support is likely to be available soon.&lt;br /&gt;
&lt;br /&gt;
The first step to adapt an aircraft to the improved recording system is to pick one of the ready-to-use configuration files, depending on aircraft/engine/.. type. The configuration file only needs to be included in the aircraft's ...-set.xml file. As an optional second step, you can add more custom properties to cover aircraft-specific effects. For more details, see the [https://www.gitorious.org/fg/fgdata/blobs/master/Docs/README.flightrecorder README.flightrecorder] in the fgdata/Docs folder.&lt;br /&gt;
&lt;br /&gt;
A few adapted aircraft examples showing different levels of customization are already present in current git/fgdata:&lt;br /&gt;
* ASK13 (glider)&lt;br /&gt;
* c172p (propeller/piston)&lt;br /&gt;
* b1900d (turboprop)&lt;br /&gt;
* UH-1 (helicopter)&lt;br /&gt;
* 777-200ER (jet).&lt;br /&gt;
&lt;br /&gt;
Furthermore, the replay system's buffers are now fully configurable (see /sim/replay/buffer properties). If you have enough memory, you could increase the buffer recording durations and rates.&lt;br /&gt;
&lt;br /&gt;
Work on the replay system isn't finished yet. However, have a test flight with the current state in current git ;-).&lt;br /&gt;
&lt;br /&gt;
=== Flying Lessons for AI pilots ===&lt;br /&gt;
&lt;br /&gt;
This month FlightGear's virtual, AI controlled, pilots have received extensive training with regard to their landing skills. Whereas in older versions AI aircraft had a tendency to approach too high, drop dead onto the runway, and taxi all the way to the opposite end of the runway before vacating it, the current development version of FlightGear as largely addressed all these issues. Pilots now make a much more realistic approach, and vacate the runway when able. The corresponding AI control code was implemented in October. Additionally, work has started on a new traffic flow regulation algorithm to guide ground traffic.&lt;br /&gt;
&lt;br /&gt;
=== The bombable addon has been updated ===&lt;br /&gt;
[[File:bombable4_4_800.png]]&lt;br /&gt;
&lt;br /&gt;
Flug's [[Bombable]] addon received a number of major updates, among them:&lt;br /&gt;
&lt;br /&gt;
* '''AI aircraft move vertically -- and do loops''': AI aircraft now move much more realistically in the vertical direction. They do loops, dive, and all the rest. Their behavior (climb rates, dive rates, and so on) matches those of the corresponding FG aircraft. This makes for a much more realistic 3-D dogfighting experience in FlightGear.&lt;br /&gt;
* '''Realistic roll rates for AI aircraft''': Roll rates are one the most important factors determining the effectiveness of fighter aircraft-- aircraft that can roll faster can turn faster. Now the roll rate for AI aircraft in scenarios can be customized, and bugs in the roll &amp;amp; turn routines for AI aircraft have been fixed.&lt;br /&gt;
* '''Significant performance improvements''': Bombable now makes much less of an impact on your framerate, and much less stuttering &amp;amp; slowdown at key points, like when numerous machine gun rounds are impacting.&lt;br /&gt;
* '''Damage impact detection is the most advanced element in Bombable'''.  It is greatly improved over FG's native impact  detection system, and the framework is in place for further refinements or as a model for FG to implement more refined impact detection internally. Damage tracking and communication over Multiplayer works well in a very lightweight with a very low data rate. However, only a general damage percentage is tracked and communicated.  Damage to different locations or systems is not simulated.  Proof of concept for explosions, fires, weapons damage animations, and crash animations is in place.  All these elements could be refined for greater realism.&lt;br /&gt;
* '''Relocate any scenario to your location''': Have an AI scenario based in San Francisco, but want to fly in London? No problem, just hit a button in the Bombable menu and your scenario comes to you, wherever you are. Damage levels for AI aircraft and objects are re-set. It's like loading a new scenario without having to re-start FlightGear.&lt;br /&gt;
* '''Re-spawn AI aircraft and objects''': After you have shot down (or been shot down by!) AI aircraft or objects in scenarios, you can instantly re-spawn them and try again. (Available in the Bombable menu.)&lt;br /&gt;
&lt;br /&gt;
The last two are kind of game changers--it's like being able to re-start/re-load a scenario instantly without having to re-start FG.&lt;br /&gt;
&lt;br /&gt;
In addition, there have been some feature requests to make the bombable addon more challenging by improving its AI. This spawned an interesting discussion about possible ways to make the AI even smarter than it is already [http://flightgear.org/forums/viewtopic.php?f=6&amp;amp;t=5742&amp;amp;start=300#p140013]. Also see [[Howto: Neural networks in Nasal]].&lt;br /&gt;
&lt;br /&gt;
For a nice video demo created by Vodoun da Vinci, please see [[FlightGear Newsletter October 2011#Community news|community news]].&lt;br /&gt;
&lt;br /&gt;
== Interview with a contributor: Gijs de Rooy ==&lt;br /&gt;
''From this month onwards, we'd like to see a monthly interview with a contributor. Questions are available on [[interview questions]] and anyone is free to write an interview (with him-/herself) for next month's newsletter!''&lt;br /&gt;
&lt;br /&gt;
* '''How long have you been involved in FlightGear? What was it that made you join?'''&lt;br /&gt;
According to the forum software I joined all the way back in July 2007. One year earlier I was one of the first users of Google SketchUp, free 3D modelling software. After modelling several buildings in my home town, Amsterdam (and placing them in Google Earth) I started working on Amsterdam Airport Schiphol. By then, Google Earth had a (simple) built-in flight simulator. Amsterdam would be the first airport to be modelled especially for that, that was my plan at least...&lt;br /&gt;
&lt;br /&gt;
While modelling Schiphol, I stumbled across this free flight sim, called FlightGear, that wasn't a game, unlike Google's. In [http://flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=473 one of my first posts] on the FlightGear forum I asked for someone to place my models into FlightGear's scenery. Georg (Heliflyer) placed my first buildings. I took some effort, but I finally managed to place buildings myself. Sadly the guy that introduced me to FlightGear and gave me a hobby that would last up till today, passed away in 2009.&lt;br /&gt;
&lt;br /&gt;
* '''Do you have real world connections with aviation or IT?'''&lt;br /&gt;
Since two months I'm studying Aerospace Engineering at the University of Delft. So far I really like this mix of hobby and study. &lt;br /&gt;
&lt;br /&gt;
* '''What are your major interests in FlightGear?'''&lt;br /&gt;
One of the things I like about FlightGear is the wide range of things one can get involved with: modelling, texturing, writing manuals, collecting data etc. and of course flying itself. Therefore I have a very long list of interests. However, there are three key parts that I particularly enjoy; being the development of scenery and aircraft and helping others by writing wiki articles and replying to questions at the forum.&lt;br /&gt;
&lt;br /&gt;
* '''What project(s) are you working on right now?'''&lt;br /&gt;
My main development projects right now are the Boeing [[747-400]] and Dutch scenery. Both can be considered as never finished; there are always things to add/improve.&lt;br /&gt;
&lt;br /&gt;
* '''On average, how much time do you spend working with/contributing to FlightGear?'''&lt;br /&gt;
Until this year I spent roughly 4 to 5 hours a day on FlightGear related things. Now that I'm studying I have less free time, but still several hours a day on average. Most of that time is taken up by non-development stuff, like the forum, wiki and livery database. Over the years I've been spending way too litle time on the actual flying. &lt;br /&gt;
&lt;br /&gt;
* '''What do you plan on doing in the future?'''&lt;br /&gt;
I would really like to bring the 744 to a state where a real pilot cannot spot a thing that is missing in the simulation.&lt;br /&gt;
&lt;br /&gt;
* '''What advice can you give to new developers who want to get started on their first aircraft/new feature/Nasal script?'''&lt;br /&gt;
Starting something new is easy, completing it is much harder. I could have never guessed I would still be working on the 744, three years after I started!&lt;br /&gt;
&lt;br /&gt;
I've always been telling newcomers to start improving existing features. It's a great way to familiarize yourself with the project. By looking into existing aircraft's files for example, you will quickly find out how those files are linked together and what their purpose is.&lt;br /&gt;
&lt;br /&gt;
== Snapshot releases ==&lt;br /&gt;
&lt;br /&gt;
== Nasal for newbies ==&lt;br /&gt;
&lt;br /&gt;
== New software tools and projects ==&lt;br /&gt;
&lt;br /&gt;
== FlightGear addons and mods ==&lt;br /&gt;
&lt;br /&gt;
== In the hangar ==&lt;br /&gt;
All the way back in May 2011, we addopted a new status-rating system for aircraft. So far, only a few have actually been rated, as can be seen in the list 'hockenberry' set up at [https://docs.google.com/spreadsheet/ccc?key=0ApzphjA4w05ndF94Y2F0bzJTbHQ5QTJXZXJRcUVRbWc&amp;amp;hl=en_US Google Docs]. If you're an aircraft developer and your aircraft is/are not on the list, please consider rating their status. All you'll need to know/do is described at [[Formalizing Aircraft Status]]. If you'd just like to get started contributing to FlightGear, this would also seem like an excellent way to get started.&lt;br /&gt;
=== New aircraft ===&lt;br /&gt;
&lt;br /&gt;
=== Updated aircraft ===&lt;br /&gt;
The [[Learjet 35-A]] has been updated. Several minor errors have been fixed and improvements have been put in-place. The [[Learjet 35-A]] is the only business jet with a functional autopilot. It is a gem to fly and perfect for beginners and experts to try [[radio navigation]], autopilot control and [[ILS]] procedures. Thanks Xsaint and PH-JBO for the work done.&lt;br /&gt;
&lt;br /&gt;
=== Livery database reaches 600 ===&lt;br /&gt;
On October 8, the [[FlightGear livery database]] welcomed its 600th livery! Thanks to 70 authors, the virtual skies are more colourful than ever. &lt;br /&gt;
&lt;br /&gt;
At the moment the contribution system is being rewritten. For the time being, new liveries are only accepted via direct email to [http://www.flightgear.org/forums/memberlist.php?mode=viewprofile&amp;amp;u=510 Gijs].&lt;br /&gt;
&lt;br /&gt;
== Scenery corner ==&lt;br /&gt;
&lt;br /&gt;
=== Support for 8.50 airport data ===&lt;br /&gt;
[[File:EHAM_overview_night.png|thumb|270px|[[Amsterdam Airport Schiphol]] by night, with the new 8.50 lighting.]]&lt;br /&gt;
[[File:EHAM_gate_D.png|thumb|270px|Schiphol's D gates, in combination with AI traffic.]]&lt;br /&gt;
As mentioned in the previous newsletter; efforts are made to bring [[TerraGear]] up to a level where it supports the 8.50 apt.dat format, nowadays used by X-Plane. This new format has all kind of exciting features like curved taxiways and accurate lining/lighting (not just &amp;quot;ordinary&amp;quot; taxiway lines, but also markings like hold lines). Furthermore, seperate runway end definitions so it is now possible to create runways with different markings on both ends (including &amp;quot;empty ends&amp;quot; for runways being only used into one direction).&lt;br /&gt;
&lt;br /&gt;
We'd like to thank Christian (papillon81), Pete (Psadro GM) and Emmilian (i4dnf) for their hard work. It's probably legitimate to say that this is the biggest improvements in FlightGear scenery over the past years!&lt;br /&gt;
&lt;br /&gt;
=== Airports ===&lt;br /&gt;
&lt;br /&gt;
Work progressed on a line of higher detailed service vehicle scenery models.&lt;br /&gt;
&lt;br /&gt;
[[File:Fgfs 2011-10-29 13-41-16-88.jpg|400px|Service vehicles lineup]][[File:Fgfs 2011-10-23 18-02-20-12.jpg|400px|Baggege trailer lineup]]&lt;br /&gt;
&lt;br /&gt;
[[File:Fgfs 2011-10-26 20-46-13-55.jpg|400px|ULD Container trailer linup]][[File:Fgfs 2011-10-16 04-35-08-94.jpg|400px|Short version of the Volvo-FM airport fuel truck]]&lt;br /&gt;
&lt;br /&gt;
Currently the line includes a small tow truck, Baggage trailer, ULD container trailers, Catering Trucks and a Fuel Truck.&lt;br /&gt;
&lt;br /&gt;
You can follow the development on the forum: [http://www.flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=13472]&lt;br /&gt;
&lt;br /&gt;
== Aircraft of the month ==&lt;br /&gt;
&lt;br /&gt;
Diamond DA42 Twin Star&lt;br /&gt;
&lt;br /&gt;
[[File:Fgfs-screen-032.png|600px]]&lt;br /&gt;
&lt;br /&gt;
http://en.wikipedia.org/wiki/Diamond_DA42&lt;br /&gt;
&lt;br /&gt;
== Glider of the month ==&lt;br /&gt;
&lt;br /&gt;
Jean Astir Grob G102&lt;br /&gt;
&lt;br /&gt;
[[File:Astir.png|600px]]&lt;br /&gt;
[[File:Fgfs-screen-026.png|600px]]&lt;br /&gt;
&lt;br /&gt;
== Airport of the month ==&lt;br /&gt;
[[File:FJDG.jpg|600px]]&lt;br /&gt;
&lt;br /&gt;
The nearest airport is about 700 NM away. Around us are about 30 small islands, none with [[radio beacons]], none with an airport but some with a small beach. This Airport has four odd looking pillboxes. If you click they will open, very slowly. Now if you would have a [[Northrop B-2 Spirit |B2 bomber]] you could park your aircraft in it. If you don't have a [[Northrop B-2 Spirit|B2]] you are allowed to land, but only in an emergency. Fake an emergency and get here, bring piña colada and have a party on the beach!&lt;br /&gt;
&lt;br /&gt;
*It is sooo beautiful here. Oh, where? FJDG, [http://en.wikipedia.org/wiki/Chagos_Archipelago Diego Garcia at Point Marianne]. Perfect for [[VFR]] tours, and a piña colada on the beach.&lt;br /&gt;
&lt;br /&gt;
== Screenshot of the month ==&lt;br /&gt;
The popular screenshot contest is back this month! Here are the rules, as a reminder:&lt;br /&gt;
&lt;br /&gt;
The screenshot must be an actual frame from a running instance of Flightgear. It can be cropped or altered in size, but it may not be altered or postprocessed in any way.&lt;br /&gt;
&lt;br /&gt;
Flightgear however may be altered in any way you wish (in fact, this is explicitly encouraged) - you may modify materials.xml, you may use custom scenery, you may use your own textures, liveries, your own aircraft currently under development, your patch to the core, ... The only condition is that it's understood that whatever you did is eventually made available to others - i.e. in case you have generated a livery which you intend to sell to others, you may not use it here. Any version of Flightgear is okay.&lt;br /&gt;
&lt;br /&gt;
Flightgear does not need to be run in the configuration you actually usually fly with - for the purpose of the screenshot, you may run settings with 1 fps which you would not fly otherwise.&lt;br /&gt;
&lt;br /&gt;
The screenshot must be related to the challenge theme and to aviation (don't just go there with the ufo and take a shot).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This month's winners are:&lt;br /&gt;
&lt;br /&gt;
'''Challenge theme &amp;quot;Airports from Above&amp;quot;'''&lt;br /&gt;
The winning submission is by [[User:Gijs|Gijs]]!&lt;br /&gt;
&lt;br /&gt;
[[File:Jumbo_eham_view.png|600px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Challenge theme &amp;quot;Details&amp;quot;'''&lt;br /&gt;
The winning submission is by [[User:Alphamedia|kyokoyama]]!&lt;br /&gt;
&lt;br /&gt;
[[File:Bone1.png|600px]]&lt;br /&gt;
&lt;br /&gt;
== Suggested flights ==&lt;br /&gt;
It's cold where we will go so dress up warm and if we are lucky we might see whales during our flight. Don't fly too high to enjoy the amazing views, and there is a small challenge at the end. The runways we will use are long enough for bigger aircraft (7000+). Total length of the trip will be around 245 NM. So, hop in the cockpit of your favourite airliner.&lt;br /&gt;
&lt;br /&gt;
Alaska, here we come! Enjoy!&lt;br /&gt;
#Park your aircraft on PAKT, [http://www.borough.ketchikan.ak.us/airport/airport_history.htm Ketchikan International], runway 11. The wind is coming from '''South''', change the weather if needed (SE is ok too). &lt;br /&gt;
#Fly North towards [[NDB]] Fredericks Point on 372.0 for 94 NM. &lt;br /&gt;
#Fly towards [[NDB]] Five Fingers on 295.0 for 39 NM. &lt;br /&gt;
#Fly towards [[NDB]] Gustavus on 219.0 for 77 NM. &lt;br /&gt;
#Fly towards [[NDB]] Coghlan Island on 212.0 for 32 NM.&lt;br /&gt;
#Set the [[ILS]] on 109.9 and land your aircraft (after 4 NM) on PAJN, [http://www.juneau.org/airport/ Juneau International], runway 08.&lt;br /&gt;
If you feel warm after this landing, you just crossed a NORAD microwave site, so that is why.&lt;br /&gt;
*More amazing flights can be found at [[Suggested Flights]].&lt;br /&gt;
&lt;br /&gt;
== Aircraft reviews ==&lt;br /&gt;
&lt;br /&gt;
== Wiki updates ==&lt;br /&gt;
=== 10,000,000 pageviews ===&lt;br /&gt;
On October 29, the FlightGear wiki welcomed it's 10,000,000th (10 millionth) pageview! Coming from five million in October 2010, we doubled in just 12 months time. That is a proof that FlightGear has more users than ever and more users are able to find their way to the wiki. Both things are very nice of course!&lt;br /&gt;
&lt;br /&gt;
We'd like to thank everyone that donated some free time to create/improve/correct articles and upload images to the wiki. As the wiki is (just like FlightGear) completely dependant on the community we'd like to emphasize that anyone is welcome to help! You can find a short introduction to the wiki at [[Help:Your first article]].&lt;br /&gt;
&lt;br /&gt;
To 20 million and beyond! We're already well on our way, with {{NUMBEROFVIEWS}} views at this very moment. More statistics are available at [[Special:Statistics]].&lt;br /&gt;
&lt;br /&gt;
=== Nasal documentation ===&lt;br /&gt;
Flug and Hooray revamped the [[Nasal]] documentation, to make it hopefully more comprehensive and more accessible to new programmers. If you think, anything is unclear or missing, please leave a remark at the article's talk page or [http://flightgear.org/forums/viewtopic.php?f=30&amp;amp;t=13811 the forum topic].&lt;br /&gt;
&lt;br /&gt;
===New articles===&lt;br /&gt;
*The article about [[altitude]] has received an update and a fresh lick of paint. Please help to correct the German version.&lt;br /&gt;
*[[Aircraft speed]] is a bit more up-to speed now.&lt;br /&gt;
*Places to fly, Suggested Flights, Suggested Flights from newsletters and the flights from the main website have all been merged into one gathering place of amazing places you really have to visit one day, soon. Check out [[Suggested Flights]] and feel free to add your secret pearls! &lt;br /&gt;
&lt;br /&gt;
===New aircraft articles===&lt;br /&gt;
===Most popular newsletters===&lt;br /&gt;
&lt;br /&gt;
== Community news ==&lt;br /&gt;
===Reminder: FSweekend===&lt;br /&gt;
A team of FlightGear developers will promote FlightGear to the public at the [[FSweekend]] (5 and 6 November 2011), the largest flight simulator event in the world. They highly appreciate it if you are able to stop by. If you are unable to visit [[Lelystad Airport]] (EHLE) in real life, make sure you pay a virtual visit! &lt;br /&gt;
&lt;br /&gt;
A visit is definitely worth it. The more knowing that Durk Talsma, one of our longtime core developers, will do a one hour presentation on FlightGear.&lt;br /&gt;
&lt;br /&gt;
[[File:Fgfs-screen-028.png|x125px]][[File:FSweekend_banner_2011.jpg|x125px|link=http://www.fsweekend.com]]&lt;br /&gt;
&lt;br /&gt;
More information can be found at the event's wiki page: [[FSweekend 2011]].&lt;br /&gt;
&lt;br /&gt;
=== FlightGear on YouTube ===&lt;br /&gt;
Vodoun da Vinci has [http://flightgear.org/forums/viewtopic.php?f=19&amp;amp;t=13823 uploaded a new movie] complete with music soundtrack to demonstrate the latest [[Bombable]] addon. This one primarily features head on attacks by custom [[P-51D Mustang]]s over Sochi, Russia.&lt;br /&gt;
&lt;br /&gt;
The code in the Mustangs has been hacked to make them aggressive in attacking head on. My favorite style with my FW-190 D9 Dora supplied by Detlef Faber. The clips have been recorded with time set to evening and morning (dusk and dawn) as this provides the kind of dark and contrasting sky that best suits me for hunting.&lt;br /&gt;
&lt;br /&gt;
Oscar uploaded an [http://www.youtube.com/watch?v=nb0-k60wpKM Aircraft of the Month] video review, based on [http://www.flightgear.org/forums/viewtopic.php?f=4&amp;amp;t=11930&amp;amp;p=139727#p139596 Thorsten's review] of the [[IAR_80]] on the forums.&lt;br /&gt;
&lt;br /&gt;
=== FlightGear on Facebook ===&lt;br /&gt;
Started in December 2010, [http://www.facebook.com/FlightGear the FlightGear Facebook page] welcomed its 6000th &amp;quot;liker&amp;quot; on October 7! The original plan was to outnumber the likers of [[Pro Flight Simulator]] and the like, but now that we've outnumbered them by far, the Facebook page can be seen as a way to provide a periodic dose of what's new, cool or fun in FlightGear. Over the past months, we've been frequently posting nice screenshots from forummembers.&lt;br /&gt;
&lt;br /&gt;
Speaking of which, [http://flightgear.org/forums the forum] is still the place to be when you're looking for support.&lt;br /&gt;
&lt;br /&gt;
=== New tutorials and screencasts ===&lt;br /&gt;
[http://icestar-fghangar.web44.net/web/ Icecode's and Star's hangar] which was created on February 2011, is now bringing a new [http://icestar-fghangar.web44.net/web/?q=node/51 Tutorials section] where a new tutorial will be uploaded each week (sometimes more often). Starting with this week's tutorial &amp;quot;[http://icestar-fghangar.web44.net/web/?q=node/54 VOR navigation]&amp;quot;. The tutorials are not going to be only limited on how to fly aircrafts but also we'll be showing you tips on how to develop aircrafts, scenery, liveries and many other things. Have fun reading and enjoy your flights!&lt;br /&gt;
&lt;br /&gt;
=== Forum news ===&lt;br /&gt;
=== Multiplayer ===&lt;br /&gt;
=== Virtual airlines ===&lt;br /&gt;
=== FlightGear events ===&lt;br /&gt;
&lt;br /&gt;
== FlightGear in the news==&lt;br /&gt;
FlightGear was featured in the October edition of [http://microsim.over-blog.com/ MicroSim], a French flight simulation magazine. The two paged article (click images below to open larger versions) discussed our latest release 2.4.0. Altough MSFS and X-Plane have better graphics and more complete aircraft, the writer considers FlightGear a worthwhile alternative. &lt;br /&gt;
&lt;br /&gt;
The next edition of MicroSim will include a tutorial, to guide new users through the program.&lt;br /&gt;
&lt;br /&gt;
[[File:MicroSim_oct2011_1.png|300px]]&lt;br /&gt;
[[File:MicroSim_oct2011_2.png|286px]]&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
== And finally ... ==&lt;br /&gt;
=== Contributing ===&lt;br /&gt;
One of the regular thoughts expressed on the FlightGear forums is &amp;quot;I'd like to contribute but I don't know how to program, and I don't have the time&amp;quot;. Unfortunately, there is a common mis-conception that contributing requires programming and lots of free time. In fact, there are a huge range of ways to contribute to the project without needing to write code or spending days working on something. &lt;br /&gt;
&lt;br /&gt;
For ideas on starting to contribute to FlightGear, you may want to check out: [[Volunteer]].&lt;br /&gt;
&lt;br /&gt;
=== Call for volunteers ===&lt;br /&gt;
*[[Translation requests| To '''translate''' (wiki) we must '''translate translate'''!]] so, Help and translate [[Translation requests| translate]] Wenn Sie Aus Deutschland sind or Jeśli jesteś z Polski, and from anywhere!&lt;br /&gt;
**Special thanks to Alexmdv and Michat for their translation work! (And Hamster and so many others)&lt;br /&gt;
&lt;br /&gt;
* The [[OpenRadar]] project is looking for a new maintainer.&lt;br /&gt;
* The [[FGFSPM]] (FlightGear Package Manager) is looking for a new maintainer.&lt;br /&gt;
&lt;br /&gt;
=== Did you know ===&lt;br /&gt;
...that you can comment on the newsletter in the [http://www.flightgear.org/forums/viewforum.php?f=50 forums]? Help us improve *your* newsletter! Give comments, suggestions and feedback!&lt;br /&gt;
&lt;br /&gt;
[[Category:FlightGear Newsletter]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:Jumbo_eham_view.png&amp;diff=36661</id>
		<title>File:Jumbo eham view.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:Jumbo_eham_view.png&amp;diff=36661"/>
		<updated>2011-11-01T04:21:53Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: October 2011 Part 1 Screenshot Contest Winner&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;October 2011 Part 1 Screenshot Contest Winner&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:Bone1.png&amp;diff=36660</id>
		<title>File:Bone1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:Bone1.png&amp;diff=36660"/>
		<updated>2011-11-01T04:21:18Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: October 2011 Part 2 Screenshot Contest Winner&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;October 2011 Part 2 Screenshot Contest Winner&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=35473</id>
		<title>User:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User:Alphamedia&amp;diff=35473"/>
		<updated>2011-10-06T03:42:35Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to '''&amp;quot;kyokoyama&amp;quot; (K. A. Yokoyama)''''s page!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Contributions ==&lt;br /&gt;
* [[FlightGear Newsletter]] Aug. 2009-Feb. 2010, Oct. 2010-Dec. 2010, Jul. 2011-&lt;br /&gt;
* Picture of the Week 2010-44, 50. 2011-30, 31, 32, 33, 40.&lt;br /&gt;
* Boeing 737-900ER Model&lt;br /&gt;
* [[Boeing 767-300]] Cockpit Voice Acting&lt;br /&gt;
* [[Atlas Virtual Airlines]]&lt;br /&gt;
* [[Tokyo Haneda International Airport]] Wiki Page&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-40&amp;diff=35119</id>
		<title>Template:POTW/2011-40</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-40&amp;diff=35119"/>
		<updated>2011-09-29T00:06:39Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;  | align=&amp;quot;center&amp;quot; |300px |- | align=&amp;quot;left&amp;quot; | The '''Boeing 787''' is a medium-sized commerc...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[File:787.jpg|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | The '''Boeing 787''' is a medium-sized commercial jetliner that was delivered to launch customer '''All Nippon Airways''' (pictured), who started flying the jet on September 28. The 787, despite its three-year delay in development and production, has been widely publicized for its new design aimed for a quieter, more efficient and comfortable flight that is also friendlier to the environment.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[Boeing 787|Read more...]] | [[:Category:Picture of the week 2011|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2011]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_August_2011&amp;diff=33654</id>
		<title>FlightGear Newsletter August 2011</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_August_2011&amp;diff=33654"/>
		<updated>2011-08-27T20:47:00Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Corrected &amp;quot;User:&amp;quot; Link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{newsletter}}&lt;br /&gt;
{{TOC_right|limit=2}}&lt;br /&gt;
&lt;br /&gt;
''We would like to emphasize that the monthly newsletter can not live without the contributions of FlightGear users and developers. Everyone with a wiki account (free to register) can edit the newsletter and every contribution is welcome. So if you know about any FlightGear related projects such as for example updated scenery or aircraft, please do feel invited to add such news to the newsletter.''&lt;br /&gt;
&lt;br /&gt;
== New FlightGear Version Finally Released ==&lt;br /&gt;
On August 17 after a year and a half of hard work, [http://www.flightgear.org/announcements/flightgear-v2-4-0-released/ FlightGear v2.4 has finally been released!]  Thanks to the key developers that took the lead to overhaul the FlightGear release plan and create a regular release cycle.  Thanks also to each and every developer in every portion of the FlightGear community who have contributed to make FlightGear such a success!  [http://www.flightgear.org/download/ Please click here to jump to the download page.]&lt;br /&gt;
Starting with the v2.4 release, the development of FlightGear will now follow the [[Release Plan]], which will act as a guideline in upcoming development and regular releases of the FlightGear simulator in the form of a six-month development cycle.  In other words, if this Release Plan's suggestions are followed thoroughly, stable releases of the simulator will be created twice a year, on the 17th of February and August.&lt;br /&gt;
&lt;br /&gt;
== FlightGear.org Main Website Updated ==&lt;br /&gt;
Along with the [http://www.flightgear.org/announcements/flightgear-v2-4-0-released/ v2.4 release], the [http://www.flightgear.org FlightGear.org] web site has seen a complete overhaul during the month of August.  The new website is based on &amp;quot;wordpress&amp;quot; which supports multiple editors and allows for much easier editing and updating of content.  One interesting feature of wordpress is the ability to create &amp;quot;posts&amp;quot; and then allow anyone to add their own comments (pending approval.)  Newsletter contributors (and anyone else) are invited to create a &amp;quot;post&amp;quot; for the main flightgear.org web site.  This is a great way to promote your own project and do so in a context that allows more paragraphs, more detail, and more pictures than can fit in a newsletter article.  So please continue to submit newsletter articles, but also please consider developing a longer version for the main web site!&lt;br /&gt;
&lt;br /&gt;
== Development news ==&lt;br /&gt;
&lt;br /&gt;
=== AI/ATC interactions ===&lt;br /&gt;
[[File:Ehamrwyblock.png|thumb| Heavily congested taxiways at Schiphol after the 777-200 had been blocking active runway 24 for nearly 4 hours.]]&lt;br /&gt;
While the preparations for our upcoming release are still going on, development for the next release has already started. In early august code changes were committed, which allow FlightGear users to interact with an artifically intelligent ATC system. Currently it is possible to request startup clearance, permission for push back, as well as taxi-clearances. A brand new, and highly experimental, ground network visualization system makes it possible to taxi from parking to runway along the route given by ATC. Hold position and resume taxi instructions can be be given in order to avoid collisions with other (AI controlled) aircraft. Hand-off to a tower controller, as well as more interactive take offs, are in the planning stages. The aim is to have all stages of IFR commercial aviation traffic under ATC control before the release of flightgear 2.6.0, which is planned for early 2012.&lt;br /&gt;
&lt;br /&gt;
== Nasal for newbies ==&lt;br /&gt;
== New software Tools and Projects ==&lt;br /&gt;
=== TerraMaster ===&lt;br /&gt;
[http://code.google.com/p/terramaster TerraMaster] is a Java-based application that lets you pick-and-choose which scenery tiles you would like to sync with the FG scenery server. Ideal for those people who prefer to TerraSync preflight rather than inflight.&lt;br /&gt;
== FlightGear Addons and Mods ==&lt;br /&gt;
== In the Hangar ==&lt;br /&gt;
=== New Aircraft ===&lt;br /&gt;
[[File:A310-snap.png|thumb| Mahan Air A310-300 over Schiphol.]]&lt;br /&gt;
Icecode and Star a few months ago started the development of the [http://wiki.flightgear.org/Airbus_A310-300 Airbus A310-300]. The latest version of the model includes a detailed cockpit and a realistic YAsim FDM. You can view the development progress [http://www.flightgear.org/forums/viewtopic.php?f=4&amp;amp;t=12790 here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== TECNAM P.92 ECHO ====&lt;br /&gt;
[[File:Tecnam-P92.PNG|200px|thumb| Tecnam-P92.]]&lt;br /&gt;
A french team who likes to be called &amp;quot;The Flightgear France patrol&amp;quot; has been working on many aircrafts. It is composed of many specialists in various fields (3D, texture, FDM, nasal, xml, sound...).&lt;br /&gt;
The France patrol is proud to offer you a new airplane: the Tecnam-P92. It is probably the best ultralight aircraft available by now in Flightgear. All the instruments, electrical systems and most of the sound are realistically simulated.&lt;br /&gt;
You can download this airplane in [http://helijah.free.fr/flightgear/hangar.htm Helijah's hangar] here as well as in the GIT repository.&lt;br /&gt;
This team is currently working on other planes and helos, such as the R44, DC3 C-47 and D510. Those aircrafts can also be found in Helijah's hangar and in GIT.&lt;br /&gt;
&lt;br /&gt;
=== Updated aircraft ===&lt;br /&gt;
=== Liveries ===&lt;br /&gt;
== Scenery corner ==&lt;br /&gt;
=== Airports ===&lt;br /&gt;
== Aircraft of the month ==&lt;br /&gt;
&lt;br /&gt;
The Bombardier CRJ700 series was reviewed as this week/month's feature aircraft. You can read the full review at our wiki's [[Bombardier CRJ700 series#Aircraft of the Week.2FMonth|Bombardier CRJ700 series]] article.&lt;br /&gt;
&lt;br /&gt;
== Airport of the month ==&lt;br /&gt;
== Screenshot of the month ==&lt;br /&gt;
== Suggested flights ==&lt;br /&gt;
Set your plane at LPLA. This was an emergency landing site for the space shuttle so you will have plenty of room to take off.&lt;br /&gt;
We will have to fly an odd pattern. The reason for that: If you don't fly to high you will have some amazing views.&lt;br /&gt;
&lt;br /&gt;
Fly towards and over LPPD. Look out the window and enjoy the view. &lt;br /&gt;
Head out towards LPHR. If you feel LPHR coming near, look out the window good, you might have to pull your plane up.&lt;br /&gt;
&lt;br /&gt;
Happy flying!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Aircraft reviews ==&lt;br /&gt;
== Wiki updates ==&lt;br /&gt;
== Community news ==&lt;br /&gt;
&lt;br /&gt;
[http://wiki.flightgear.org/User:Longfly Longfly] is very proud and happy to announce the first official release of the &amp;quot;FlightgGear aircraftlist&amp;quot;. After eight months of development it contains exactly '''491 different aircrafts''' for FlightGear with screenshots (click on the thumbnails – not everyone is working yet) and download-links.&lt;br /&gt;
&lt;br /&gt;
Because it is a very long list (6127 lines of code and many images) it may take very long to load on some slow computers. So I'll implement five subpages with always 100 planes. There is also a filter, so you can get a better overview of your favorite planes.&lt;br /&gt;
&lt;br /&gt;
The list should be complete but if an aircraft is missing I urge you to report it to me [http://flightgear.bplaced.de/index.php/flugzeugliste/report-a-missing-plane (pm or forum post or mail)] – Thanks! Furthermore feedback, criticism and new ideas are always very welcome in [http://www.flightgear.org/forums/viewtopic.php?f=4&amp;amp;t=10536&amp;amp;start=45 the forum threat].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here it is: [http://flightgear.bplaced.de/aircraftlist/ '''www.flightgear.bplaced.de/aircraftlist/''']&lt;br /&gt;
&lt;br /&gt;
Have fun exploring it!&lt;br /&gt;
&lt;br /&gt;
=== Stunt Fridays Monthly Video Challenge ===&lt;br /&gt;
Stunt Friday, originally a weekly event, is a monthly event where participants compete to record videos of a given stunt, and compete to create the most interesting video and stunt.&lt;br /&gt;
The challenge for August involved landing an aircraft at the notoriously infamous former Kai Tak international airport in Hong Kong.&lt;br /&gt;
[[User:Alphamedia|Andrew Yokoyama (&amp;quot;kyokoyama&amp;quot;)]] won this month's challenge with a crosswind landing of a BAe Concorde in a storm and heavy crosswinds.&lt;br /&gt;
&lt;br /&gt;
* [http://www.youtube.com/watch?v=HnwFduqGHNM&amp;amp;feature=relmfu Announcement Video]&lt;br /&gt;
* [http://www.youtube.com/watch?v=rMX_30khbXg Winner Announcement Video]&lt;br /&gt;
* [http://www.youtube.com/watch?v=P21z6aFYeA4 Winning Video: BAe Concorde, British Airways]&lt;br /&gt;
&lt;br /&gt;
* [http://www.youtube.com/watch?v=JKxI1wYHBy4 Kyokoyama's First Video: B777, Custom Livery]&lt;br /&gt;
* [http://www.youtube.com/watch?v=6x3vQ6O6Iek&amp;amp;feature=player_embedded Ernest1984's Video: B787, House Livery]&lt;br /&gt;
* [http://www.youtube.com/watch?v=sXLy5GTuE30 CatchatyouFG's Video: A340, Cathay Pacific Airlines]&lt;br /&gt;
* [http://www.youtube.com/watch?v=bRoDzuR2rlo&amp;amp;feature=related Youssef's Video: B777, KLM]&lt;br /&gt;
* [http://www.youtube.com/watch?v=OkXr36GglEo&amp;amp;feature=player_embedded abc45's First Video: A320, Philippines Airlines]&lt;br /&gt;
* [http://www.youtube.com/watch?v=3fxxyFUyyAU&amp;amp;feature=player_embedded abc45's Second Video: A380, Singapore Airlines]&lt;br /&gt;
* [http://s979.photobucket.com/albums/ae271/MTshoot/?action=view&amp;amp;current=KaiTak13.mp4 E-Savageair's Video: B747, Cathay Pacific Airlines]&lt;br /&gt;
&lt;br /&gt;
=== FlightGear on YouTube ===&lt;br /&gt;
=== New tutorials and screencasts ===&lt;br /&gt;
=== Forum news ===&lt;br /&gt;
=== Multiplayer ===&lt;br /&gt;
=== Virtual airlines ===&lt;br /&gt;
=== FlightGear events ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
== And finally ... ==&lt;br /&gt;
=== Contributing ===&lt;br /&gt;
One of the regular thoughts expressed on the FlightGear forums is &amp;quot;I'd like to contribute but I don't know how to program, and I don't have the time&amp;quot;. Unfortunately, there is a common mis-conception that contributing requires programming and lots of free time. In fact, there are a huge range of ways to contribute to the project without needing to write code or spending days working on something. &lt;br /&gt;
&lt;br /&gt;
For ideas on starting to contribute to FlightGear, you may want to check out: [[Volunteer]].&lt;br /&gt;
&lt;br /&gt;
=== Call for volunteers ===&lt;br /&gt;
* The [[OpenRadar]] project is looking for a new maintainer.&lt;br /&gt;
* The [[FGFSPM]] (FlightGear Package Manager) is looking for a new maintainer.&lt;br /&gt;
&lt;br /&gt;
== Did you know==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:Newsletternav}}&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_August_2011&amp;diff=33653</id>
		<title>FlightGear Newsletter August 2011</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_August_2011&amp;diff=33653"/>
		<updated>2011-08-27T20:45:52Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Added &amp;quot;Stunt Fridays&amp;quot; Information&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{newsletter}}&lt;br /&gt;
{{TOC_right|limit=2}}&lt;br /&gt;
&lt;br /&gt;
''We would like to emphasize that the monthly newsletter can not live without the contributions of FlightGear users and developers. Everyone with a wiki account (free to register) can edit the newsletter and every contribution is welcome. So if you know about any FlightGear related projects such as for example updated scenery or aircraft, please do feel invited to add such news to the newsletter.''&lt;br /&gt;
&lt;br /&gt;
== New FlightGear Version Finally Released ==&lt;br /&gt;
On August 17 after a year and a half of hard work, [http://www.flightgear.org/announcements/flightgear-v2-4-0-released/ FlightGear v2.4 has finally been released!]  Thanks to the key developers that took the lead to overhaul the FlightGear release plan and create a regular release cycle.  Thanks also to each and every developer in every portion of the FlightGear community who have contributed to make FlightGear such a success!  [http://www.flightgear.org/download/ Please click here to jump to the download page.]&lt;br /&gt;
Starting with the v2.4 release, the development of FlightGear will now follow the [[Release Plan]], which will act as a guideline in upcoming development and regular releases of the FlightGear simulator in the form of a six-month development cycle.  In other words, if this Release Plan's suggestions are followed thoroughly, stable releases of the simulator will be created twice a year, on the 17th of February and August.&lt;br /&gt;
&lt;br /&gt;
== FlightGear.org Main Website Updated ==&lt;br /&gt;
Along with the [http://www.flightgear.org/announcements/flightgear-v2-4-0-released/ v2.4 release], the [http://www.flightgear.org FlightGear.org] web site has seen a complete overhaul during the month of August.  The new website is based on &amp;quot;wordpress&amp;quot; which supports multiple editors and allows for much easier editing and updating of content.  One interesting feature of wordpress is the ability to create &amp;quot;posts&amp;quot; and then allow anyone to add their own comments (pending approval.)  Newsletter contributors (and anyone else) are invited to create a &amp;quot;post&amp;quot; for the main flightgear.org web site.  This is a great way to promote your own project and do so in a context that allows more paragraphs, more detail, and more pictures than can fit in a newsletter article.  So please continue to submit newsletter articles, but also please consider developing a longer version for the main web site!&lt;br /&gt;
&lt;br /&gt;
== Development news ==&lt;br /&gt;
&lt;br /&gt;
=== AI/ATC interactions ===&lt;br /&gt;
[[File:Ehamrwyblock.png|thumb| Heavily congested taxiways at Schiphol after the 777-200 had been blocking active runway 24 for nearly 4 hours.]]&lt;br /&gt;
While the preparations for our upcoming release are still going on, development for the next release has already started. In early august code changes were committed, which allow FlightGear users to interact with an artifically intelligent ATC system. Currently it is possible to request startup clearance, permission for push back, as well as taxi-clearances. A brand new, and highly experimental, ground network visualization system makes it possible to taxi from parking to runway along the route given by ATC. Hold position and resume taxi instructions can be be given in order to avoid collisions with other (AI controlled) aircraft. Hand-off to a tower controller, as well as more interactive take offs, are in the planning stages. The aim is to have all stages of IFR commercial aviation traffic under ATC control before the release of flightgear 2.6.0, which is planned for early 2012.&lt;br /&gt;
&lt;br /&gt;
== Nasal for newbies ==&lt;br /&gt;
== New software Tools and Projects ==&lt;br /&gt;
=== TerraMaster ===&lt;br /&gt;
[http://code.google.com/p/terramaster TerraMaster] is a Java-based application that lets you pick-and-choose which scenery tiles you would like to sync with the FG scenery server. Ideal for those people who prefer to TerraSync preflight rather than inflight.&lt;br /&gt;
== FlightGear Addons and Mods ==&lt;br /&gt;
== In the Hangar ==&lt;br /&gt;
=== New Aircraft ===&lt;br /&gt;
[[File:A310-snap.png|thumb| Mahan Air A310-300 over Schiphol.]]&lt;br /&gt;
Icecode and Star a few months ago started the development of the [http://wiki.flightgear.org/Airbus_A310-300 Airbus A310-300]. The latest version of the model includes a detailed cockpit and a realistic YAsim FDM. You can view the development progress [http://www.flightgear.org/forums/viewtopic.php?f=4&amp;amp;t=12790 here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== TECNAM P.92 ECHO ====&lt;br /&gt;
[[File:Tecnam-P92.PNG|200px|thumb| Tecnam-P92.]]&lt;br /&gt;
A french team who likes to be called &amp;quot;The Flightgear France patrol&amp;quot; has been working on many aircrafts. It is composed of many specialists in various fields (3D, texture, FDM, nasal, xml, sound...).&lt;br /&gt;
The France patrol is proud to offer you a new airplane: the Tecnam-P92. It is probably the best ultralight aircraft available by now in Flightgear. All the instruments, electrical systems and most of the sound are realistically simulated.&lt;br /&gt;
You can download this airplane in [http://helijah.free.fr/flightgear/hangar.htm Helijah's hangar] here as well as in the GIT repository.&lt;br /&gt;
This team is currently working on other planes and helos, such as the R44, DC3 C-47 and D510. Those aircrafts can also be found in Helijah's hangar and in GIT.&lt;br /&gt;
&lt;br /&gt;
=== Updated aircraft ===&lt;br /&gt;
=== Liveries ===&lt;br /&gt;
== Scenery corner ==&lt;br /&gt;
=== Airports ===&lt;br /&gt;
== Aircraft of the month ==&lt;br /&gt;
&lt;br /&gt;
The Bombardier CRJ700 series was reviewed as this week/month's feature aircraft. You can read the full review at our wiki's [[Bombardier CRJ700 series#Aircraft of the Week.2FMonth|Bombardier CRJ700 series]] article.&lt;br /&gt;
&lt;br /&gt;
== Airport of the month ==&lt;br /&gt;
== Screenshot of the month ==&lt;br /&gt;
== Suggested flights ==&lt;br /&gt;
Set your plane at LPLA. This was an emergency landing site for the space shuttle so you will have plenty of room to take off.&lt;br /&gt;
We will have to fly an odd pattern. The reason for that: If you don't fly to high you will have some amazing views.&lt;br /&gt;
&lt;br /&gt;
Fly towards and over LPPD. Look out the window and enjoy the view. &lt;br /&gt;
Head out towards LPHR. If you feel LPHR coming near, look out the window good, you might have to pull your plane up.&lt;br /&gt;
&lt;br /&gt;
Happy flying!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Aircraft reviews ==&lt;br /&gt;
== Wiki updates ==&lt;br /&gt;
== Community news ==&lt;br /&gt;
&lt;br /&gt;
[http://wiki.flightgear.org/User:Longfly Longfly] is very proud and happy to announce the first official release of the &amp;quot;FlightgGear aircraftlist&amp;quot;. After eight months of development it contains exactly '''491 different aircrafts''' for FlightGear with screenshots (click on the thumbnails – not everyone is working yet) and download-links.&lt;br /&gt;
&lt;br /&gt;
Because it is a very long list (6127 lines of code and many images) it may take very long to load on some slow computers. So I'll implement five subpages with always 100 planes. There is also a filter, so you can get a better overview of your favorite planes.&lt;br /&gt;
&lt;br /&gt;
The list should be complete but if an aircraft is missing I urge you to report it to me [http://flightgear.bplaced.de/index.php/flugzeugliste/report-a-missing-plane (pm or forum post or mail)] – Thanks! Furthermore feedback, criticism and new ideas are always very welcome in [http://www.flightgear.org/forums/viewtopic.php?f=4&amp;amp;t=10536&amp;amp;start=45 the forum threat].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here it is: [http://flightgear.bplaced.de/aircraftlist/ '''www.flightgear.bplaced.de/aircraftlist/''']&lt;br /&gt;
&lt;br /&gt;
Have fun exploring it!&lt;br /&gt;
&lt;br /&gt;
=== Stunt Fridays Monthly Video Challenge ===&lt;br /&gt;
Stunt Friday, originally a weekly event, is a monthly event where participants compete to record videos of a given stunt, and compete to create the most interesting video and stunt.&lt;br /&gt;
The challenge for August involved landing an aircraft at the notoriously infamous former Kai Tak international airport in Hong Kong.&lt;br /&gt;
[[Alphamedia|Andrew Yokoyama (&amp;quot;kyokoyama&amp;quot;)]] won this month's challenge with a crosswind landing of a BAe Concorde in a storm and heavy crosswinds.&lt;br /&gt;
&lt;br /&gt;
* [http://www.youtube.com/watch?v=HnwFduqGHNM&amp;amp;feature=relmfu Announcement Video]&lt;br /&gt;
* [http://www.youtube.com/watch?v=rMX_30khbXg Winner Announcement Video]&lt;br /&gt;
* [http://www.youtube.com/watch?v=P21z6aFYeA4 Winning Video: BAe Concorde, British Airways]&lt;br /&gt;
&lt;br /&gt;
* [http://www.youtube.com/watch?v=JKxI1wYHBy4 Kyokoyama's First Video: B777, Custom Livery]&lt;br /&gt;
* [http://www.youtube.com/watch?v=6x3vQ6O6Iek&amp;amp;feature=player_embedded Ernest1984's Video: B787, House Livery]&lt;br /&gt;
* [http://www.youtube.com/watch?v=sXLy5GTuE30 CatchatyouFG's Video: A340, Cathay Pacific Airlines]&lt;br /&gt;
* [http://www.youtube.com/watch?v=bRoDzuR2rlo&amp;amp;feature=related Youssef's Video: B777, KLM]&lt;br /&gt;
* [http://www.youtube.com/watch?v=OkXr36GglEo&amp;amp;feature=player_embedded abc45's First Video: A320, Philippines Airlines]&lt;br /&gt;
* [http://www.youtube.com/watch?v=3fxxyFUyyAU&amp;amp;feature=player_embedded abc45's Second Video: A380, Singapore Airlines]&lt;br /&gt;
* [http://s979.photobucket.com/albums/ae271/MTshoot/?action=view&amp;amp;current=KaiTak13.mp4 E-Savageair's Video: B747, Cathay Pacific Airlines]&lt;br /&gt;
&lt;br /&gt;
=== FlightGear on YouTube ===&lt;br /&gt;
=== New tutorials and screencasts ===&lt;br /&gt;
=== Forum news ===&lt;br /&gt;
=== Multiplayer ===&lt;br /&gt;
=== Virtual airlines ===&lt;br /&gt;
=== FlightGear events ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
== And finally ... ==&lt;br /&gt;
=== Contributing ===&lt;br /&gt;
One of the regular thoughts expressed on the FlightGear forums is &amp;quot;I'd like to contribute but I don't know how to program, and I don't have the time&amp;quot;. Unfortunately, there is a common mis-conception that contributing requires programming and lots of free time. In fact, there are a huge range of ways to contribute to the project without needing to write code or spending days working on something. &lt;br /&gt;
&lt;br /&gt;
For ideas on starting to contribute to FlightGear, you may want to check out: [[Volunteer]].&lt;br /&gt;
&lt;br /&gt;
=== Call for volunteers ===&lt;br /&gt;
* The [[OpenRadar]] project is looking for a new maintainer.&lt;br /&gt;
* The [[FGFSPM]] (FlightGear Package Manager) is looking for a new maintainer.&lt;br /&gt;
&lt;br /&gt;
== Did you know==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:Newsletternav}}&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_August_2011&amp;diff=33417</id>
		<title>FlightGear Newsletter August 2011</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_August_2011&amp;diff=33417"/>
		<updated>2011-08-18T00:11:49Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Correction of the Release Candidate information and replacement with Official 2.4 Release Notice.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{newsletter}}&lt;br /&gt;
{{TOC_right|limit=2}}&lt;br /&gt;
&lt;br /&gt;
''We would like to emphasize that the monthly newsletter can not live without the contributions of FlightGear users and developers. Everyone with a wiki account (free to register) can edit the newsletter and every contribution is welcome. So if you know about any FlightGear related projects such as for example updated scenery or aircraft, please do feel invited to add such news to the newsletter.''&lt;br /&gt;
&lt;br /&gt;
== New FlightGear Version Finally Released ==&lt;br /&gt;
After months of hard work in the overhaul of the FlightGear regular release cycle, as well as each and every developer in every portion of the FlightGear flight simulator and its community, the '''2.4.0 release has finally been released on August 17! [http://www.flightgear.org/download/ Please click here to download].'''&lt;br /&gt;
Also, starting with the 2.4 release, the development of FlightGear will now follow the [[Release Plan]], which will act as a guideline in upcoming development and regular releases of the FlightGear simulator in the form of a six-month development cycle; in otherwords, if this Release Plan's suggestions are followed thoroughly, stable releases of the simulator will be created twice a year, on the 17th of February and August.&lt;br /&gt;
&lt;br /&gt;
== Development news ==&lt;br /&gt;
&lt;br /&gt;
=== AI/ATC interactions ===&lt;br /&gt;
[[File:Ehamrwyblock.png|thumb| Heavily congested taxiways at Schiphol after the 777-200 had been blocking active runway 24 for nearly 4 hours.]]&lt;br /&gt;
While the preparations for our upcoming release are still going on, development for the next release has already started. In early august code changes were committed, which allow FlightGear users to interact with an artifically intelligent ATC system. Currently it is possible to request startup clearance, permission for push back, as well as taxi-clearances. A brand new, and highly experimental, ground network visualization system makes it possible to taxi from parking to runway along the route given by ATC. Hold position and resume taxi instructions can be be given in order to avoid collisions with other (AI controlled) aircraft. Hand-off to a tower controller, as well as more interactive take offs, are in the planning stages. The aim is to have all stages of IFR commercial aviation traffic under ATC control before the release of flightgear 2.6.0, which is planned for early 2012.&lt;br /&gt;
&lt;br /&gt;
== Nasal for newbies ==&lt;br /&gt;
== New software Tools and Projects ==&lt;br /&gt;
== FlightGear Addons and Mods ==&lt;br /&gt;
== In the Hangar ==&lt;br /&gt;
=== New Aircraft ===&lt;br /&gt;
[[File:A310-snap.png|thumb| Mahan Air A310-300 over Schiphol.]]&lt;br /&gt;
Icecode and Star a few months ago started the development of the [http://wiki.flightgear.org/Airbus_A310-300 Airbus A310-300]. The latest version of the model includes a detailed cockpit and a realistic YAsim FDM. You can view the development progress [http://www.flightgear.org/forums/viewtopic.php?f=4&amp;amp;t=12790 here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== TECNAM P.92 ECHO ====&lt;br /&gt;
[[File:Tecnam-P92.PNG|200px|thumb| Tecnam-P92.]]&lt;br /&gt;
A french team who likes to be called &amp;quot;The Flightgear France patrol&amp;quot; has been working on many aircrafts. It is composed of many specialists in various fields (3D, texture, FDM, nasal, xml, sound...).&lt;br /&gt;
The France patrol is proud to offer you a new airplane: the Tecnam-P92. It is probably the best ultralight aircraft available by now in Flightgear. All the instruments, electrical systems and most of the sound are realistically simulated.&lt;br /&gt;
You can download this airplane in [http://helijah.free.fr/flightgear/hangar.htm Helijah's hangar] here as well as in the GIT repository.&lt;br /&gt;
This team is currently working on other planes and helos, such as the R44, DC3 C-47 and D510. Those aircrafts can also be found in Helijah's hangar and in GIT.&lt;br /&gt;
&lt;br /&gt;
=== Updated aircraft ===&lt;br /&gt;
=== Liveries ===&lt;br /&gt;
== Scenery corner ==&lt;br /&gt;
=== Airports ===&lt;br /&gt;
== Aircraft of the month ==&lt;br /&gt;
&lt;br /&gt;
The Bombardier CRJ700 series was reviewed as this week/month's feature aircraft. You can read the full review at our wiki's [[Bombardier CRJ700 series#Aircraft of the Week.2FMonth|Bombardier CRJ700 series]] article.&lt;br /&gt;
&lt;br /&gt;
== Airport of the month ==&lt;br /&gt;
== Screenshot of the month ==&lt;br /&gt;
== Suggested flights ==&lt;br /&gt;
== Aircraft reviews ==&lt;br /&gt;
== Wiki updates ==&lt;br /&gt;
== Community news ==&lt;br /&gt;
&lt;br /&gt;
[http://wiki.flightgear.org/User:Longfly Longfly] is very proud and happy to announce the first official release of the &amp;quot;FlightgGear aircraftlist&amp;quot;. After eight months of development it contains exactly '''491 different aircrafts''' for FlightGear with screenshots (click on the thumbnails – not everyone is working yet) and download-links.&lt;br /&gt;
&lt;br /&gt;
Because it is a very long list (6127 lines of code and many images) it may take very long to load on some slow computers. So I'll implement five subpages with always 100 planes. There is also a filter, so you can get a better overview of your favorite planes.&lt;br /&gt;
&lt;br /&gt;
The list should be complete but if an aircraft is missing I urge you to report it to me [http://flightgear.bplaced.de/index.php/flugzeugliste/report-a-missing-plane (pm or forum post or mail)] – Thanks! Furthermore feedback, criticism and new ideas are always very welcome in [http://www.flightgear.org/forums/viewtopic.php?f=4&amp;amp;t=10536&amp;amp;start=45 the forum threat].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here it is: [http://flightgear.bplaced.de/aircraftlist/ '''www.flightgear.bplaced.de/aircraftlist/''']&lt;br /&gt;
&lt;br /&gt;
Have fun exploring it!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== FlightGear on YouTube ===&lt;br /&gt;
* CatchatyouFG has [http://www.youtube.com/watch?v=sXLy5GTuE30 uploaded a video], and he lands an [[Airbus A340-600]] (with engines on fire in the beautiful Cathay Pacific livery) at Kai Tak Airport (VHXX) as a submission to Osjcag's monthly FlightGear community challenge.&lt;br /&gt;
&lt;br /&gt;
=== New tutorials and screencasts ===&lt;br /&gt;
=== Forum news ===&lt;br /&gt;
=== Multiplayer ===&lt;br /&gt;
=== Virtual airlines ===&lt;br /&gt;
=== FlightGear events ===&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
== And finally ... ==&lt;br /&gt;
=== Contributing ===&lt;br /&gt;
One of the regular thoughts expressed on the FlightGear forums is &amp;quot;I'd like to contribute but I don't know how to program, and I don't have the time&amp;quot;. Unfortunately, there is a common mis-conception that contributing requires programming and lots of free time. In fact, there are a huge range of ways to contribute to the project without needing to write code or spending days working on something. &lt;br /&gt;
&lt;br /&gt;
For ideas on starting to contribute to FlightGear, you may want to check out: [[Volunteer]].&lt;br /&gt;
&lt;br /&gt;
=== Call for volunteers ===&lt;br /&gt;
* The [[OpenRadar]] project is looking for a new maintainer.&lt;br /&gt;
* The [[FGFSPM]] (FlightGear Package Manager) is looking for a new maintainer.&lt;br /&gt;
&lt;br /&gt;
== Did you know==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Template:Newsletternav}}&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Main_Page&amp;diff=33400</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Main_Page&amp;diff=33400"/>
		<updated>2011-08-17T16:57:18Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Updated Release Notice to 2.6, Linked to FG Download Page, Release Candidate link removed.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--------------------------------Banner across top of page------------------------------&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:100%; background:#efefef; margin-top:1.2em; border:1px solid #d9e2e2;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:100%; color:#000&amp;quot;| &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-------------&amp;quot;Welcome to FlightGear&amp;quot; and article count----------&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:100%; border:solid 0px; background:none;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:100%; text-align:center; white-space:nowrap; color:#000;&amp;quot;|&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:162%; border:none; margin:0; padding:.1em; color:#000;&amp;quot;&amp;gt;Welcome to the FlightGear Wiki!&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;articlecount&amp;quot; style=&amp;quot;width:100%; text-align:center; font-size:85%;&amp;quot;&amp;gt;now with [[Special:Statistics|{{NUMBEROFARTICLES}}]] articles&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[file:de.gif|link=:de:Hauptseite]]&lt;br /&gt;
[[file:en.gif|link=:en:Main Page]]&lt;br /&gt;
[[file:es.gif|link=:es:Portada]]&lt;br /&gt;
[[file:fi.gif|link=:fi:Etusivu]]&lt;br /&gt;
[[file:fr.gif|link=:fr:Accueil]]&lt;br /&gt;
[[file:nl.gif|link=:nl:Hoofdpagina]]&lt;br /&gt;
[[file:pl.gif|link=:pl:Strona główna]]&lt;br /&gt;
[[file:pt.gif|link=:pt:Página principal]]&lt;br /&gt;
[[file:ru.gif|link=:ru:Заглавная страница]]&lt;br /&gt;
[[file:zh.gif|link=:zh:Main Page]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--------------Portal list on righthand side----------&amp;gt;&lt;br /&gt;
|style=&amp;quot;width:11%; font-size:95%; color:#000;&amp;quot;|&lt;br /&gt;
|}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
[[----------Strapline immediately below banner----------&amp;gt;&lt;br /&gt;
{|style=&amp;quot;width:100%; background:none; margin:-.8em 0 -.7em 0;&amp;quot;&lt;br /&gt;
|style=&amp;quot;font-size:95%; padding:10px 0; margin:0px; text-align:left; white-space:nowrap; color:#000;&amp;quot;| [[Help:Tutorial|Editing]]&amp;amp;nbsp;'''·''' [[Help:Contents|Help]]&lt;br /&gt;
|style=&amp;quot;font-size:95%; padding:10px 0; margin:0px; text-align: right; white-space:nowrap; color:#000;&amp;quot;| [[Special:Allpages|All pages]]&amp;amp;nbsp;'''·''' [[Special:Search|Search]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border-spacing:8px; margin:0px -8px;&amp;quot;&lt;br /&gt;
|class=&amp;quot;MainPageBG&amp;quot; style=&amp;quot;width:100%; border:1px solid #d9e2e2; background:#efefef; vertical-align:top; color:#000;&amp;quot;|&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; cellpadding=&amp;quot;1&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top; background:#efefef;&amp;quot;&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;FlightGear Flight Simulator&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
'''[[FlightGear]]''' is a flight-simulator created by volunteers, and released as free, open-source [[GNU General Public License|GPL]] software, available for download [http://www.flightgear.org/Downloads/ here]. FlightGear has a graphical user interface for flying, and different types of flight models available. It has been used for [[Professional and educational FlightGear users|academic research, education]], and for fun. &lt;br /&gt;
&lt;br /&gt;
The complete project source code is available via [[Git]], licensed under the [[GNU General Public License]]. FlightGear's open architecture encourages volunteer [[Volunteer|contributions]], as well as the exploration of a wide variety of flight simulator concepts. It has inspired a number of [[FlightGear related projects|related projects]].  &lt;br /&gt;
&lt;br /&gt;
FlightGear comes with a set of illustrated documentation, notably &amp;quot;The Manual&amp;quot;, which is available as [http://mapserver.flightgear.org/getstart.pdf PDF] and [http://www.flightgear.org/Docs/getstart/getstart.html HTML].&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;background:none;&amp;quot;&lt;br /&gt;
|style=&amp;quot;font-size:100%; padding-left:10px; padding-right:20px; margin:0px; vertical-align: top; text-align:left; white-space:nowrap; color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Portal:User|Getting Started]]'''&lt;br /&gt;
** [[New to FlightGear]]&lt;br /&gt;
** [[FAQ]]&lt;br /&gt;
** [[:Category:Howto|Tutorials]]&lt;br /&gt;
**'''[[Portal:User|More...]]'''&lt;br /&gt;
|style=&amp;quot;font-size:100%; padding-left:20px; margin:0px; vertical-align: top; text-align: left; border-left: 2px solid #d9e2e2; white-space:nowrap; color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Portal:Pilot|Using FlightGear]]'''&lt;br /&gt;
** [[Aircraft|Additional Aircraft]]&lt;br /&gt;
** [[Flying the helicopter|Helicopter flying]]&lt;br /&gt;
** [[Portal:Pilot|Advanced Pilot Training]]&lt;br /&gt;
** '''[[Portal:Pilot|More...]]'''&lt;br /&gt;
|style=&amp;quot;font-size:100%; padding-left:20px; margin:0px; vertical-align: top; text-align: left; border-left: 2px solid #d9e2e2; white-space:nowrap; color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Portal:Developer|Developing FlightGear]]'''&lt;br /&gt;
** [[Portal:Developer/Aircraft|Creating Aircraft]]&lt;br /&gt;
** [[Portal:Developer/Scenery|Creating Scenery]]&lt;br /&gt;
** [[Building FlightGear]]&lt;br /&gt;
** '''[[Portal:Developer|More...]]'''&lt;br /&gt;
|}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border-spacing:8px; margin:0px -8px;&amp;quot;&lt;br /&gt;
|class=&amp;quot;MainPageBG&amp;quot; style=&amp;quot;width:50%; border:1px solid #d9e2e2; background:#efefef; vertical-align:top; color:#000;&amp;quot;|&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top; background:#efefef;&amp;quot;&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;FlightGear Features&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Aircraft]]'''&lt;br /&gt;
** FlightGear simulates aircraft from hang-gliders to jumbo jets&lt;br /&gt;
** [[Table of models|Dozens of additional aircraft]] are available for download&lt;br /&gt;
** Users can add new aircraft designs, or edit existing models&lt;br /&gt;
&lt;br /&gt;
* '''[[:Category:Airports|Airports]]'''&lt;br /&gt;
** FlightGear includes a current database of over 20,000 real airports&lt;br /&gt;
** Airport layouts and 3D models can be edited with free tools&lt;br /&gt;
&lt;br /&gt;
* '''[[Scenery]]'''&lt;br /&gt;
** Basic scenery is available for almost the entire globe&lt;br /&gt;
** Land elevation is based on [http://www.nasa.gov/ NASA] data&lt;br /&gt;
** New scenery can be downloaded automatically while you fly&lt;br /&gt;
** Some cities include 3D buildings and landmarks.&lt;br /&gt;
&lt;br /&gt;
* '''GPL License'''&lt;br /&gt;
** FlightGear is free, open-source [[GPL]] software&lt;br /&gt;
** Open architecture encourages [[FlightGear related projects|related Projects]]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;Did you know...&amp;lt;/h2&amp;gt;   &lt;br /&gt;
|-   &lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;|  &lt;br /&gt;
{{Did you know}}&lt;br /&gt;
|-&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;FlightGear Promotion&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;|&lt;br /&gt;
* [[FlightGear Reviews]]&lt;br /&gt;
* [[FlightGear Videos]]&lt;br /&gt;
* [[FlightGear on Facebook]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
|class=&amp;quot;MainPageBG&amp;quot; style=&amp;quot;width:50%; border:1px solid #d9e2e2; background:#efefef; vertical-align:top&amp;quot;|&lt;br /&gt;
&amp;lt;eventcountdown date=&amp;quot;17-February-2012&amp;quot;&amp;gt;&amp;lt;div style=&amp;quot;border:solid 3px green; background:none; text-align:center; padding: 5px; margin: 8px;&amp;quot;&amp;gt;Our [[Git]] repositories are '''open''' for development.&amp;lt;br/&amp;gt;'''FlightGear Release 2.4.0 is now available! [http://www.flightgear.org/download/ Click here to go to the download page].'''&amp;lt;br/&amp;gt;Release 2.6.0 will be available in '''&amp;lt;daysuntil in=&amp;quot;days&amp;quot;&amp;gt;17-February-2012&amp;lt;/daysuntil&amp;gt;'''. See [[Release Plan]] for details.&amp;lt;/div&amp;gt;&amp;lt;/eventcountdown&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top; background:#efefef;&amp;quot;&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;Picture of the week&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
{{POTW/{{CURRENTYEAR}}-{{CURRENTWEEK}}}}&lt;br /&gt;
|-   &lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;News&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
* [[FlightGear Newsletter {{MONTHNAME|{{LASTMONTHNAME}}}} {{CURRENTYEAR}}]] ([[List of FlightGear Newsletters|archive]])&lt;br /&gt;
* '''May, 2011:''' FlightGear wiki exceeded 8.000.000 pageviews&lt;br /&gt;
* '''May, 2010:''' FlightGear wiki exceeded 4.000.000 pageviews&lt;br /&gt;
* '''February 25, 2010:''' [[FlightGear]] 2.0.0 released&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
&lt;br /&gt;
[[de:Hauptseite]]&lt;br /&gt;
[[es:Portada]]&lt;br /&gt;
[[fi:Etusivu]]&lt;br /&gt;
[[fr:Accueil]]&lt;br /&gt;
[[nl:Hoofdpagina]]&lt;br /&gt;
[[pt:Página principal]]&lt;br /&gt;
[[pl:Strona główna]]&lt;br /&gt;
[[ru:Заглавная страница]]&lt;br /&gt;
[[zh:Main Page]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-33&amp;diff=33363</id>
		<title>Template:POTW/2011-33</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-33&amp;diff=33363"/>
		<updated>2011-08-15T17:44:03Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Text changed to provide more detail.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[File:Winner.jpg|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | This picture featuring a Boeing 787 of LOT Polish Airlines above an unidentified mountain range, first featured in the '''May 2011 edition of the FlightGear Newsletter''', is the winner of a Polish FlightGear forum screenshot contest.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[FlightGear Newsletter May 2011#Screenshot_of_the_month|Read more...]] | [[:Category:Picture of the week 2011|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2011]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-32&amp;diff=33144</id>
		<title>Template:POTW/2011-32</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-32&amp;diff=33144"/>
		<updated>2011-08-09T02:21:59Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Correction of &amp;quot;Read More&amp;quot; link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[File:737-300_IslandVA.jpg|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | '''Island Virtual Airways''' is one of the most prominent virtual airlines and organized community groups created in FlightGear, which used to fly around various areas around the Caribbeans. The image shows one of their Boeing 737-300s on final approach for its former hub at Sint Marteen (SXM/TNCM).&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[Island Virtual Airways|Read more...]] | [[:Category:Picture of the week 2011|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2011]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-32&amp;diff=33045</id>
		<title>Template:POTW/2011-32</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-32&amp;diff=33045"/>
		<updated>2011-07-30T22:21:09Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;  | align=&amp;quot;center&amp;quot; |300px |- | align=&amp;quot;left&amp;quot; | '''Island Virtual Airways''' is o...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[File:737-300_IslandVA.jpg|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | '''Island Virtual Airways''' is one of the most prominent virtual airlines and organized community groups created in FlightGear, which used to fly around various areas around the Caribbeans. The image shows one of their Boeing 737-300s on final approach for its former hub at Sint Marteen (SXM/TNCM).&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[Los Angeles International Airport|Read more...]] | [[:Category:Picture of the week 2011|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2011]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-31&amp;diff=33044</id>
		<title>Template:POTW/2011-31</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-31&amp;diff=33044"/>
		<updated>2011-07-30T22:15:56Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;  | align=&amp;quot;center&amp;quot; |300px |- | align=&amp;quot;left&amp;quot; | '''Dubai International Airport''' ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[File:Dubai_scenery_2.png|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | '''Dubai International Airport''' (IATA: '''DXB''', ICAO: '''OMDB''') is the primary international airport of the largest city of the United Arab Emirates near the city of Dubai. The picture is the scenery model of one of the famous Palm Islands manmade island in the area.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[Dubai International Airport|Read more...]] | [[:Category:Picture of the week 2011|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2011]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=User_talk:Alphamedia&amp;diff=33012</id>
		<title>User talk:Alphamedia</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=User_talk:Alphamedia&amp;diff=33012"/>
		<updated>2011-07-25T10:11:32Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-30&amp;diff=33009</id>
		<title>Template:POTW/2011-30</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2011-30&amp;diff=33009"/>
		<updated>2011-07-25T00:29:30Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with &amp;quot;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;  | align=&amp;quot;center&amp;quot; |300px |- | align=&amp;quot;left&amp;quot; | '''Los Angeles International Airport'...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[File:Klax-overall.jpg|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | '''Los Angeles International Airport''' (IATA: '''LAX''', ICAO: '''KLAX''') is one of the major airport of the metropolis of Los Angeles, as well as for Southern California and entire Western coast of the Continental United States of America.&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[Los Angeles International Airport|Read more...]] | [[:Category:Picture of the week 2011|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2011]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Main_Page&amp;diff=33008</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Main_Page&amp;diff=33008"/>
		<updated>2011-07-25T00:22:48Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Undo revision 32947 by T3r (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--------------------------------Banner across top of page------------------------------&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:100%; background:#efefef; margin-top:1.2em; border:1px solid #d9e2e2;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:100%; color:#000&amp;quot;| &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-------------&amp;quot;Welcome to FlightGear&amp;quot; and article count----------&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:100%; border:solid 0px; background:none;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:100%; text-align:center; white-space:nowrap; color:#000;&amp;quot;|&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:162%; border:none; margin:0; padding:.1em; color:#000;&amp;quot;&amp;gt;Welcome to the FlightGear Wiki!&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;articlecount&amp;quot; style=&amp;quot;width:100%; text-align:center; font-size:85%;&amp;quot;&amp;gt;now with [[Special:Statistics|{{NUMBEROFARTICLES}}]] articles&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[file:de.gif|link=:de:Hauptseite]]&lt;br /&gt;
[[file:en.gif|link=:en:Main Page]]&lt;br /&gt;
[[file:es.gif|link=:es:Portada]]&lt;br /&gt;
[[file:fi.gif|link=:fi:Etusivu]]&lt;br /&gt;
[[file:fr.gif|link=:fr:Accueil]]&lt;br /&gt;
[[file:nl.gif|link=:nl:Hoofdpagina]]&lt;br /&gt;
[[file:pl.gif|link=:pl:Strona główna]]&lt;br /&gt;
[[file:pt.gif|link=:pt:Página principal]]&lt;br /&gt;
[[file:ru.gif|link=:ru:Заглавная страница]]&lt;br /&gt;
[[file:zh.gif|link=:zh:Main Page]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--------------Portal list on righthand side----------&amp;gt;&lt;br /&gt;
|style=&amp;quot;width:11%; font-size:95%; color:#000;&amp;quot;|&lt;br /&gt;
|}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
[[----------Strapline immediately below banner----------&amp;gt;&lt;br /&gt;
{|style=&amp;quot;width:100%; background:none; margin:-.8em 0 -.7em 0;&amp;quot;&lt;br /&gt;
|style=&amp;quot;font-size:95%; padding:10px 0; margin:0px; text-align:left; white-space:nowrap; color:#000;&amp;quot;| [[Help:Tutorial|Editing]]&amp;amp;nbsp;'''·''' [[Help:Contents|Help]]&lt;br /&gt;
|style=&amp;quot;font-size:95%; padding:10px 0; margin:0px; text-align: right; white-space:nowrap; color:#000;&amp;quot;| [[Special:Allpages|All pages]]&amp;amp;nbsp;'''·''' [[Special:Search|Search]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border-spacing:8px; margin:0px -8px;&amp;quot;&lt;br /&gt;
|class=&amp;quot;MainPageBG&amp;quot; style=&amp;quot;width:100%; border:1px solid #d9e2e2; background:#efefef; vertical-align:top; color:#000;&amp;quot;|&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; cellpadding=&amp;quot;1&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top; background:#efefef;&amp;quot;&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;FlightGear Flight Simulator&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
'''[[FlightGear]]''' is a flight-simulator created by volunteers, and released as free, open-source [[GNU General Public License|GPL]] software, available for download [http://www.flightgear.org/Downloads/ here]. FlightGear has a graphical user interface for flying, and different types of flight models available. It has been used for [[Professional and educational FlightGear users|academic research, education]], and for fun. &lt;br /&gt;
&lt;br /&gt;
The complete project source code is available via [[Git]], licensed under the [[GNU General Public License]]. FlightGear's open architecture encourages volunteer [[Volunteer|contributions]], as well as the exploration of a wide variety of flight simulator concepts. It has inspired a number of [[FlightGear related projects|related projects]].  &lt;br /&gt;
&lt;br /&gt;
FlightGear comes with a set of illustrated documentation, notably &amp;quot;The Manual&amp;quot;, which is available as [http://mapserver.flightgear.org/getstart.pdf PDF] and [http://www.flightgear.org/Docs/getstart/getstart.html HTML].&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;background:none;&amp;quot;&lt;br /&gt;
|style=&amp;quot;font-size:100%; padding-left:10px; padding-right:20px; margin:0px; vertical-align: top; text-align:left; white-space:nowrap; color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Portal:User|Getting Started]]'''&lt;br /&gt;
** [[New to FlightGear]]&lt;br /&gt;
** [[FAQ]]&lt;br /&gt;
** [[:Category:Howto|Tutorials]]&lt;br /&gt;
**'''[[Portal:User|More...]]'''&lt;br /&gt;
|style=&amp;quot;font-size:100%; padding-left:20px; margin:0px; vertical-align: top; text-align: left; border-left: 2px solid #d9e2e2; white-space:nowrap; color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Portal:Pilot|Using FlightGear]]'''&lt;br /&gt;
** [[Aircraft|Additional Aircraft]]&lt;br /&gt;
** [[Flying the helicopter|Helicopter flying]]&lt;br /&gt;
** [[Portal:Pilot|Advanced Pilot Training]]&lt;br /&gt;
** '''[[Portal:Pilot|More...]]'''&lt;br /&gt;
|style=&amp;quot;font-size:100%; padding-left:20px; margin:0px; vertical-align: top; text-align: left; border-left: 2px solid #d9e2e2; white-space:nowrap; color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Portal:Developer|Developing FlightGear]]'''&lt;br /&gt;
** [[Portal:Developer/Aircraft|Creating Aircraft]]&lt;br /&gt;
** [[Portal:Developer/Scenery|Creating Scenery]]&lt;br /&gt;
** [[Building FlightGear]]&lt;br /&gt;
** '''[[Portal:Developer|More...]]'''&lt;br /&gt;
|}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border-spacing:8px; margin:0px -8px;&amp;quot;&lt;br /&gt;
|class=&amp;quot;MainPageBG&amp;quot; style=&amp;quot;width:50%; border:1px solid #d9e2e2; background:#efefef; vertical-align:top; color:#000;&amp;quot;|&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top; background:#efefef;&amp;quot;&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;FlightGear Features&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Aircraft]]'''&lt;br /&gt;
** FlightGear simulates aircraft from hang-gliders to jumbo jets&lt;br /&gt;
** [[Table of models|Dozens of additional aircraft]] are available for download&lt;br /&gt;
** Users can add new aircraft designs, or edit existing models&lt;br /&gt;
&lt;br /&gt;
* '''[[:Category:Airports|Airports]]'''&lt;br /&gt;
** FlightGear includes a current database of over 20,000 real airports&lt;br /&gt;
** Airport layouts and 3D models can be edited with free tools&lt;br /&gt;
&lt;br /&gt;
* '''[[Scenery]]'''&lt;br /&gt;
** Basic scenery is available for almost the entire globe&lt;br /&gt;
** Land elevation is based on [http://www.nasa.gov/ NASA] data&lt;br /&gt;
** New scenery can be downloaded automatically while you fly&lt;br /&gt;
** Some cities include 3D buildings and landmarks.&lt;br /&gt;
&lt;br /&gt;
* '''GPL License'''&lt;br /&gt;
** FlightGear is free, open-source [[GPL]] software&lt;br /&gt;
** Open architecture encourages [[FlightGear related projects|related Projects]]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;Did you know...&amp;lt;/h2&amp;gt;   &lt;br /&gt;
|-   &lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;|  &lt;br /&gt;
{{Did you know}}&lt;br /&gt;
|-&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;FlightGear Promotion&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;|&lt;br /&gt;
* [[FlightGear Reviews]]&lt;br /&gt;
* [[FlightGear Videos]]&lt;br /&gt;
* [[FlightGear on Facebook]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
|class=&amp;quot;MainPageBG&amp;quot; style=&amp;quot;width:50%; border:1px solid #d9e2e2; background:#efefef; vertical-align:top&amp;quot;|&lt;br /&gt;
&amp;lt;eventcountdown date=&amp;quot;17-August-2011&amp;quot;&amp;gt;&amp;lt;div style=&amp;quot;border:solid 3px orange; background:none; text-align:center; padding: 5px; margin: 8px;&amp;quot;&amp;gt;Our [[Git]] repositories will be '''closed''' for commit/push on Sun, 17th 08:00UTC - 10:00 UTC.&amp;lt;br/&amp;gt;In preperation for a new release that is planned in '''&amp;lt;daysuntil in=&amp;quot;days&amp;quot;&amp;gt;17-August-2011&amp;lt;/daysuntil&amp;gt;'''. See [[Release Plan]] for details.&amp;lt;/div&amp;gt;&amp;lt;/eventcountdown&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top; background:#efefef;&amp;quot;&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;Picture of the week&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
{{POTW/{{CURRENTYEAR}}-{{CURRENTWEEK}}}}&lt;br /&gt;
|-   &lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;News&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
* [[FlightGear Newsletter {{MONTHNAME|{{LASTMONTHNAME}}}} {{CURRENTYEAR}}]] ([[List of FlightGear Newsletters|archive]])&lt;br /&gt;
* '''May, 2011:''' FlightGear wiki exceeded 8.000.000 pageviews&lt;br /&gt;
* '''May, 2010:''' FlightGear wiki exceeded 4.000.000 pageviews&lt;br /&gt;
* '''February 25, 2010:''' [[FlightGear]] 2.0.0 released&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
&lt;br /&gt;
[[de:Hauptseite]]&lt;br /&gt;
[[es:Portada]]&lt;br /&gt;
[[fi:Etusivu]]&lt;br /&gt;
[[fr:Accueil]]&lt;br /&gt;
[[nl:Hoofdpagina]]&lt;br /&gt;
[[pt:Página principal]]&lt;br /&gt;
[[pl:Strona główna]]&lt;br /&gt;
[[ru:Заглавная страница]]&lt;br /&gt;
[[zh:Main Page]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_December_2010&amp;diff=26878</id>
		<title>FlightGear Newsletter December 2010</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_December_2010&amp;diff=26878"/>
		<updated>2010-12-26T03:00:29Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Addition of Papabear's Vinson Event&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{newsletter}}&lt;br /&gt;
{{TOC_right}}&lt;br /&gt;
''We would like to emphasize that the monthly newsletter can not live without the contributions of FlightGear users and developers. Everyone with a wiki account (free to register) can edit the newsletter and every contribution is welcome. So if you know about any FlightGear related projects such as for example updated scenery or aircraft, please do feel invited to add such news to the newsletter.''&lt;br /&gt;
&lt;br /&gt;
==2010 annual==&lt;br /&gt;
2010 was the year in which:&lt;br /&gt;
* FlightGear 2.0 was released.&lt;br /&gt;
* most of the existing virtual airlines were merged into [[Atlas Virtual Airlines]], making it the largest and by far most active FlightGear based airline.&lt;br /&gt;
* shaders started to be used all over the sim, introducing some new graphical eye candy as semi-realistic water reflections, 3D cities.&lt;br /&gt;
* the CVS servers broke down after a hardware failure, leading to our move to Git.&lt;br /&gt;
* detailed landclassing was created for various locations around the world.&lt;br /&gt;
* anaglyphic (3D) was introduced; making FlightGear the first flightsim with built-in 3D support.&lt;br /&gt;
&lt;br /&gt;
== FlightGear events ==&lt;br /&gt;
== Call for volunteers ==&lt;br /&gt;
The [[OpenRadar]] project is looking for a new maintainer.&lt;br /&gt;
&lt;br /&gt;
The [[TerraGear GUI]] project is looking for programmers to help create a GUI frontend for [[TerraGear]] [http://flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=7485#p102005].&lt;br /&gt;
&lt;br /&gt;
The [[FGFSPM]] (FlightGear Package Manager) is looking for a new maintainer.&lt;br /&gt;
&lt;br /&gt;
== Development news ==&lt;br /&gt;
[[User:T3r|Torsten]] improved the handling of reduced visibility due to fog, mist or haze. The global weather now interprets weather phenomena causing reduced visibility. The code places a cloud layer starting at the ground and reaching up to a certain altitude. After climbing through this layer, visibility increases rapidly, just like in real life.&lt;br /&gt;
As a side effect, the opacity of 2d cloud layers are now settable via the property tree. Also accessible at the property tree are the decoded weather phenomena from METAR reports along with its descriptions and intensity.&lt;br /&gt;
&lt;br /&gt;
== Nasal for newbies ==&lt;br /&gt;
== New software tools and projects ==&lt;br /&gt;
&lt;br /&gt;
== FlightGear addons and mods ==&lt;br /&gt;
== In the hangar ==&lt;br /&gt;
=== New aircraft ===&lt;br /&gt;
&lt;br /&gt;
====Bell AH-1 Cobra====&lt;br /&gt;
[[File:Cobra.jpg|200px|thumb|left|Cobra in action.]]&lt;br /&gt;
The Developers at [http://alphashangar.co.nr/ Alpha-J's Hangar] have started making the [[AH-1 Cobra|Bell AH-1 Cobra]]. Development is going well and can be tracked [http://www.flightgear.org/forums/viewtopic.php?f=4&amp;amp;t=10130 here.] The Bell AH-1 Cobra is a two-bladed, single engine attack helicopter manufactured by Bell Helicopter. It shares a common engine, transmission and rotor system with the older UH-1 Iroquois. The AH-1 is also referred to as the HueyCobra or Snake.&lt;br /&gt;
&lt;br /&gt;
====AgustaWestland AW139====&lt;br /&gt;
[[File:AW139ln.jpg|200px|thumb|left|AW139-here in the LongNose-version]]&lt;br /&gt;
HHS started to make the AW139, an italian midclass helicopter in use in many countries like the Netherlands, Spain, Italia, Ireland and Japan. &lt;br /&gt;
&lt;br /&gt;
This work has been started due to the fact that above-average number of datas about the flightdynamic has been found, and the systems are very similar like to other new helicopters like the EC130 B4. &lt;br /&gt;
&lt;br /&gt;
So you can expect another accurate helicopter next year. As special feature it is planned to simulate the 4-axis autopilot as accurate as possible. &lt;br /&gt;
People who would like to follow the developement can watch it at: [http://www.gitorious.org/aw139 http://www.gitorious.org/aw139]&lt;br /&gt;
&lt;br /&gt;
=== Updated aircraft ===&lt;br /&gt;
&lt;br /&gt;
====F5E Tiger II==== &lt;br /&gt;
[[File:Fgfs-screen-014.png|200px|thumb|left|F5E Tiger II.]]&lt;br /&gt;
Has many updated aspects, please follow the link : [http://flightgear.org/forums/viewtopic.php?f=4&amp;amp;t=10327]. For direct download: http://dl.dropbox.com/u/16442048/F-5Ev20101220.rar&lt;br /&gt;
&lt;br /&gt;
====Short S.23 Empire flying boat====&lt;br /&gt;
[[File:Sperry_A-2.jpg|thumb|250px|The control unit of the Sperry A-2 automatic pilot in a Short S.23 Empire flying boat.]]&lt;br /&gt;
&lt;br /&gt;
The [[Short Empire|Short Empire flying boat]] has been updated with a Sperry A-2 automatic pilot by Anders, filling one of the remaining empty spots on the dashboard.&lt;br /&gt;
&lt;br /&gt;
====Lockheed L-1011 Tristar====&lt;br /&gt;
Fresh off a 1/10 rating, the [[Lockheed L-1011-500|TriStar]] is closer to having a working cockpit. Currently there are three working photorealistic instruments. A full cockpit update is planned to be sent to the repository soon.&lt;br /&gt;
&lt;br /&gt;
====Eurocopter EC130 B4====&lt;br /&gt;
[[File:Ec130.10.jpg|200px|thumb|right|EC130 B4- latest development version]]&lt;br /&gt;
Not for beginners anymore- the EC130 has been updated and the latest developement is now available in Git. This includes a better and more accurate 3d-model with customized reflection effects, detailed mainrotor, 3d-cockpit and a more accurate fdm.  &lt;br /&gt;
More interesting is the systems simulation: FADEC, FLI (FirstLimitIndicator) in the work, electrical systems, fuel, Force Trim Release....&lt;br /&gt;
This is all based on the original flight manual, and as there is no Autostart you have to follow the checklist to get this bird started. A first simple flightmanual is included.&lt;br /&gt;
&lt;br /&gt;
There are still a lot of things left to do, which will be done in the next weeks and months: &lt;br /&gt;
* lighting&lt;br /&gt;
* bug fixing&lt;br /&gt;
* sound config&lt;br /&gt;
* paintkit with high detailed liveries&lt;br /&gt;
* completing the 3d-work&lt;br /&gt;
* failures&lt;br /&gt;
* better flightmanual&lt;br /&gt;
&lt;br /&gt;
and some things more.&lt;br /&gt;
&lt;br /&gt;
====Airbus A380====&lt;br /&gt;
After several months of remodelling and coding, the [[A380]] has been updated and committed to the general FGdata Git repository ready for the next release of FlightGear.&lt;br /&gt;
&lt;br /&gt;
The A380 comes with three liveries&lt;br /&gt;
* Airbus House&lt;br /&gt;
* Singapore Airlines&lt;br /&gt;
* Qantas Airways&lt;br /&gt;
There are too many changes since the last &amp;quot;Milestone&amp;quot; release twelve months ago to list here. The [[Airbus A380]] wiki page details the list of items that have been completed or are still on the &amp;quot;To Do&amp;quot; list. The aircraft requires the latest Git build of FlightGear as it uses many features in the up coming release including digital filters in the autopilot, OSG Text animations and James Turners new GPS code.&lt;br /&gt;
&lt;br /&gt;
=== Liveries ===&lt;br /&gt;
&lt;br /&gt;
== Scenery corner ==&lt;br /&gt;
===Cities===&lt;br /&gt;
At least four of the five boroughs of New York City should have land cover in the database by the start of the new year with the only other missing borough, Manhattan, to come in the very near future. The MetLife Building, the former Pan Am building, has been modeled as well, giving Manhattan its first non-generic skyscraper!&lt;br /&gt;
&lt;br /&gt;
===Land Cover===&lt;br /&gt;
====Eastern Europe====&lt;br /&gt;
Detailed scenery is under development for the E20N40 area, with the following countries partly or fully covered:&lt;br /&gt;
* Albania&lt;br /&gt;
* Bulgaria&lt;br /&gt;
* Hungary&lt;br /&gt;
* Kosovo&lt;br /&gt;
* FYR Macedonia&lt;br /&gt;
* Poland&lt;br /&gt;
* Romania&lt;br /&gt;
* Serbia&lt;br /&gt;
* Slovakia&lt;br /&gt;
* Turkey&lt;br /&gt;
&lt;br /&gt;
The scenery is using Corine land classification data, road and railroad data from OpenStreetMap and SRTM v4 elevation data from CGIAR.&lt;br /&gt;
&lt;br /&gt;
[[File:E20n40.png|thumb|400px|left]]&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear: both&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== New England ====&lt;br /&gt;
More New England coverage as western Massachusetts has been added to the map server and therefore has been made part of the default scenery package. The next scenery release will allow users to fly from New York John F. Kennedy Int'l to Burlington, Vermont without having to pass over any vmap0 (current) scenery. More coverage is planned as well.&lt;br /&gt;
&lt;br /&gt;
====Republic of Ireland====&lt;br /&gt;
&lt;br /&gt;
Detailed scenery made from CORINE land cover data is now available for the Republic of Ireland. Road and railroad data is from OpenStreetMap, elevation data is SRTM v3. A nice feature of this scenery is that the coastline is rendered using the Corine shapes, so flying along the coast looks a lot prettier than the in the default vmap0 scenery. The scenery pack also contains a terminal building for Knock Ireland West Airport (EIKN) not previously seen.&lt;br /&gt;
&lt;br /&gt;
See some screenshots [http://www.flightgear.org/forums/viewtopic.php?f=19&amp;amp;t=10326 here] and for further details see the [http://www.flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=10354 forum announcement].&lt;br /&gt;
&lt;br /&gt;
=== Airports ===&lt;br /&gt;
====Charlottesville Albemarle Airport (KCHO)====&lt;br /&gt;
[[File:DevelopmenofKCHOPart1.jpg|200px|thumb|left|KCHO under development]]I (Catchatyou) am currently working on making a new airport for FlightGear!  It is Charlottesville Albemarle Airport (KCHO). I must say that I am new to Blender and FlightGear, but I am excited to be a part of it. I hope that my creation will eventually sprout into a beautiful product as time goes by. I have no set date on when this should be completed, but I hope that I can make it as soon as possible.&lt;br /&gt;
&lt;br /&gt;
[[File:eddm tower.jpg|200px|thumb|right|Development version of EDDM tower]]I am not just making the airport building. I'm hoping to eventually add in the parking lot and other various objects.&lt;br /&gt;
&lt;br /&gt;
Thank you for making contributing so easy.&lt;br /&gt;
&lt;br /&gt;
====Franz Josef Strauss Airport Munich (EDDM)====&lt;br /&gt;
[[:User:D-79|D-79]] started modelling EDDM in October and is dedicated to make this the most detailed airport in Germany. So far, both terminals have been modelled, as well as most of the additional buildings on the aprons. One of the most difficult tasks proved to be setting up ground vehicles. But now they're running as an AI scenario of [http://www.youtube.com/watch?v=6GhGbV7n0Uk eight busses and trucks]. As soon as work is finished, the airport will be sent to Martin of the [[FlightGear Scenery Database]].&lt;br /&gt;
&lt;br /&gt;
====Aeroporto &amp;quot;Gianni Caproni&amp;quot;, Mattarello, Trento (Northern Italy) (LIDT)====&lt;br /&gt;
[[File:LIDT-Mattarello.jpg|200px|thumb|left|LIDT-Mattarello]]LIDT is a small touristic airport located in Mattarello, very close to Trento (Trentino Alto Adige-Sued Tyrol), and is dedicated to Giovanni Caproni, an Italian pioneer of aviation, born in Arco, near Trento. &lt;br /&gt;
Beside the terminal building there is an Aviation Museum containing some aircrafts built by the Caproni Factory in early XX century.&lt;br /&gt;
&lt;br /&gt;
The LIDT airport is  home to the [http://www.protezionecivile.tn.it/frame.asp?Site=11&amp;amp;Area=29&amp;amp;Sect=221&amp;amp;Subs=260 &amp;quot;Gruppo Elicotteri Vigili del Fuoco Trento&amp;quot;] (Trento Fire Dept Helicopter Group), involved in many rescue operations on the Alps.&lt;br /&gt;
&lt;br /&gt;
Scighera has modeled the Main Building (Air Terminal, Tower and Aerhotel), the Caproni Aviation Museum and various hangars, including the one of the Fire Dept Helicopter Group.&lt;br /&gt;
&lt;br /&gt;
The 3D models are available for download at  [http://digilander.libero.it/scighera_fg/index.html scighera's Homepage] and are already available on [[TerraSync]].&lt;br /&gt;
&lt;br /&gt;
====Aeroporto &amp;quot;Romeo Sartori&amp;quot;, Asiago (LIDA)====&lt;br /&gt;
[[File:ZFoto_LIDA_Asiago_1.jpg|200px|thumb|left|LIDA-Asiago]]LIDA Asiago (Veneto, Italy) is another small touristic airport at the edge between the Po River Plains and the Eastern Alps, populated with a lot of gliders.&lt;br /&gt;
Scighera has modelled the few buildings there, including the &amp;quot;fancy&amp;quot; Terminal.&lt;br /&gt;
&lt;br /&gt;
The few 3D models are avilable for download at [http://digilander.libero.it/scighera_fg/index.html scighera's Homepage] and have been issued to Martin for inclusion in the [[FlightGear Scenery Database]].(It has been included on Dec 13th 2010)&lt;br /&gt;
&lt;br /&gt;
====Engiadina Airport, Semaden St.Murezzan (Svizra)(LSZS)====&lt;br /&gt;
[[File:Z_LSZS_Samedan1.jpg|200px|thumb|left|LSZS Semaden Terminal]]Or ... Engadiner Flughafen Samedan St. Moritz (Schweiz) claims to be the highest airport in Europe; in any case is strategically located in the middle of Raethian Alps !&lt;br /&gt;
Scighera has started the modelling of the buildings, beginning with the terminal 1 (actually the only one !)... in the meanwhile HHS provided the untextured .blend files of the south building, including the Terminal, the Tower and HeliBernina Hangar and Offices.&lt;br /&gt;
&lt;br /&gt;
== Aircraft of the month ==&lt;br /&gt;
== Airport of the month ==&lt;br /&gt;
== Screenshot of the month ==&lt;br /&gt;
&lt;br /&gt;
== Suggested flights ==&lt;br /&gt;
== Aircraft reviews ==&lt;br /&gt;
&lt;br /&gt;
== Wiki updates ==&lt;br /&gt;
===Developed Airports===&lt;br /&gt;
So far we never had a list of all developed airports in FlightGear. This has now been changed. The [[developed airports]] article lists all aerodromes where at least one building has been placed, be it a static (unique) models or a shared model, but only if the objects are available from the [[FlightGear Scenery Database]]. This new list is meant to become the central site where we maintain an up-to-date list of all developed airports. For setting up this list, [[:User:D-79|D-79]] used the forum discussion [http://www.flightgear.org/forums/viewtopic.php?f=5&amp;amp;t=4700|List of Improved Airports in FlightGear].&lt;br /&gt;
&lt;br /&gt;
===Video Tutorials===&lt;br /&gt;
Over the past year, more and more [[Video Tutorials]] have been produced for FlightGear, so that it seemed sensible to set up a special wiki site for them, sorted by categories. Feel free to 1) make more video tutorials and 2) add them to the list. When making a video tutorial, please try to keep a certain standard: Video tutorials should have a good video resolution so that users can see what's happening on the screen, and they should have text or voice comment so that users understand what's being done.&lt;br /&gt;
&lt;br /&gt;
[[File:Asi.png|thumb|120px|Airspeed indicator]]&lt;br /&gt;
&lt;br /&gt;
===More Hangars===&lt;br /&gt;
The wiki article [[FlightGear Hangars]] has been extended by longfly. Now there are over 47 hangars with interesting aircraft, liveries and scenery. [http://www.flightgear.bplaced.de/filemanager/flightgear/index.php/flugzeugliste Longfly's german hangar] for example has begun to create a list of all aircrafts available for FlightGear. There are currently 412, which must be insert.&lt;br /&gt;
&lt;br /&gt;
===Instrument glass reflection tutorial===&lt;br /&gt;
Horacio has written an excellent short tutorial to show how to add glass reflection effect to instruments, using graphic tools, so that the reflection effect is already contained in the main instrument image, and not depending on shaders meaning less CPU load. The result is widely satisfactory and very realistic.&lt;br /&gt;
&lt;br /&gt;
[[Howto: Glass reflection effect for instruments]]&lt;br /&gt;
&lt;br /&gt;
===Helipad category===&lt;br /&gt;
We have a new wiki [[:Category:Helipads|category for helipads]], as a sub-category of the [[:Category:Airports|airports category]]. So far, only the [[oil platforms]] can be found there, but others could be added, like hospital helipads or ANWB/ADAC/ÖAMTC heliports.&lt;br /&gt;
&lt;br /&gt;
=== New tutorials and screencasts ===&lt;br /&gt;
Check out Zexe's video Tips and Tricks for Flightgear.  Tips include how to Target-track, overlay instrument numbers, and so on. You can find them here on the wiki at [[Video Tutorials#Advanced options|Video Tutorials (advanced options)]] and on the [http://flightgear.org/forums/viewtopic.php?f=19&amp;amp;t=9811 forum].&lt;br /&gt;
&lt;br /&gt;
===New articles===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=new&lt;br /&gt;
  count=10&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
===New aircraft articles===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=new&lt;br /&gt;
  count=10&lt;br /&gt;
  categoryRoot=Aircraft&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
===Most popular newsletters===&lt;br /&gt;
&amp;lt;DynamicArticleList&amp;gt;&lt;br /&gt;
  type=hot&lt;br /&gt;
  count=5&lt;br /&gt;
  categoryRoot=FlightGear Newsletter&lt;br /&gt;
&amp;lt;/DynamicArticleList&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Community news ==&lt;br /&gt;
=== FlightGear on YouTube ===&lt;br /&gt;
* Oscar uploaded a nice video of a [http://www.youtube.com/watch?v=YKa3-jUWMKU 777 event at EHAM].&lt;br /&gt;
&lt;br /&gt;
=== Forum news ===&lt;br /&gt;
&lt;br /&gt;
=== Multiplayer ===&lt;br /&gt;
* Papabear is currently hosting an &amp;quot;event&amp;quot;, where he is navigating the USS Vinson around the world! Visit [[Carrier over MP|here]] to find out how to activate the MP Carrier mode, and [http://www.flightgear.org/forums/viewtopic.php?f=10&amp;amp;t=10207#p103663 here] for the FG Forum Topic regarding this post. As of Dec. 26 at 12:00AM UTC, the Vinson is near the former Kai Tak airport of Hong Kong. All aircraft are welcome, even ones that usually should not land on carriers in reality. Enjoy landing and talking to other pilots that are present!&lt;br /&gt;
&lt;br /&gt;
=== Virtual Airlines ===&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
== And finally ... ==&lt;br /&gt;
=== Contributing ===&lt;br /&gt;
One of the regular thoughts expressed on the FlightGear forums is &amp;quot;I'd like to contribute but I don't know how to program, and I don't have the time&amp;quot;. Unfortunately, there is a common mis-conception that contributing requires programming and lots of free time. In fact, there are a huge range of ways to contribute to the project without needing to write code or spending days working on something. &lt;br /&gt;
&lt;br /&gt;
For ideas on starting to contribute to FlightGear, you may want to check out: [[Volunteer]].&lt;br /&gt;
&lt;br /&gt;
=== Reminder: Google's Summer of Code 2011 ===&lt;br /&gt;
We would like to remind all readers that the FlightGear project is planning to participate in [[GSoC]] 2011. However, doing that really requires a fair amount of work, planning and organizing. This is not something that can be done by a single person. It really needs a coordinated team effort, or otherwise FlightGear won't be able to apply/participate at all.&lt;br /&gt;
&lt;br /&gt;
So all users are invited to help us progress further with our preparations for GSoC 2011. If you have any questions or other feedback, please use the forum to [http://flightgear.org/forums/viewforum.php?f=38 get in touch].&lt;br /&gt;
&lt;br /&gt;
=== Did you know ===&lt;br /&gt;
... that you can easily set [[anti-aliasing]] to improve FlightGear's graphic display?&lt;br /&gt;
[[Category:FlightGear Newsletter|2010 12]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Carrier_over_MP&amp;diff=26877</id>
		<title>Carrier over MP</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Carrier_over_MP&amp;diff=26877"/>
		<updated>2010-12-26T03:00:06Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Emphasizing Something Everyone Forgets&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Carrier over MP is available in FlightGear/CVS and makes it possible to command the [[Howto: Carrier|Nimitz]] and other carriers. Other pilots on the [[Howto: Multiplayer|multiplayer network]] can elect to be able to see and land on the carrier controlled by the MP carrier player.&lt;br /&gt;
&lt;br /&gt;
===Usage examples===&lt;br /&gt;
Command the Nimitz:&lt;br /&gt;
 % fgfs --aircraft=nimitz&lt;br /&gt;
Command the Eisenhower:&lt;br /&gt;
 % fgfs --aircraft=eisenhower&lt;br /&gt;
&lt;br /&gt;
Command the Nimitz for MP operation:&lt;br /&gt;
 % fgfs --aircraft=nimitz --callsign='Nimitz7' --multiplay=...&lt;br /&gt;
&lt;br /&gt;
To enable a MP carrier when on the multiplayer network use the MP carrier dialog available from Network-&amp;gt;&amp;quot;MPCarrier selection&amp;quot; to select which MP carrier players you wish to see.&lt;br /&gt;
&lt;br /&gt;
[[Image:MPCarrier-dialog.png]]&lt;br /&gt;
''The MPCarrier selection dialog. The user 'Nimitz' is currently selected as the controller of MP Nimitz.''&lt;br /&gt;
&lt;br /&gt;
It is also possible to select MP carrier players from the command line using the following --prop: argument (change nimitz to the  &lt;br /&gt;
 % fgfs --ai-scenario=nimitz_demo --prop:/sim/mp-carriers/nimitz-callsign=&amp;lt;callsign of the player commanding mp-nimitz&amp;gt;  --multiplay=.....&lt;br /&gt;
&lt;br /&gt;
===Important===&lt;br /&gt;
&lt;br /&gt;
The MP carrier will not be active unless you specify the callsign of the player on MP running Nimitz with the MP carrier dialog or&lt;br /&gt;
 --prop:/sim/mp-carriers/nimitz-callsign=&amp;lt;callsign of the mp-nimitz player&amp;gt; &lt;br /&gt;
This ensures that MPCarriers won't interfer with the normal nimitz_demo scenario unless you explicitly ask for that.&lt;br /&gt;
&lt;br /&gt;
Please also note that '''''&amp;lt;big&amp;gt;the AI scenario corresponding to the carrier you want to see must also be active!&amp;lt;/big&amp;gt;''''' Many pilots forget this at setup.&lt;br /&gt;
&lt;br /&gt;
And remember, have fun :) .&lt;br /&gt;
&lt;br /&gt;
=== For the Carrier captain===&lt;br /&gt;
&lt;br /&gt;
I sometimes got questions about driving the carriers, so here are the principal tips:&lt;br /&gt;
&lt;br /&gt;
First see the aircraft help. Press '?'.&lt;br /&gt;
&lt;br /&gt;
If you don't know how to change orientation and position of the carrier (apart from using the rudder and speed, but that take a long time to cross ocean :) ), you can use the properties.&lt;br /&gt;
&lt;br /&gt;
The tip is that you need to change the properties of the ai-carrier you are driving, e.g. for the Nimitz,find the  /ai/models/carrier[i] that got Nimitz as name.&lt;br /&gt;
&lt;br /&gt;
In /ai/models/carrier[i]/position/ you can change lat, lon, and elevation to put it where you want, and in /ai/models/carrier[i]/orientation you can make it face wind. Facing wind is important (with real weather fetch) to make the FLOLS green on approach.&lt;br /&gt;
&lt;br /&gt;
Set speed using PgUp/PgDown in manual control.&lt;br /&gt;
&lt;br /&gt;
To have a better sync between the pilots using the Nimitz, i prefer to keep a speed of 0 so that there's no drift between pilots.&lt;br /&gt;
&lt;br /&gt;
==Installation (for FlightGear 1.9.1)==&lt;br /&gt;
&lt;br /&gt;
Downloads are stored at: http://www.gidenstam.org/FlightGear/misc/Carrier_over_MP/&lt;br /&gt;
&lt;br /&gt;
The file to take is currently: MPCarrier_fgfsCVS.tar.gz&lt;br /&gt;
&lt;br /&gt;
#Unpack the archive into &amp;lt;tt&amp;gt;data/Aircaft&amp;lt;/tt&amp;gt;.For windows users, you can use 7zip and apply it twice (one to unzip, one to untar), until you've got the MPCarrier folder. Once MPCarrier in your Aircraft directory, you will find a new &amp;quot;aircraft&amp;quot; called 'nimitz' in your aircraft list.&lt;br /&gt;
#Make sure that the AI scenario nimitz_demo is active.&lt;br /&gt;
#To see a mp carrier, set the property: /sim/mp-carriers/nimitz-callsign (see below &amp;quot;important&amp;quot;)&lt;br /&gt;
#Optional: To get a MPCarrier dialog entry in the Network menu. Apply the changes in mpcarrier_menubar.diff to FG_ROOT/gui/menubar.xml. The diff is for FlightGear/CVS. However, the structure of menubar.xml is so simple that I expect almost anyone could figure out how to add the menu entry :)&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2010-50&amp;diff=26557</id>
		<title>Template:POTW/2010-50</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2010-50&amp;diff=26557"/>
		<updated>2010-12-07T23:43:15Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; &lt;br /&gt;
| align=&amp;quot;center&amp;quot; |[[File:Local weather 0.85 01.jpg|300px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | A '''Beechcraft B1900D''' in Air New Zealand livery passes by cumulus and cirrocumulus clouds produced with [[A local weather system|Local Weather v0.85]] in FlightGear 2.0&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[Beechcraft B1900D|Read more...]] | [[:Category:Picture of the week 2010|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2010]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Main_Page&amp;diff=25162</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Main_Page&amp;diff=25162"/>
		<updated>2010-11-07T00:10:39Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--------------------------------Banner across top of page------------------------------&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:100%; background:#efefef; margin-top:1.2em; border:1px solid #d9e2e2;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:100%; color:#000&amp;quot;| &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-------------&amp;quot;Welcome to FlightGear&amp;quot; and article count----------&amp;gt;&lt;br /&gt;
{| style=&amp;quot;width:100%; border:solid 0px; background:none;&amp;quot;&lt;br /&gt;
|style=&amp;quot;width:100%; text-align:center; white-space:nowrap; color:#000;&amp;quot;|&lt;br /&gt;
&amp;lt;div style=&amp;quot;font-size:162%; border:none; margin:0; padding:.1em; color:#000;&amp;quot;&amp;gt;Welcome to the FlightGear Wiki!&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;articlecount&amp;quot; style=&amp;quot;width:100%; text-align:center; font-size:85%;&amp;quot;&amp;gt;we now have [[Special:Statistics|{{NUMBEROFARTICLES}}]] articles&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[file:de.gif|link=:de:Hauptseite]]&lt;br /&gt;
[[file:en.gif|link=:en:Main Page]]&lt;br /&gt;
[[file:es.gif|link=:es:Portada]]&lt;br /&gt;
[[file:fi.gif|link=:fi:Etusivu]]&lt;br /&gt;
[[file:fr.gif|link=:fr:Accueil]]&lt;br /&gt;
[[file:nl.gif|link=:nl:Hoofdpagina]]&lt;br /&gt;
[[file:pl.gif|link=:pl:Strona główna]]&lt;br /&gt;
[[file:pt.gif|link=:pt:Página principal]]&lt;br /&gt;
[[file:ru.gif|link=:ru:Заглавная страница]]&lt;br /&gt;
[[file:zh.gif|link=:zh:Main Page]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--------------Portal list on righthand side----------&amp;gt;&lt;br /&gt;
|style=&amp;quot;width:11%; font-size:95%; color:#000;&amp;quot;|&lt;br /&gt;
|}&amp;lt;!--&lt;br /&gt;
&lt;br /&gt;
[[----------Strapline immediately below banner----------&amp;gt;&lt;br /&gt;
{|style=&amp;quot;width:100%; background:none; margin:-.8em 0 -.7em 0;&amp;quot;&lt;br /&gt;
|style=&amp;quot;font-size:95%; padding:10px 0; margin:0px; text-align:left; white-space:nowrap; color:#000;&amp;quot;| [[Help:Tutorial|Editing]]&amp;amp;nbsp;'''·''' [[Help:Contents|Help]]&lt;br /&gt;
|style=&amp;quot;font-size:95%; padding:10px 0; margin:0px; text-align: right; white-space:nowrap; color:#000;&amp;quot;| [[Special:Allpages|All pages]]&amp;amp;nbsp;'''·''' [[Special:Search|Search]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border-spacing:8px; margin:0px -8px;&amp;quot;&lt;br /&gt;
|class=&amp;quot;MainPageBG&amp;quot; style=&amp;quot;width:100%; border:1px solid #d9e2e2; background:#efefef; vertical-align:top; color:#000;&amp;quot;|&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; cellpadding=&amp;quot;1&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top; background:#efefef;&amp;quot;&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;FlightGear Flight Simulator&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
'''[[FlightGear]]''' is a sophisticated, realistic flight-simulator, created entirely by volunteers, and released as free, open-source [[GNU General Public License|GPL]] software, available for download [http://www.flightgear.org/Downloads/ here]. FlightGear has a graphical user interface realistic enough for real-life pilot training, and mathematical flight models accurate enough for serious scientific research. FlightGear's free and open license also makes it great for educational exploration, or just for fun.&lt;br /&gt;
&lt;br /&gt;
FlightGear can be expanded and improved by anyone interested in [[Volunteer|contributing]]. The complete project source code is available via [[Git]], licensed under the [[GNU General Public License]]. FlightGear's open architecture encourages the exploration of a wide variety of flight simulator concepts, and has inspired a number of [[FlightGear related projects|related projects]].  &lt;br /&gt;
&lt;br /&gt;
FlightGear comes with a set of illustrated documentation, notably &amp;quot;The Manual&amp;quot;, which is available as [http://mapserver.flightgear.org/getstart.pdf PDF] and [http://www.flightgear.org/Docs/getstart/getstart.html HTML].&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;background:none;&amp;quot;&lt;br /&gt;
|style=&amp;quot;font-size:100%; padding-left:10px; padding-right:20px; margin:0px; vertical-align: top; text-align:left; white-space:nowrap; color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Portal:User|Getting Started]]'''&lt;br /&gt;
** [[New to FlightGear]]&lt;br /&gt;
** [[FAQ]]&lt;br /&gt;
** [[:Category:Howto|Tutorials]]&lt;br /&gt;
**'''[[Portal:User|More...]]'''&lt;br /&gt;
|style=&amp;quot;font-size:100%; padding-left:20px; margin:0px; vertical-align: top; text-align: left; border-left: 2px solid #d9e2e2; white-space:nowrap; color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Portal:Pilot|Using FlightGear]]'''&lt;br /&gt;
** [[Aircraft|Additional Aircraft]]&lt;br /&gt;
** [[Flying the helicopter|Helicopter flying]]&lt;br /&gt;
** [[Portal:Pilot|Advanced Pilot Training]]&lt;br /&gt;
** '''[[Portal:Pilot|More...]]'''&lt;br /&gt;
|style=&amp;quot;font-size:100%; padding-left:20px; margin:0px; vertical-align: top; text-align: left; border-left: 2px solid #d9e2e2; white-space:nowrap; color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Portal:Developer|Developing FlightGear]]'''&lt;br /&gt;
** [[Portal:Developer/Aircraft|Creating Aircraft]]&lt;br /&gt;
** [[Portal:Developer/Scenery|Creating Scenery]]&lt;br /&gt;
** [[Building FlightGear]]&lt;br /&gt;
** '''[[Portal:Developer|More...]]'''&lt;br /&gt;
|}&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{|style=&amp;quot;border-spacing:8px; margin:0px -8px;&amp;quot;&lt;br /&gt;
|class=&amp;quot;MainPageBG&amp;quot; style=&amp;quot;width:50%; border:1px solid #d9e2e2; background:#efefef; vertical-align:top; color:#000;&amp;quot;|&lt;br /&gt;
{|width=&amp;quot;100%&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top; background:#efefef;&amp;quot;&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;FlightGear Features&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
* '''[[Aircraft]]'''&lt;br /&gt;
** FlightGear simulates aircraft from hang-gliders to jumbo jets&lt;br /&gt;
** Aircraft from 14 categories are included with the basic package&lt;br /&gt;
** [[Table of models|Dozens of additional aircraft]] are available for download&lt;br /&gt;
** You can create your own aircraft design, or edit existing models&lt;br /&gt;
&lt;br /&gt;
* '''[[:Category:Airports|Airports]]'''&lt;br /&gt;
** FlightGear includes a current database of over 20,000 real airports&lt;br /&gt;
** Realistic runways and taxiways (and 3D buildings at some airports)&lt;br /&gt;
** Airport layouts and 3D models can be edited with free tools&lt;br /&gt;
&lt;br /&gt;
* '''[[Scenery]]'''&lt;br /&gt;
** Scenery is available for the entire world&lt;br /&gt;
** Accurate land elevation data is provided by [http://www.nasa.gov/ NASA]&lt;br /&gt;
** New scenery can be downloaded automatically while you fly&lt;br /&gt;
** Cities like San Francisco, Paris, Accra and Berlin include 3D buildings and landmarks.&lt;br /&gt;
** You can help create better world scenery with free software tools&lt;br /&gt;
&lt;br /&gt;
* '''GPL License'''&lt;br /&gt;
** FlightGear is free, open-source [[GPL]] software&lt;br /&gt;
** Open architecture encourages [[FlightGear related projects|Related Projects]]&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;Did you know...&amp;lt;/h2&amp;gt;   &lt;br /&gt;
|-   &lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;|  &lt;br /&gt;
{{Did you know}}&lt;br /&gt;
 &lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
|class=&amp;quot;MainPageBG&amp;quot; style=&amp;quot;width:50%; border:1px solid #d9e2e2; background:#efefef; vertical-align:top&amp;quot;|&lt;br /&gt;
&amp;lt;div style=&amp;quot;border:solid 3px orange; background:none; text-align:center; padding: 5px; margin: 8px;&amp;quot;&amp;gt;'''[[FSweekend 2010]] is being held now!'''&amp;lt;/div&amp;gt;&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot; cellpadding=&amp;quot;2&amp;quot; cellspacing=&amp;quot;5&amp;quot; style=&amp;quot;vertical-align:top; background:#efefef;&amp;quot;&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;Picture of the week&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
{{POTW/{{CURRENTYEAR}}-{{CURRENTWEEK}}}}&lt;br /&gt;
|-   &lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;News&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;| &lt;br /&gt;
* [[FlightGear Newsletter {{MONTHNAME|{{LASTMONTHNAME}}}} {{CURRENTYEAR}}]] ([[:Category:FlightGear Newsletter|all newsletters]])&lt;br /&gt;
&lt;br /&gt;
* '''May 2010:''' FlightGear wiki exceeded 4.000.000 pageviews&lt;br /&gt;
* '''February 25 2010:''' [[FlightGear]] 2.0.0 released&lt;br /&gt;
* '''October 31 2009:''' FlightGear wiki exceeded 3.000.000 pageviews&lt;br /&gt;
* '''December 22 2008:''' [[FlightGear 1.9.0]] released&lt;br /&gt;
|-&lt;br /&gt;
! &amp;lt;h2 style=&amp;quot;margin:0; background:#0f7a71; font-size:120%; font-weight:bold; border:1px solid #d9e2e2; text-align:left; color:white; padding:0.2em 0.4em;&amp;quot;&amp;gt;FlightGear Promotion&amp;lt;/h2&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;color:#000;&amp;quot;|&lt;br /&gt;
* [[FlightGear Reviews]]&lt;br /&gt;
* [[FlightGear Videos]]&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
__NOEDITSECTION__&lt;br /&gt;
&lt;br /&gt;
[[de:Hauptseite]]&lt;br /&gt;
[[es:Portada]]&lt;br /&gt;
[[fi:Etusivu]]&lt;br /&gt;
[[fr:Accueil]]&lt;br /&gt;
[[nl:Hoofdpagina]]&lt;br /&gt;
[[pt:Página principal]]&lt;br /&gt;
[[pl:Strona główna]]&lt;br /&gt;
[[ru:Заглавная страница]]&lt;br /&gt;
[[zh:Main Page]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2010-44&amp;diff=24909</id>
		<title>Template:POTW/2010-44</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2010-44&amp;diff=24909"/>
		<updated>2010-10-25T18:34:50Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | [[File:FSweekend_banner_2010.jpg|400px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | The '''FSweekend''' is an annual event showcasing various flight simulators around the world, held at the [[Aviodrome]] in [[Lelystad Airport]] '''this weekend'''. The FlightGear community will host a booth at this event. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[FSweekend|Read more...]] | [[:Category:Picture of the week 2010|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2010]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:POTW/2010-44&amp;diff=24908</id>
		<title>Template:POTW/2010-44</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:POTW/2010-44&amp;diff=24908"/>
		<updated>2010-10-25T18:33:37Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with '{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot; | align=&amp;quot;center&amp;quot; | 400px |- | align=&amp;quot;left&amp;quot; | The '''FSweekend''' is an an…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;prettytable&amp;quot; style=&amp;quot;background-color:#efefef; width: 100%;&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; | [[File:FSweekend_banner_2010.jpg|400px]]&lt;br /&gt;
|-&lt;br /&gt;
| align=&amp;quot;left&amp;quot; | The '''FSweekend''' is an annual event showcasing various flight simulators around the world, held at the [[Aviodrome]] in [[Lelystad Airport]], Netherlands. The FlightGear community will host a booth at this event. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align:right;&amp;quot;&amp;gt;'''[[FSweekend|Read more...]] | [[:Category:Picture of the week 2010|Archive]]'''&amp;lt;/div&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;[[Category:Picture of the week 2010]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Virtual_airlines&amp;diff=24907</id>
		<title>Virtual airlines</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Virtual_airlines&amp;diff=24907"/>
		<updated>2010-10-25T18:14:38Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Re-layout, update and correct information&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''virtual airline''' (VA) is a dedicated hobby organization that uses flight simulation to model the operations of an airline. Virtual airlines generally have a presence on the internet, similar to a real airline. There are over 100 virtual airlines of significance currently active in the internet (supporting a number of flightsims), with thousands of participants involved at any one time each using different simulator platforms.&lt;br /&gt;
&lt;br /&gt;
==Purpose==&lt;br /&gt;
Virtual airlines were started to give a sense of purpose to activities conducted within a flight simulator. This basic premise has evolved over time, along with available technology, to provide increasing levels of immersion but always with the same core purpose. When combined with increasingly powerful personal computers, advancing flight simulation software, and communications networks, virtual airlines are often able to provide compelling, realistic, experiences similar to operations inside a real airline. Virtual airlines also provide an avenue for members to gain access to additional content, such as aircraft and scenery, for use with their simulator. The appeal varies; for younger members, virtual airlines provide a sandbox environment where they can experience the corporate environment of commercial business in the airline industry, without the risk of financial loss. These organizations also provide an outlet for those who are interested in aviation but unable to fly themselves in real life due to financial, health, or other reasons.&lt;br /&gt;
Most of all, its one step closer to enthusiasts feeling more involved in an airline environment and share their interests with others.&lt;br /&gt;
Virtual Airlines also benefit the flight simulator community by providing valuable services such as ATC, events, and general help and knowledge.&lt;br /&gt;
&lt;br /&gt;
==Common elements==&lt;br /&gt;
There are several elements that are common across many virtual airlines:&lt;br /&gt;
* A website as the focal point of the community&lt;br /&gt;
* Internet forum where discussion and social interaction can occur&lt;br /&gt;
* Customized livery that users can download together with aircraft and install in their flight simulator&lt;br /&gt;
* Route schedules for members to fly in their simulators&lt;br /&gt;
* Multiplayer events, often on a game network such as VATSIM or IVAO&lt;br /&gt;
* Less common elements include:&lt;br /&gt;
* An Online database for recording and reporting flights and membership statistics&lt;br /&gt;
* Dedicated game server hosting to provide private areas for members to complete flights&lt;br /&gt;
* Award, rank and recognition systems&lt;br /&gt;
* Voice over Internet Protocol servers for members to communicate freely by voice&lt;br /&gt;
&lt;br /&gt;
==Current Flightgear Virtual Airlines==&lt;br /&gt;
Currently, some number of virtual airlines exist, with airlines made of various experiences, fleets and operations. Here is a list of some of the known virtual airlines to have existed:&lt;br /&gt;
&lt;br /&gt;
* Air H5&lt;br /&gt;
* [[Ares Virtual Airlines]]&lt;br /&gt;
* [[Atlas Virtual Airlines]]&lt;br /&gt;
* Delta Virtual Airlines&lt;br /&gt;
* [[Star Alliance]]&lt;br /&gt;
* [http://transgear.treborlogic.com TransGear Airways]&lt;br /&gt;
&lt;br /&gt;
===Current Alliances===&lt;br /&gt;
Alliances point to groups of airlines working with each other in joint operations. Currently, the following are active:&lt;br /&gt;
* [[Star Alliance]]&lt;br /&gt;
* Transgear Airways and Atlas (considered &amp;quot;sister VA's&amp;quot; and work in symbiosis)&lt;br /&gt;
&lt;br /&gt;
===Current Flightgear Flying Clubs===&lt;br /&gt;
* [http://flightgearfans.wordpress.com/ FlightGear Flying Club]&lt;br /&gt;
&lt;br /&gt;
==Former Virtual Airlines==&lt;br /&gt;
Before the merger of most virtual airlines into Atlas and gradual declines of airlines following that event, several independent virtual airlines were active. These airlines, as well as airlines proposed but never actually created include the following:&lt;br /&gt;
[[Image:virtualairlines.jpg|thumb|430px|Logo of most virtual airlines as of February 2010.]]&lt;br /&gt;
&lt;br /&gt;
===Airlines Merged into Atlas Virtual===&lt;br /&gt;
* [[Japan Pacific Airlines]]&lt;br /&gt;
* Skynet International Airlines&lt;br /&gt;
&lt;br /&gt;
===Defunct Airlines===&lt;br /&gt;
* AirLink&lt;br /&gt;
* Air San Francisco&lt;br /&gt;
* Americair&lt;br /&gt;
* Coastal Air Systems&lt;br /&gt;
* Detra Virtual Airlines&lt;br /&gt;
* Euroair (Aurelen Virtual)&lt;br /&gt;
* [[Europe Airlines]]&lt;br /&gt;
* Gisi Airlines&lt;br /&gt;
&lt;br /&gt;
===Proposed Airlines===&lt;br /&gt;
* Sandy Oceania Airlines&lt;br /&gt;
* Triangle Airlines&lt;br /&gt;
&lt;br /&gt;
==Controversies==&lt;br /&gt;
===Copyright Issues===&lt;br /&gt;
When a virtual airline is created in the image of a real world airline legal issues can arise out of copyright violations. In 2003, a real world airline, Qantas Airways Ltd., announced a new low-cost carrier by the name of Jetstar Airways. However, a virtual airline named Jetstar International Airlines already existed, complete with a web site. As part of their startup promotion, Qantas sold 100,000 airline tickets at a discount price, and the virtual airline's web site was swamped with would-be customers, job-seekers, and prospective vendors. The virtual airline sued Qantas, claiming that Qantas stole the virtual airline's livery and trademark.&lt;br /&gt;
If you wish to create a virtual airline- Which Flightgear would be eager for you to do, Please do not base it on real life airlines to save copyright issues!&lt;br /&gt;
&lt;br /&gt;
===Association with terrorism===&lt;br /&gt;
Claims have been made of the use of both flight simulators and virtual airlines as training devices for terrorist activities, although to date no conclusive link has ever been provided to indicate a situation where a virtual airline has provided flight simulation training to anyone involved in a terrorist activity.&lt;br /&gt;
Jermaine Lindsay, one of the four 7 July 2005 London bombings, may have used flight simulators to practice flying an airliner, with an accusation that he was registered with a virtual airline. A person of the same name listed his nearest major airport as Heathrow and clocked up 30 hours in two months with SimAirline.net. The website later denied the member's linking with the bombing, and indicated it was working with the Metropolitan Police to establish whether its former member was the bomber. The website stated that it provides information about airlines and free add-on software for Microsoft Flight Simulator and does not provide flight instruction to its members.&lt;br /&gt;
The 9/11 Commission in the US concluded in 2004 that those responsible for flying the planes into World Trade Center and Pentagon had used PC-based flight simulators for training. Despite the initial concerns of the involvement of virtual airlines in these terrorist activities, largely little has come from these claims to date and no changes have been noted as occurring in their operation as a result.&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_March_2010&amp;diff=19883</id>
		<title>FlightGear Newsletter March 2010</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=FlightGear_Newsletter_March_2010&amp;diff=19883"/>
		<updated>2010-03-05T02:37:58Z</updated>

		<summary type="html">&lt;p&gt;Alphamedia: Created page with '{{newsletter}}  Welcome to the March 2010 edition of the FlightGear Newsletter.   ==In the hangar==  ==Scenery Corner==  ==Community News== ===Virtual Airline News===  [[Cate…'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{newsletter}}&lt;br /&gt;
&lt;br /&gt;
Welcome to the March 2010 edition of the [[FlightGear]] Newsletter. &lt;br /&gt;
&lt;br /&gt;
==In the hangar==&lt;br /&gt;
&lt;br /&gt;
==Scenery Corner==&lt;br /&gt;
&lt;br /&gt;
==Community News==&lt;br /&gt;
===Virtual Airline News===&lt;br /&gt;
&lt;br /&gt;
[[Category:FlightGear Newsletter]]&lt;/div&gt;</summary>
		<author><name>Alphamedia</name></author>
	</entry>
</feed>