Changes between Version 2 and Version 3 of OsgVpbBuildEnvLinux


Ignore:
Timestamp:
Jul 31, 2010, 7:01:22 PM (14 years ago)
Author:
Torben Dannhauer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OsgVpbBuildEnvLinux

    v2 v3  
    253253Take care @@+++ NOT @@ to call the compile script again, in this case all compiled tasks will be resetted to status "pending"
    254254
    255 
    256 
    257 == Source data aquisition ==
    258 
    259 The following source data could be used:
    260 * Digital Elevation Data
    261  * Free global elevation data with 3 arcs resolution: SRTM data (NASA)
    262  * Free local high resolution elevation models: DEM data (www.viewfinderpanoramas.org)
    263 * Textures/Orthophotos
    264  * Free global low resolution texture data : Bluemarble Next Generation (NASA)
    265  * Free local low/medium resolution texture data: Landsat (NASA)
    266  * Commercial global medium/high resolution texture data: Landsat (atlogis.com, ...)
    267  * Commercial high resolution national texture data: e.g. Germany (Geocontent), USA (USGS), ...
    268 
    269 
    270 === SRTM-Data ===
    271 
    272 SRTM data with 3 arcs are available for free at
    273 * http://www.csi.cgiar.org/index.asp (american server, very slow)
    274 * ftp://xftp.jrc.it/pub/srtmV4/ (european mirror, very fast)
    275 
    276 Local high resolution DEM data (mainly based on SRTM)
    277 * http://www.viewfinderpanoramas.org/dem3.html
    278 
    279 Tip:
    280 Because SRTM data is delivery in many small .zip or tar.gz files, download and unpack it automatically:
    281 <code>
    282 wget -r ftp://xftp.jrc.it/pub/srtmV4/tiff/
    283 for zipfile in *.zip;do unzip -o "$zipfile" -d unpacked; done
    284 </code>
    285 
    286 
    287 === US texture data ===
    288 
    289 Local High and global resolution Texture and DEM data
    290 * http://edcsns17.cr.usgs.gov/EarthExplorer/
    291 * http://glovis.usgs.com
    292 
    293 To use LANDSAT arial images, read https://zulu.ssc.nasa.gov/mesid/tutorial/LandsatTutorial-V1.html for introduction. LANDSAT datasets are deliverey with up to seven images, each representing a different sensor with different wavelength. Three of this files (sensors for RGB) must be combined for the raw "natural" image.
    294 
    295 The image merging is possible with gdal_merge.py (available in FWTools):
    296 <code>
    297 gdal_merge.py -o outfile.tif R_sensor.tif  G_sensor.tif B_sensor.tif
    298 </code>
    299 
    300 === National high resolution data ===
    301 
    302 National high resolution data is available from many companies. Germany: !GeoContent
    303 
    304 
    305 == compress Data ===
    306 
    307 To shift system load from HDD to CPU, compress all textures lossless with LZW. This will increase rendering time a lot, because usually the HDD ist the bottleneck.
    308 {{{
    309 gdal_translate -co "COMPRESS=LZW" unsw ToDo
    310 }}}
    311 
    312 === Moon Data ===
    313 
    314 To animate earth rising above moon horizon, it could be usefull to model the moon.
    315 
    316 http://lunar.arc.nasa.gov/dataviz/datamaps/index.html
     255See TerrainData for data sources.
    317256
    318257== Troubleshooting ==