/ osgdem

OpenSceneGraph

osgdem

osgdem is utility program for reading geospatial imagery and digital elevation maps (DEM's) and generating large scale 3D terrain databases that OpenSceneGraph applications can load and browse in real-time. What follows is a step-by-step guide to using osgdem, followed by a list of full options available.

Quick step by step guide

What follows are the steps required to get VirtualPlanetBuilder/osgdem compiling and an example of how to use it to process imagery and DEM's to generate a paged databases.

1. Download, compile & install GDAL, and OpenSceneGraph. Then download VirtualPlanetBuilder.

2. For UNIX 'make' users:

cd VirtualPlanetBuilder
./configure
make
sudo make install

3. Oh, make sure you have a couple of GB of spare disk space, because you're going to need it :-)

4. Download some data, for this example I'm using the Puget Sound data at:

http://www.cc.gatech.edu/projects/large_models/ps.html
Download Elevation Map: 16385 × 16385 PNG: 188MB
Download Texture Map: 16384 × 16384 PNG: 268MB

5. To avoid aliasing artifacts when accessing data I use GDAL utilitiy programs to generate overviews (basically mip maps stored in the .tiff format) via:

gdal_translate ps_height_16k.png ps_height_16k.tif
gdaladdo -r average ps_height_16k.tif 2 4 8 16 32

gdal_translate ps_texture_16k.png ps_texture_16k.tif
gdaladdo -r average ps_texture_16k.tif 2 4 8 16 32

6. Now its time to run the osgdem example to generate your PagedLOD database, the more levels you generate the longer it will take (exponentially so). 'osgdem' is just a front end to osgTerrain::DataSet where all the hard work happens. Here's what to run :

osgdem --xx 10 --yy 10 -t ps_texture_16k.tif \ 
--xx 10 --yy 10 -d ps_height_16k.tif \ 
-l 8 -v 0.1 -o puget.ive -a pegout.osga

Then go away for lunch, afternoon and tea, as generating this much data takes a while... If you don't wish to wait for the full database then reduce the number of levels it generates by setting the -l option to a lower value such as 3.
The command line options used above are:
The first part the --xx and --yy is specifying the size of the pixels in meters, since these png/tif don't have any geospatial data of their own, if you have geospatialised files then you won't need this.

The second part -t <filename> is the option for specificing the texture maps to use, you can use as many times as you wish, osgTerrain::DataSet will moziac them into a single database.

The third part -d is the option for specifying the digital elevation maps to use, as with the textures you can use as many as you like.

The -l option specificies the maximum number of levels to generate. If you use a large number then the database generation will stop once the max resolution of your source data is matched by the resulting database. The database generation will decend further where there is high res source data, decend less where there is lower res data.

The -v option specifies the scaling factor which the height is multiplied by.

The -o <filename> is the output format to generate the databases in. This will be the name of the topmost file in the one you should load. It can be a .ive or a .osg. The .ive is faster and has embedded files.

And finally the -a <filename> tells the osgdem to write all tiles to a single archive, in this a the OpenSceneGraph native archive format, which uses the extension .osga to disguinish itself. The use of archives is not required, but is recommend since it makes managment of the whole database much more convinient - you have a single file to manage rather than what could be 10's of thousands as is the case of large databases.

7. Time to play. Simply load the database in your app, and if you've based it on osgViewer::Viewer or CompositeViewer all the paging support is already built in. The standard osgviewer works just fine so, here goes:

osgviewer pegout.osga

8. If your imagery and DEMs have geospatial coords associated with them then the -xx, --yy and -v options will not be required, making it much simplier to specify - you just need to specifiy options such as -t imge.tif and -d terran.dt0 without any need to set the coordinate system.

9. osgdem can automatically handle mosaicing of sets of files. These can be specified via a sequence of -t <filename> and -d <filename> pairs on the commandline, or via -t <directoryname> and -d <directoryname>.

Commandline options

See [CommandLineOptions]

Usage of VPB source file

Write all the osgdem options to a VPB source file, and then use this source file in subsequent runs, this makes means you can avoid all the long winded options when you are experimenting. i.e

// Create the build.source file
osgdem --bluemarble-west -t ../land_shallow_topo_west.tif \
           --bluemarble-east -t ../land_shallow_topo_east.tif \
           --geocentric \
           -o earth/earth.ive \
           --so build.source

// run the build
osgdem -s build.source

// have a look at the file - it's just an extended form of a .osg file
cat build.source

// override the number of levels
osgdem -s build.source -l 4

// run build adding your extra imagery
osgdem -s build.source -t MyOrthoImage.tif

Coordinate System Tips

WKT coordinate system definition format is a very comprehensive, but difficult to use as a "human enter-able" specifier for coordinate systems. osgdem uses GDAL under the hood which also allows definition of the --cs flag in PROJ4 format. PROJ4's definition format is much more human friendly.

Examples:

  • For a Latitude (Y Axis), Longitude (X Axis) and Altitude coordinate system in units of degrees use: osgdem ... --cs "+proj=latlong +datum=WGS84" -o ...
  • For a UTM coordinate system referenced to zone 47 (in this example) in units of meters use: osgdem ... --cs "+proj=utm +zone=47" -o ...
  • For a Geocentric system, with the origin being the center of the earth and units in meters use: osgdem ... --geocentric -o ...