WorldEditor

From FlightGear wiki
(Redirected from WED)
Jump to navigation Jump to search
WorldEditor
Amsterdam Schiphol in WED.
Amsterdam Schiphol in WED.
Developed by Ben Supnik, Cristiano Maggi
Initial release 2007
OS GNU/Linux, Windows, MacOS X
License GNU General Public License
Website

WorldEditor (WED) is a CAD-like graphic editor that lets you create custom airport layouts. It is designed for X-Plane, and works with apt.dat version 850 and higher.

Obtaining WorldEditor

Mac/Windows/Linux

Stable WED binaries for Windows, Mac and GNU/Linux can be downloaded from developer.x-plane.com. A beta version may also be available.

Linux

If you want to compile the tool for GNU/Linux based operating systems, you should not be afraid of that, since it brings most of its dependencies along, it is not hard. However, some things need to be provided by the user's system:

  • binutils and binutils-devel
  • git
  • GNU coreutils
  • GNU make
  • libmpfr-devel
  • mesa-libGL-devel and mesa-libGLU-devel
  • python2
  • cmake
  • fltk
  • curl

Downloading WED's source (about 70 MiB) is done via git:

git clone https://github.com/X-Plane/xptools.git --depth=1
cd xptools

Afterwards, WED's dependencies need to be downloaded (about 400 MiB) and compiled. These steps have to be done only once, before compiling WED the first time:

git submodule init
git submodule update libs
cd libs
make -j$(nproc)
cd ..

Compiling WED:

conf=release_opt make -j$(nproc) WED

You may now copy the file build/Linux/release_opt/WED to ~/bin or another location within your $PATH environment variable:

cp build/Linux/release_opt/WED ~/bin

Starting WED for the first time

X-Plane itself does not need to be installed before using WED. However, WED will require that you choose the X-Plane folder before it will allow you to do anything. Create a working directory with the following structure before starting WED for the first time.

working directory <-- Pick a name
   |--Custom Scenery
   |--Global Scenery
   |--Resources
         |--default scenery

NOTICE: WED looks for this specific directory structure and specific directory names!

Click "Choose X-Plane folder". Select the working directory for the X-Plane folder.

Related content

External links