Airport Diagram Generator: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
No edit summary
m (-cat: Java)
 
(12 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Affected by Canvas|Canvas EFB Framework}}
{{Infobox Software
| title                  = Airport Diagram Generator
| image                  =
| developedby            = Brisa
| initialrelease        = July 12, 2009
| latestrelease          =
| writtenin              = Java
| os                    =
| license                = [[GNU General Public License]]
}}
The '''Airport Diagram Generator''' is a Java application capable of generating [[:Category:Airports|airport]] diagrams using [[FlightGear]] data only.
The '''Airport Diagram Generator''' is a Java application capable of generating [[:Category:Airports|airport]] diagrams using [[FlightGear]] data only.


[Image:Adg-KSFO-0.png|right|thumb|first page of KSFO]
[[File:Adg-KSFO-0.png|right|thumb|first page of KSFO]]
[Image:Adg-KSFO-1.png|right|thumb|second page of KSFO]
[[File:Adg-KSFO-1.png|right|thumb|second page of KSFO]]


Generated diagrams contain:
Generated diagrams contain:
Line 14: Line 26:
The software is based upon the [[Kelpie Flight Planner]] code.
The software is based upon the [[Kelpie Flight Planner]] code.


==Help==
Also see [http://sourceforge.net/projects/openefb/ OpenEFB] which is related open source software hosted at sourceforge, specifically meant to be used by users of MSFS and X-Plane.
 
== Help ==
You can:
You can:
# Generate a single airport diagram:
# Generate a single airport diagram:
#* <tt>java -jar AirportPainter.jar -fg-root=/path/to/your/fgfs/data -airport=KSFO</tt>
#* <tt>java -jar AirportPainter.jar -fg-root=/path/to/your/fgfs/data -output=. -airport=KSFO</tt>
# Generate multiple airport diagrams within an area:
# Generate multiple airport diagrams within an area:
#* <tt>java -jar AirportPainter.jar -fg-root=/path/to/your/fgfs/data -range=20 -airport=KSFO</tt>
#* <tt>java -jar AirportPainter.jar -fg-root=/path/to/your/fgfs/data -output=. -range=20 -airport=KSFO</tt>
# Start the application in graphical mode:
# Start the application in graphical mode:
#* <tt>java -jar AirportPainter.jar</tt>
#* <tt>java -jar AirportPainter.jar</tt>


==External links==
== Contributors ==
* [http://flightgear.org/forums/viewtopic.php?f=6&t=5377 Forum-topic] including download links
* brisa: Main program
* Jentron: svgs for vor, tacan etc.....
 
 
== External links ==
* [http://forum.flightgear.org/viewtopic.php?f=6&t=5377 Forum-topic] including download links
* new git page under [http://code.google.com/p/airportpainter/ code.google]
 
[[Category:Scenery software]]

Latest revision as of 09:55, 25 March 2020

IMPORTANT: Some, and possibly most, of the features/ideas discussed here are likely to be affected, and possibly even deprecated, by the ongoing work on providing a property tree-based 2D drawing API accessible from Nasal using the new Canvas system available since FlightGear 2.80 (08/2012). Please see: Canvas EFB Framework for further information

You are advised not to start working on anything directly related to this without first discussing/coordinating your ideas with other FlightGear contributors using the FlightGear developers mailing list or the Canvas subforum This is a link to the FlightGear forum.. Anything related to Canvas Core Development should be discussed first of all with TheTom and Zakalawe. Nasal-space frameworks are being maintained by Philosopher and Hooray currently. talk page.

Canvasready.png
Airport Diagram Generator
Developed by Brisa
Initial release July 12, 2009
Written in Java
License GNU General Public License

The Airport Diagram Generator is a Java application capable of generating airport diagrams using FlightGear data only.

first page of KSFO
second page of KSFO

Generated diagrams contain:

  • Airport ID and name
  • A schematic view of the airport layout (run- and taxiways).
  • All frequencies regarding the airport (ILS, Tower, Gnd, Atis etc.).
  • Nearest Navaid information and heading to/from.
  • True and magnetic compass indication.
  • Runway(s) length(s).

The software is based upon the Kelpie Flight Planner code.

Also see OpenEFB which is related open source software hosted at sourceforge, specifically meant to be used by users of MSFS and X-Plane.

Help

You can:

  1. Generate a single airport diagram:
    • java -jar AirportPainter.jar -fg-root=/path/to/your/fgfs/data -output=. -airport=KSFO
  2. Generate multiple airport diagrams within an area:
    • java -jar AirportPainter.jar -fg-root=/path/to/your/fgfs/data -output=. -range=20 -airport=KSFO
  3. Start the application in graphical mode:
    • java -jar AirportPainter.jar

Contributors

  • brisa: Main program
  • Jentron: svgs for vor, tacan etc.....


External links