Skip to main content

Work in progress: Whole earth model

One of the fundamental modules in D5 supplies a model of the earth (or other, roughly ellipsoid planet) to the core representation of the DIRSIG universe. The distributed version of D5 will likely contain a simple, material-mapped sphere representation of the earth by default (to keep download sizes reasonable), with the option to obtain more detailed (and more correct) models.

To this end we've been working on an earth model based on the WGS84 reference ellipsoid and SRTM (Shuttle Radar Topography Mission) DEM data. Since this is a very large data set (the 500m data we're using currently is 4.7GB in its raw form) it is an ideal case to test some of our new large file handling routines and integrating them into geometry interactions.

We model the earth as a collection of triangle mesh patches representing cells (primarily hexagons) of a geodesic, specifically the ISEA aperture 4 resolution 7 grid (i.e. 163,842 index cells). Each patch can be loaded into memory independently, pre-optimized for rendering, giving us a way to handle the large data set smoothly. The resulting distribution of patches looks like:



The SRTM data is then sorted into index cells. The plot below shows a small subset of the DEM near the northwest shore of Lake Erie sorted into index cells:



Once sorted, we then generate a mesh within the index cell with approximately one triangle per DEM posting. The triangles are equal area, and with the exception of the 12 pentagons in the geodesic, each cell has the same number of triangles (this will facilitate further optimizations for GPU rendering). A single cell mesh will look something like this (lines represent facets, the points are the original SRTM data points):



We are currently in the process of formalizing this pipeline and incorporating the final result into the core model. Note that we don't expect users to want to routinely use the earth DEM as the basis for traditional scenes (there is not enough detail here for most purposes). Scenes can either be built on the earth model terrain or replace it entirely with their own. The earth DEM is primarily there to provide baseline geometry for background radiance (including important shadowing effects) and to provide data for large pixel footprints.

Comments

Brian J. Daniel said…
I am really excited about this feature, as well as the GPU optimization and large file management features. Is there a tentative date for beta release? Thanks, and keep it up.

Popular posts from this blog

LIDAR Point Cloud Visualization

A common question we get asked is how to visualize the point cloud data produced by either the Linear-mode or Geiger-mode LIDAR simulations. First, you should remember that the point cloud files produced by the "APD Processor" are simple ASCII/text files. Each line is the entry for a single return or "point" in the point cloud, including the point location and some attributes that vary depending on whether you modeled a Linear-mode or Geiger-mode system. For a Linear-mode system, a point cloud file will generally look like the example below: 12.7388 -45.3612 -0.0256 5.0290 0 0 0 0 12.8169 -45.3612 -0.0264 4.8362 0 1 0 0 12.8950 -45.3612 -0.0271 4.8362 0 2 0 0 ... 32.4008 -25.5446 10.5945 4.6783 0 65533 0 0 32.4781 -25.5446 10.5953 5.8959 0 65534 0 0 32.5360 -25.5640 12.5408 5.9185 0 65535 0 0 The first three columns are the X/Y/Z location of the point return. The 4th column is the intensity (in photons). Since Linear mode can support multiple returns per pulse, t...

Viewing and Importing DIRSIG Output Images

We are often asked what programs can view DIRSIG's image outputs and how to import the raw DIRSIG image data files into other tools for further processing. For basic image viewing, DIRSIG-4.4.0 now includes a very simple viewing tool. Launch it from the main simulation editor window by selecting the "Start image viewer" option from the "Tools" menu. If you run your simulation from the GUI simulation editor, new image files are automatically added to the list in the image viewer as they are generated. If you want to manually add files to the list, simply select the "Open" item from the "File" menu or the toolbar. Here is a screenshot of the main image viewer window. The top part contains the list of currently opened files and the bands within those image files. To view a single band as a gray-scale image, choose "Single Band Display" from the combo box and then click on the image band that you want. Finally, click "Load Band...

DIRSIG5: An introduction, a timeline and a paper

Although we will be devoting more time to this topic in the blog, many of you are aware that the next generation version of DIRSIG (aka DIRSIG5) has been under development for the past 2 years. This was a ground-up, restart from zero, etc. effort that establishes the DIRSIG modeling toolkit for the next decade. New core, new approach Although we have developed a compatibility layer to allow existing DIRSIG4 simulations to run, the DIRSIG5 model is radically different under the hood. The lightweight and highly optimized radiometry core uses a different numerical radiometry (light transport) approach than we used in DIRSIG4. In addition to being faster (less work to get an accurate answer) this algorithm is far better suited for parallelization. As a result, we have implemented micro-scale parallelization (multi-threading on multi-core CPUs) from the start and work on macro-scale parallelization (MPI distribution on cluster-style computing) is getting underway. This radiometry core al...