Building FlightGear with osgEarth Integration

Revision as of 14:15, 9 December 2016 by Rebootl (talk | contribs) (updated build instructions, quotes, templates)
This article is incomplete. Please help improve the article, or discuss the issue on the talk page.
Note  Development of FlightGear osgEarth integration takes place in separate repositories.

Updated branches for FG 2016.2.0: 2016.2.0-OsgEarth

The repositories for simgear- and flightgear- osgEarth are on:

The corresponding fgdata is at:


Objective

This section contains out-of-date information

Please help improve this article by updating it. There may be additional information on the talk page.

  Someone able to build from source should still be able to get osgEarth working without too much effort - on Windows there should even be some kind of "overlay" (set of patch files) - I am not sure if those have recently been updated for 3.2 though.
— Hooray (Tue Dec 30). Re: 3.2 .
(powered by Instant-Cquotes)
 
  you do need osgEarth support for that, which is not included in any of the standard releases so far - which is why you need to follow the instructions from the osgEarth thread - however, osgEarth in 3.2 is a completely different matter, because this may very well involve building FlightGear from source - all of this is fairly well documented via a number of different wiki articles. However, it is a fairly technical and tedious process, certainly for people new to compiling software. In other words, osgEarth support in FlightGear in its current form hasn't yet been included in any official release, which means that it must be considered an experimental feature, which is primarily supported by the community, through a number of wiki articles, forum threads/postings and instructions on getting it to work.
— Hooray (Tue Dec 30). Re: 3.2 .
(powered by Instant-Cquotes)
 
  I believe that the OsgEarthNext branch can be built in Linux but seems to require some gyrations to accomplish the setup. [...] If you have the fgdata git repository cloned already, you might consider adding a remote pointing to the fgdata-osgearth repository. That would allow you to cleanly manage as a separate branch.
— poweroftwo (Fri Dec 26). Re: Initial FlightGear / .
(powered by Instant-Cquotes)
 

Status

  It is what it is, and being what it is (a set of external patches), it has a certain barrier to entry, and learning curve, associated with it.

Basically, people wanting to use this, will need to know how to build FlightGear from source, how to use git and how to apply patches.

People with a working build environment should have no problems getting this to work - the main caveat being currently that some recent sg/fg developments would not be integrated yet.

But otherwise, all the documentation that you can find on the wiki about building FlightGear from source, using git, will be applicable - the main difference is that once you have everything set up and working to build stock fgfs, you would add poweroftwo's gitlab branches as git remotes, and then build an older version of SimGear/FlightGear which contains the corresponding patches.
 
  That's basically the whole idea behind osgEarth. It can do satellite/orthoimagery (that's what you see advertised the most), but it can also load shapefiles, DEM etc. And it even comes with built-in LOD algorithms. See their Google+ page for some recent screenshots and videos: https://plus.google.com/+OsgearthOrg/posts
Jeff has done/is doing excellent working integrating it to FlightGear. I'd definitely encourage anyone interested in generating scenery on the fly to look into that before anything else.
— Gijs de Rooy (2015-03-14). Re: [Flightgear-devel] Google Code closing down.
(powered by Instant-Cquotes)
 

Building on Linux (Arch Linux)

Updated as of 2016-12-09

While I am using Arch Linux the build instructions should also be applicable on other GNU/Linux distributions.

Note however that this feature should still be considered experimental. The build process can be tedious and things may not work as expected.

In case you never build FG from source you may try to build the regular version first. Understanding what you're doing should greatly help in getting this to work.

  people definitely need to understand what they are doing, I would not suggest to actually try this unless people really understand how to patch/build different versions of SG/FG - people blindly following instructions by copying & pasting shell commands into a terminal window is begging for trouble - as matter of fact, that is why I always encourage folks to set up dedicated "fgfs" accounts to be on the safe side.
— Hooray  (Nov 29th, 2016).  Re: OSGEarth integrate in Linux Ubuntu .
(powered by Instant-Cquotes)
 

Prerequisites

All that is needed to build regular FlightGear from source.

See e.g.:

I used OpenSceneGraph 3.4.0, installed via package manager.

Additionally:

  • gdal
  • curl
  • proj
  • evtl. more ?? (check the configure outputs)

Below instructions will use a directory inside the user's home. So it does not conflict with system-wide installed packages.

Create a directory for the build process inside your home:

$ mkdir FG-osgE
$ mkdir FG-osgE/local   # (install dir)
$ cd FG-osgE

osgEarth

Due to a change not yet adapted in simgear-osgearth, the master branch cannot be used currently. Sticking to a specific version would be useful anyway, so I used the tag osgearth-2.8.

For this to work, in turn, a commit in simgear-osgearth has to be reverted in the next step. (This situation is not optimal and should be improved.)

$ git clone https://github.com/gwaldron/osgearth.git
$ cd osgearth/
$ git checkout -b osgearth-2.8 osgearth-2.8

$ mkdir ../osgearth-build
$ cd ../osgearth-build
$ cmake ../osgearth -DCMAKE_INSTALL_PREFIX="$HOME/FG-osgE/local"
$ make -jN
$ make install
$ cd ..

With N being the number of CPU's you want to use, e.g.:

$ make -j3

simgear-osgearth

$ git clone https://gitlab.com/poweroftwo/simgear-osgearth.git
$ cd simgear-osgearth
$ git checkout 2016.2.0-OsgEarth

Branch is at commit: 0f2bc916f3d4739adc3efe961c9e313ce4b388e7
Since we use osgEarth-2.8 we need to revert an API change commit.

$ git revert 8777ad51e2ebc3ba5b55112e391e99504bb5d079

(Save the log.)

$ mkdir ../simgear-osgearth-build
$ cd ../simgear-osgearth-build
$ cmake ../simgear-osgearth -DCMAKE_INSTALL_PREFIX="$HOME/FG-osgE/local"
$ make -jN
$ make install
$ cd ..

flightgear-osgearth

$ git clone https://gitlab.com/poweroftwo/flightgear-osgearth.git
$ cd flightgear-osgearth
$ git checkout 2016.2.0-OsgEarth
$ mkdir ../flightgear-osgearth-build
$ cd ../flightgear-osgearth-build
$ SIMGEAR_DIR="$HOME/FG-osgE/local" cmake ../flightgear-osgearth -DCMAKE_INSTALL_PREFIX="$HOME/FG-osgE/local"
$ make install
$ cd ..

I had to correct the gdal includes in src/Viewer/OsgEarthHeightField.cxx and add -DCMAKE_EXE_LINKER_FLAGS="-lgdal" to the cmake command, but that might be an Arch specific problem.[1]

Though I cannot find gdal in the CMakeLists.txt so it would evtl. be good/necessary to add it there (probably not that easy).

fgdata-osgearth

Clone or download from https://bitbucket.org/simperative/fgdata.

$ git clone https://bitbucket.org/simperative/fgdata.git
$ cd fgdata
$ git fetch && git checkout 2016.2.0-OsgEarth

Launch

Commands or a script, e.g.:

#!/bin/bash
#
#
export LD_LIBRARY_PATH="$HOME/FG-osgE/local/lib64"
export FG_ROOT="$HOME/FG-osgE/fgdata"
export FG_HOME="$HOME/.fgfs-osgE"

local/bin/fgfs

Activate osgEarth via the menu View --> Rendering Options --> osgEarth.

Run-time issues / missing features

  • landing lights are misplaced (in the air) on KSFO (others?)
  • metar data not available (probably easy to fix, maybe something like a wrong url?)
  • terrain is always lit up (though brightness can be set manually)
  • aircraft may sink into ground when switching to osgEarth

References

  1. I found this solution on a french forum: http://fr.flightgear.org/forums/viewtopic.php?id=3383&p=3