FlightGear Newsletter May 2013: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
m (Switch to the {{forum link}} template for all forum links.)
 
(4 intermediate revisions by 2 users not shown)
Line 5: Line 5:


== Development news ==
== Development news ==
Note to all contributors: Please also copy your newsletter additions to the changelog for the upcoming release: [[Next Changelog]].
=== Release preparations ===
=== Release preparations ===
Following the [[release plan]], the FlightGear repositories will close for major changes on June 17. In this "frozen" state, no new features or major changes shall be pushed onto the development streams (neither source nor data). This period is for preparing the code for the release and make sure there are no major issues. It lasts for four weeks until creation of the release branches on July 17.
Following the [[release plan]], the FlightGear repositories will close for major changes on June 17. In this "frozen" state, no new features or major changes shall be pushed onto the development streams (neither source nor data). This period is for preparing the code for the release and make sure there are no major issues. It lasts for four weeks until creation of the release branches on July 17.
Line 13: Line 11:


=== Aircraft Checklists ===
=== Aircraft Checklists ===
Stuart has pushed a further enhancement to the checklist feature. Aircraft authors may now add one or more <binding> elements to a checklist
{{Main article|Aircraft Checklists}}
<item>. Conceptually, these are the actions that the user should execute to complete the item. The checklist GUI displays items with such <binding>
Stuart has pushed a further enhancement to the [[Aircraft Checklists|checklist feature]]. Aircraft authors may now add one or more [[Bindings|<binding>]] elements to a checklist <item>. Conceptually, these are the actions that the user should execute to complete the item. The checklist GUI displays items with such <binding> elements with an additional [>] button. Clicking on the button executes the bindings, allowing the user to watch as the computer/co-pilot/instructor executes the checklist item. Due to the power of Nasal and properties, this feature only required 13 lines of code to write, most of which is displaying the button!
elements with an additional [>] button. Clicking on the button executes the bindings, allowing the user to watch as the
computer/co-pilot/instructor executes the checklist item.
 
The <binding> element is exactly as you would expect - so property-assign, nasal etc. works.
 
Due to the power of Nasal and properties, this feature only required 13 lines of code to write, most of which is displaying the button!
 
Stuart is planning to extend this function so that checklists with one or more items containing a <binding> element can have an (optional) button
to execute the entire checklist.  I'm still thinking of how best to implement this, as I think one would want a gap between each item.
 
Stuart highlights the property-interpolate command which provides a very convenient way to interpolate a property to a new value.  See
Docs/README.commands if you were unaware of this.


Stuart has updated the c172p checklists to use this feature, including some rather cute interpolations of the throttle, mixture and trim controls.
The <binding> element is exactly as you would expect - so property-assign, nasal etc. works. It's a good moment to highlight the property-interpolate command which provides a very convenient way to interpolate a property to a new value.  See <tt>[[$FG_ROOT]]/Docs/README.commands</tt> if you were unaware of this.


The [[Cessna 172P]] has been updated to use this feature, including some rather cute interpolations of the throttle, mixture and trim controls.


Learn more at [[Aircraft Checklists]]...
Stuart is planning to extend this function so that checklists with one or more items containing a <binding> element can have an (optional) button to execute the entire checklist.


=== Transponder ===
=== Transponder ===
{{Main article|Transponder}}
Clement (with some help from Vivian and large contribution from James) has overhauled the [[Transponder|transponder]] instrument, making it easier to use from panels, supporting Mode-S altitude encoding, and sending the important properties over multi-player. This will allow more realistic ATC interactions, since id (squawk) codes now matter!


Clement (with some help from Vivian and large contribution from James) has overhauled the [[Transponder|transponder]] instrument, making it easier to use from panels, supporting Mode-S altitude encoding, and sending the important properties over multi-player. This will allow more realistic ATC interactions, since id (squawk) codes now matter! See [[Transponder|this wiki page]] for more information on installing / updating the transponder installation in aircraft. The common panel-mounted KT-70 instrument will also be getting an overhaul to use the updated C++ code in the next few days.
See [[Transponder|this wiki page]] for more information on installing / updating the transponder installation in aircraft. The common panel-mounted KT-70 instrument has gotten an overhaul to use the updated C++ code. You can adjust the transponder settings for any aircraft via the Equipment > Radio Settings dialog.
You can access to transponder setting via the radio settings dialog ( Equipment > Radio settings (F12) )


[[OpenRadar|OpenRadar]] has been updated in order to manage the new transponder code.
[[OpenRadar|OpenRadar]] has been updated in order to manage the new transponder code.
=== Random Buildings ===
<!-- These are currently just a bunch of placeholders for the latest projects (as of 08/2012)  -->


=== Project Rembrandt ===
=== Project Rembrandt ===
Line 48: Line 33:
=== Tutorial: Porting custom PUI widgets to Canvas ===
=== Tutorial: Porting custom PUI widgets to Canvas ===
[[File:Nasal-console-with-canvas-loglist-widget-prototype.png|thumb|canvas based loglist widget]]
[[File:Nasal-console-with-canvas-loglist-widget-prototype.png|thumb|canvas based loglist widget]]
The shortcomings of our old PUI-based GUI have been repeatedly brought up on the mailing list over the years.


The shortcomings of our old PUI-based GUI have been repeatedly brought up on the devel list over the years.
In order to eventually phase out PUI completely, we need to stop adding PUI dependencies to the source tree. We now have the Canvas system, and there's a formal decision to modernize the GUI using the Canvas, and completely replace PUI sooner rather than later.
 
In order to eventually phase out PUI completely, we need to stop adding PUI dependencies to the source tree. We now have the Canvas system, and there’s a formal decision to modernize the GUI using the Canvas, and completely replace PUI sooner rather than later.


It was a lot of work to get rid of hard-coded PUI dialogs, and we still have a bunch of hard-coded PUI widgets – as long as we have those, getting totally rid of PUI will be increasingly difficult, because each hard-coded widget will either need to be phased out or manually ported.
It was a lot of work to get rid of hard-coded PUI dialogs, and we still have a bunch of hard-coded PUI widgets – as long as we have those, getting totally rid of PUI will be increasingly difficult, because each hard-coded widget will either need to be phased out or manually ported.
Line 64: Line 48:
If you have been wanting to play around with the new [[Canvas]] system, make sure to check out the [[Howto:Adding a canvas to a GUI dialog]] tutorial, which demonstrates how to easily add a canvas rendering region to a conventional FlightGear dialog. Using the combination of Nasal scripting, standard FlightGear GUI dialogs and embedded canvas regions for 2D rendering, you can even create standalone "FlightGear applications" in the form of self-contained FlightGear XML dialogs that you can easily share with fellow FlightGear users.  
If you have been wanting to play around with the new [[Canvas]] system, make sure to check out the [[Howto:Adding a canvas to a GUI dialog]] tutorial, which demonstrates how to easily add a canvas rendering region to a conventional FlightGear dialog. Using the combination of Nasal scripting, standard FlightGear GUI dialogs and embedded canvas regions for 2D rendering, you can even create standalone "FlightGear applications" in the form of self-contained FlightGear XML dialogs that you can easily share with fellow FlightGear users.  


This can for example be used to create a plotting application like FGPlot, which would look to FlightGear like a conventional dialog.  
This can for example be used to create a plotting application like FGPlot (see below), which would look to FlightGear like a conventional dialog.  
[[File:Fgplot-canvas.png|thumb|Stub]]


=== FGPlot ===
=== FGPlot ===
kuifje09 has started a little Linux project creating a plotter program for use with creating/tuning the autopilot in flightgear. kuifje09 provides a download which can be found at sourceforge. kuijfe09 already added some updates, removing bugs and adding new features (version 03b), see [[FGPlot]].
[[File:Fgplot-canvas.png|thumb|FGPlot]]
 
kuifje09 has started a little Linux project creating a plotter program for use with creating/tuning the autopilot in FlightGear. See [[FGPlot]] for more infomration and a download link.
=== High Level Architecture ===
=== FlightGear an Android ===
 
=== Usability Improvements ===
 
=== Mailing list digest ===
 
(by far the easiest option to populate the newsletter with contents is copying/pasting stuff from the forum and the mailing list or the git logs)
 
=== Forum digest ===
 
=== Git digest ===


=== Getting involved as a programmer ===
=== Getting involved as a programmer ===
Unfortunately, most of the active FG developers are currently very overstretched in terms of the areas that they have ownership of, which is affecting how much can actually be done. Fundamentally we need more core devs.
Unfortunately, most of the active FG developers are currently very overstretched in terms of the areas that they have ownership of, which is affecting how much can actually be done. Fundamentally we need more core devs.


If you are interested in contributing as a core developer, please see [[Howto:Start core development]].
If you are interested in contributing as a core developer, please see [[Howto:Start core development]].


== Release ChangeLog ==
== International FlightGear websites ==
This section lists changes committed this month that will be available in the next release, these will be copied to the release changelog shortly before a release (for each month), so that we hopefully get a comprehensive list of new features.
 
== Interview with a contributor (NAME) ==
''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.''
 
* How long have you been involved in FlightGear?
* What are your major interests in FlightGear?
* What project are you working on right now?
* What do you plan on doing in the future?
* Are you happy with the way the FlightGear project is going?
* What do you enjoy most about developing for FlightGear?
* Are there any "hidden features" you have worked on in FlightGear that new users may miss?
* What advice can you give to new developers who want to get started on their first aircraft/new feature/Nasal script?
 
More questions are being collected here: [[Interview questions]].
 
Stay tuned for next month's interview, featuring FlightGear contributor XXXXXXXX
 
== International FlightGear Official Sites ==
Enjoy the awesome international FlightGear community and experiment the dream to fly with the best Free Flight Simulation Software ever built. With more than 15 years of experience FlightGear has a wide user community, from professionals to normal users from all around the world. For sure you'll find good friends in this amazing virtual community.
Enjoy the awesome international FlightGear community and experiment the dream to fly with the best Free Flight Simulation Software ever built. With more than 15 years of experience FlightGear has a wide user community, from professionals to normal users from all around the world. For sure you'll find good friends in this amazing virtual community.


Please visit FlightGear websites in other languages:
Please visit FlightGear websites in other languages:
*[http://www.flightgear.org.cn/portal.php 中文]
*[http://www.flightgear.org.cn/portal.php 中文]
*[http://www.flightgear.org English]
*[http://www.flightgear.org English]
Line 134: Line 85:
|La FlightGear wiki todavía necesita ayuda para traducirla a varios lenguajes. Si estás interesado en hacer la FlightGear wiki multilingüe, entonces comienza en [[:es:Help:Traducir|Help:Traducir]].
|La FlightGear wiki todavía necesita ayuda para traducirla a varios lenguajes. Si estás interesado en hacer la FlightGear wiki multilingüe, entonces comienza en [[:es:Help:Traducir|Help:Traducir]].
|}
|}
== Nasal for newbies ==


== New software tools and projects ==
== New software tools and projects ==
Line 148: Line 97:
== FlightGear addons and mods ==
== FlightGear addons and mods ==


== In the hangar ==
=== New aircraft ===
=== Updated aircraft ===
=== Liveries ===


== Scenery corner ==
== Scenery corner ==
Line 168: Line 110:
It is worth downloading and flying around the place, especially with friends! Imagine doing a helicopter mission with other pilots or a sightseeing tour. On the forums you'll find more pictures of all this and also you'll find a regularly updated download link.
It is worth downloading and flying around the place, especially with friends! Imagine doing a helicopter mission with other pilots or a sightseeing tour. On the forums you'll find more pictures of all this and also you'll find a regularly updated download link.


*[http://www.flightgear.org/forums/viewtopic.php?f=5&t=20007&p=184072#p184072 Forum topic]
*{{forum link|p=184072|text=Forum topic}}


=== Pittsburgh Development ===
=== Pittsburgh Development ===
Pittsburgh, Pennsylvania is one of the most iconic places in American history. Rick Ace has started modeling parts of city, and Pittsburgh International Airport. The Frick Building has almost been completed too. You can watch his progress in the {{forum link|t=19994|text=flightgear forums}}.


Pittsburgh, Pennsylvania is one of the most iconic places in American history. Rick Ace has started modeling parts of city, and Pittsburgh International Airport. The Frick Building has almost been completed too. You can watch his progress in the [http://www.flightgear.org/forums/viewtopic.php?f=5&t=19994 flightgear forums].
== Aircraft of the month ==
== Airport of the month ==
== Screenshot of the month ==
== Suggested flights ==
== Aircraft reviews ==
== Wiki updates ==
===New articles===
<DynamicArticleList>
  type=new
  count=10
</DynamicArticleList>
===New aircraft articles===
<DynamicArticleList>
  type=new
  count=10
  categoryRoot=Aircraft
</DynamicArticleList>
===Most popular newsletters===
<DynamicArticleList>
  type=hot
  count=5
  categoryRoot=FlightGear Newsletter
</DynamicArticleList>
== Community news ==
== Community news ==
=== FlightGear on YouTube ===
=== New tutorials and screencasts ===
=== Forum news ===
=== Multiplayer ===
=== Virtual airlines ===
=== Virtual airlines ===
FlightGear Virtual Aviation Organization - www.flightgearvao.org - We are an organization that has multiplayer events, ATC service and training for both pilots and ATC alike! We are currently seeking staff members and pilots, so join today!
FlightGear Virtual Aviation Organization - www.flightgearvao.org - We are an organization that has multiplayer events, ATC service and training for both pilots and ATC alike! We are currently seeking staff members and pilots, so join today!
=== FlightGear events ===


=== Web tools for ATC sessions in Europe ===
=== Web tools for ATC sessions in Europe ===
Some new web tools help planning ATC events are in development.  They was initiated by lenny64 who [http://www.flightgear.org/forums/viewtopic.php?f=10&t=19810 announced on the official forum on Apr 27, 2013] that he had the first version of a web site, [http://lenny64.free.fr/ lenny64.free.fr], that made it possible to see and plan ATC sessions at some of the airports in Europe. Since then it have become possible too file flights to some of them.
Some new web tools help planning ATC events are in development.  They was initiated by lenny64 who {{forum link|t=19810|text=announced on the official forum on Apr 27, 2013}} that he had the first version of a web site, [http://lenny64.free.fr/ lenny64.free.fr], that made it possible to see and plan ATC sessions at some of the airports in Europe. Since then it have become possible too file flights to some of them.


He later [http://www.flightgear.org/forums/viewtopic.php?p=183688#p183688 announced] that similar functionality was added by evilslut to his tracker and mpserver, [http://mpserver12.flightgear.org/tracker/ mpserver12].
He later {{forum link|p=183688|text=announced}} that similar functionality was added by evilslut to his tracker and mpserver, [http://mpserver12.flightgear.org/tracker/ mpserver12].


These services makes it possible:
These services makes it possible:
Line 230: Line 139:
* Paris Orly Airport (LFPO) *
* Paris Orly Airport (LFPO) *


== Useful links ==
== And finally ... ==
== And finally ... ==
=== Contributing ===
=== Contributing ===
Line 237: Line 145:
For ideas on starting to contribute to FlightGear, you may want to check out: [[Volunteer]].
For ideas on starting to contribute to FlightGear, you may want to check out: [[Volunteer]].


To learn more about how the project works, please see [http://flightgear.org/forums/viewtopic.php?f=42&t=15267#p149971 this short essay] written by Thorsten, for a more detailed article see [[How the FlightGear project works]].
To learn more about how the project works, please see {{forum link|p=149971|text=this short essay}} written by Thorsten, for a more detailed article see [[How the FlightGear project works]].


=== Call for volunteers ===
=== Call for volunteers ===
Line 244: Line 152:
* The [[FGFSPM]] (FlightGear Package Manager) is looking for a new maintainer.
* The [[FGFSPM]] (FlightGear Package Manager) is looking for a new maintainer.


=== Did you know ===
[[Category:FlightGear Newsletter]]
[[Category:Changes after 2.10]]
[[Category:Changes after 2.10]]
[[Category:FlightGear Newsletter|2013 05]]

Latest revision as of 19:51, 9 June 2019

Magagazine.png
Welcome to the FlightGear Newsletter!
Please help us write the next edition!
Enjoy reading the latest edition!


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. Core developers are encouraged to add news about their latest work to the newsletter's development section and the changelog of the upcoming release. At the end of each month, it's generally a good idea to get in touch with other contributors to ask them to add news about their contributions to the newsletter.

Development news

Release preparations

Following the release plan, the FlightGear repositories will close for major changes on June 17. In this "frozen" state, no new features or major changes shall be pushed onto the development streams (neither source nor data). This period is for preparing the code for the release and make sure there are no major issues. It lasts for four weeks until creation of the release branches on July 17.

It's a good idea for aircraft developers to adhere to this rule. However, aircraft in fgdata may be handled as an exception from the frozen state. Any change to aircraft may be pushed to the repository if it is guaranteed that this change does not affect any other aircraft or system and if no file outside the root directory of that specific aircraft is changed. Also, aircraft defined as part of the base package (e.g. the c172p) enter the frozen state and shall not undergo major changes in that period.

Aircraft Checklists

1rightarrow.png See Aircraft Checklists for the main article about this subject.

Stuart has pushed a further enhancement to the checklist feature. Aircraft authors may now add one or more <binding> elements to a checklist <item>. Conceptually, these are the actions that the user should execute to complete the item. The checklist GUI displays items with such <binding> elements with an additional [>] button. Clicking on the button executes the bindings, allowing the user to watch as the computer/co-pilot/instructor executes the checklist item. Due to the power of Nasal and properties, this feature only required 13 lines of code to write, most of which is displaying the button!

The <binding> element is exactly as you would expect - so property-assign, nasal etc. works. It's a good moment to highlight the property-interpolate command which provides a very convenient way to interpolate a property to a new value. See $FG_ROOT/Docs/README.commands if you were unaware of this.

The Cessna 172P has been updated to use this feature, including some rather cute interpolations of the throttle, mixture and trim controls.

Stuart is planning to extend this function so that checklists with one or more items containing a <binding> element can have an (optional) button to execute the entire checklist.

Transponder

1rightarrow.png See Transponder for the main article about this subject.

Clement (with some help from Vivian and large contribution from James) has overhauled the transponder instrument, making it easier to use from panels, supporting Mode-S altitude encoding, and sending the important properties over multi-player. This will allow more realistic ATC interactions, since id (squawk) codes now matter!

See this wiki page for more information on installing / updating the transponder installation in aircraft. The common panel-mounted KT-70 instrument has gotten an overhaul to use the updated C++ code. You can adjust the transponder settings for any aircraft via the Equipment > Radio Settings dialog.

OpenRadar has been updated in order to manage the new transponder code.

Project Rembrandt

A number of Mac users have been reporting issues related to running Project Rembrandt (deferred rendering/shadows) on Mac OSX with ATI/AMD GPUS, we are now looking for Mac users to provide feedback on running Rembrandt on Mac OSX, required information includes errors and warnings shown during startup/runtime, but also screen shots showing any issues. Please see: Project Rembrandt#Mac Issues.

Tutorial: Porting custom PUI widgets to Canvas

canvas based loglist widget

The shortcomings of our old PUI-based GUI have been repeatedly brought up on the mailing list over the years.

In order to eventually phase out PUI completely, we need to stop adding PUI dependencies to the source tree. We now have the Canvas system, and there's a formal decision to modernize the GUI using the Canvas, and completely replace PUI sooner rather than later.

It was a lot of work to get rid of hard-coded PUI dialogs, and we still have a bunch of hard-coded PUI widgets – as long as we have those, getting totally rid of PUI will be increasingly difficult, because each hard-coded widget will either need to be phased out or manually ported.

Which is exactly the reason why adding additional PUI widgets to the source tree is a really bad idea and counter-constructive to accomplish our long-term goal of phasing out PUI completely.

This is why we now have a dedicated tutorial about porting our old custom PUI widgets to make use of the Canvas system: Canvas GUI. Core developers are requested not to add any new PUI widgets to the source tree, but instead help identify shortcomings of the existing Canvas/Nasal interface, so that it can be accordingly extended, in order to allow custom widgets to be specified outside C++ space - which can usually be quickly accomplished using the cppbind framework.

Canvas System

If you have been wanting to play around with the new Canvas system, make sure to check out the Howto:Adding a canvas to a GUI dialog tutorial, which demonstrates how to easily add a canvas rendering region to a conventional FlightGear dialog. Using the combination of Nasal scripting, standard FlightGear GUI dialogs and embedded canvas regions for 2D rendering, you can even create standalone "FlightGear applications" in the form of self-contained FlightGear XML dialogs that you can easily share with fellow FlightGear users.

This can for example be used to create a plotting application like FGPlot (see below), which would look to FlightGear like a conventional dialog.

FGPlot

FGPlot

kuifje09 has started a little Linux project creating a plotter program for use with creating/tuning the autopilot in FlightGear. See FGPlot for more infomration and a download link.

Getting involved as a programmer

Unfortunately, most of the active FG developers are currently very overstretched in terms of the areas that they have ownership of, which is affecting how much can actually be done. Fundamentally we need more core devs.

If you are interested in contributing as a core developer, please see Howto:Start core development.

International FlightGear websites

Enjoy the awesome international FlightGear community and experiment the dream to fly with the best Free Flight Simulation Software ever built. With more than 15 years of experience FlightGear has a wide user community, from professionals to normal users from all around the world. For sure you'll find good friends in this amazing virtual community.

Please visit FlightGear websites in other languages:

Translators required

En.gif The FlightGear Wiki still needs help for translating it into various languages. If you are interested in making the FlightGear Wiki multi-language then start at Help:Translate.
De.gif Das FlightGear Wiki benötigt immer noch Hilfe bei der Übersetzung in verschiedene Sprachen. Wenn Du Interesse daran hast, das FlightGear Wiki Mehrsprachig zu machen, dann fang doch mit Help:Übersetzen an.
Nl.gif De FlightGear Wiki kan nog steed hulp gebruiken bij het vertalen van artikelen. Als je interesse hebt om de wiki meertalig te maken, raden we je aan om een kijkje te nemen bij Help:Vertalen.
Es.gif La FlightGear wiki todavía necesita ayuda para traducirla a varios lenguajes. Si estás interesado en hacer la FlightGear wiki multilingüe, entonces comienza en Help:Traducir.

New software tools and projects

FlightGearMap update

FlightGearMap Cessna 172 panel.png A tablet instrument panel, mobile phone comm panel and another mobile phone showing the map.

FlightGearMap, an Android application bringing live FlightGear data to your phone, has received an extensive update. Several new instruments were added, including an altitude radar, HSI and RMI. Besides that some basic switches like the magnetos and starter have been implemented. And finally two all new panels come with this release: a Cessna 337 Skymaster panel and a communications panel where you can adjust your radio settings.

The app is avialable from Google Play.

FlightGear addons and mods

Scenery corner

Airports

Overview of a Caribbean city from the radar station Flying over another Caribbean town

DutchPilotMitchell has been working on making the scenery around the Caribbean more interesting. It is fictional, none of the placed models is actually there in real life. The reason why he made this was just about making a nice looking and fun area to fly (or drive!!).

You can make up your own 'missions'. For example, the people who work at the radar station are injured and need a medevac with a helicopter to bring them to the hospital quickly. Or there is a party in a small town, but they have nothing to drink. Fly to the scotch distillery and bring them drinks. As you can see there are countless things you can do on these islands. Especially after more islands get updated. The only limit is just your imagination. It is really nice flying around with detailled scenery beneath you. There are lots of places to explore. Here are a few features: there is are a few naval ships around, roads with cars on them, railways with trains and train stations, lots of small villages to explore, a WWII airport with F6F Hellcats and B17 bombers, harbours and industrial areas, radar stations and more!

It is worth downloading and flying around the place, especially with friends! Imagine doing a helicopter mission with other pilots or a sightseeing tour. On the forums you'll find more pictures of all this and also you'll find a regularly updated download link.

Pittsburgh Development

Pittsburgh, Pennsylvania is one of the most iconic places in American history. Rick Ace has started modeling parts of city, and Pittsburgh International Airport. The Frick Building has almost been completed too. You can watch his progress in the flightgear forums This is a link to the FlightGear forum..

Community news

Virtual airlines

FlightGear Virtual Aviation Organization - www.flightgearvao.org - We are an organization that has multiplayer events, ATC service and training for both pilots and ATC alike! We are currently seeking staff members and pilots, so join today!

Web tools for ATC sessions in Europe

Some new web tools help planning ATC events are in development. They was initiated by lenny64 who announced on the official forum on Apr 27, 2013 This is a link to the FlightGear forum. that he had the first version of a web site, lenny64.free.fr, that made it possible to see and plan ATC sessions at some of the airports in Europe. Since then it have become possible too file flights to some of them.

He later announced This is a link to the FlightGear forum. that similar functionality was added by evilslut to his tracker and mpserver, mpserver12.

These services makes it possible:

  • To see planned and current ATC sessions at various airports
  • To plan ATC sessions for those airports
  • To file flightplans to at least some of those airports
  • For ATCs to see what flightplans are filed to and from his airport

The airports currently supported by those services are (airports with asterisk are only supported by lenny64):

And finally ...

Contributing

One of the regular thoughts expressed on the FlightGear forums is "I'd like to contribute but I don't know how to program, and I don't have the time". 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.

For ideas on starting to contribute to FlightGear, you may want to check out: Volunteer.

To learn more about how the project works, please see this short essay This is a link to the FlightGear forum. written by Thorsten, for a more detailed article see How the FlightGear project works.

Call for volunteers

  • The Flightgear On Android team is looking for testers
  • The Target4Today team is looking for volunteers to help improving FlightGear's combat support
  • The FGFSPM (FlightGear Package Manager) is looking for a new maintainer.