POV-Ray: Difference between revisions

From GRASS-Wiki
Jump to navigation Jump to search
(+Script to generate camera parameters for Povray)
(+ Usage example)
Line 2: Line 2:
POV-Ray is the [http://www.povray.org/ Persistence of Vision Raytracer]. It makes pretty 3D maps.
POV-Ray is the [http://www.povray.org/ Persistence of Vision Raytracer]. It makes pretty 3D maps.


GRASS has {{cmd|r.out.pov}} and {{cmd|v.out.pov}} modules for outputting maps to the software.
GRASS has {{cmd|r.out.pov}} and {{cmd|v.out.pov}} modules for exporting maps to the software in the appropriate POV-Ray formats.


== Tips and tutorials ==
== Tips and tutorials ==
Line 79: Line 79:
   echo "DEM translate: < $w, 0, $s >"
   echo "DEM translate: < $w, 0, $s >"


== Usage example ==
==== Idea ====
Make a 3D rendering of a panoramic scene with some 3D vector objects added (e.g., a building, a tower etc).
==== What's needed ====
You need a (detailed) elevation model (DEM), a color orthophoto to drape over and geocoded 3D vector data, perhaps originating from CAD software.
==== Procedure ====
'''Preparation:'''
# Create GRASS location if you don't have it already, for example in UTM projection (use [[GRASS Location Wizard|Location wizard]])
# Import elevation model (DEM, usually in GeoTIFF format, import with (use {{cmd|r.in.gdal}})
# Import orthophoto (comes typically in separated R/G/B channels within one GeoTIFF file, import with (use {{cmd|r.in.gdal}})
# Combine separated R/G/B channels into one single colorized orthophoto composite ({{cmd|r.composite}})
# Import 3D vector data (typically in DXF format and typically not geocoded but in xyz-coordinates)
# Geocode 3D vector data (using {{cmd|v.transform}})
'''Test visualization within GRASS:'''
# Make a test visualization with {{cmd|nviz}}): nviz elevation=my_dem color=my_ortho_rgb vector=my_building3d
'''Export into POV-Ray formats:'''
If that's ok, then start to export the prepared geodata for POV-Ray:
# Export elevation model with {{cmd|r.out.pov}}: r.out.pov map=my_dem tga=my_dem.tga
# Export R/G/B orthophoto composite with {{cmd|r.out.pov}}: r.out.png in=my_ortho_rgb out=my_ortho_rgb.png
# Export 3D vector objects with {{cmd|v.out.pov}}: v.out.pov input=my_building3d output=my_building3d.pov objmod="pigment { color red 0 green 1 blue 0 }"
'''Rendering with POV-ray:'''
# Create POV-Ray rendering script (see [http://mpa.itc.it/markus/povray/ here] for examples), see above for script to easily calculate rough camera and sun position coordinates.
# Render it, for example (11000x900 PNG file) with: povray +Ipovscript.pov +Opovview.png +D +P +W1100 +H900 +A0.5
[[File:Grass_povray_rendering.png|300px|thumb|center|Example for GRASS-POV-Ray rendering]]


== See also ==
== See also ==

Revision as of 13:44, 3 June 2010

About

POV-Ray is the Persistence of Vision Raytracer. It makes pretty 3D maps.

GRASS has r.out.pov and v.out.pov modules for exporting maps to the software in the appropriate POV-Ray formats.

Tips and tutorials

Script to generate camera parameters for Povray

This script is an easy way to get the camera parameters for povray. Use to personalize one of the control files downloadable above from M Neteler's old Web page:

 #!/bin/sh
 #
 # generate useful parameters for POVRAY control file
 # Markus Neteler 7/2003
 # $Date: 2005-02-10 17:56:18 +0100 (Do, 10 Feb 2005) $
 
 if  [ -z "$GISBASE" ] ; then
  echo "You must be in GRASS GIS to run this program." >&2
  exit 1
 fi
 
 if [ $# -lt 1 -o "$1" = "help" -o "$1" = "-h" -o "$1" = "--help" ] ; then
  echo "Script to generate POVRAY control file coordinates"
  echo "Usage:"
  echo "     r.out.povscript dtm "
  echo ""
  echo "The script reports values according to the current region"
  exit 1
 fi
 
 DEM=$1
 
 # get n,s,e,w
 eval `g.region -g`
 # get extents
 eval `g.region -ge`
 # get centers
 eval `g.region -gc`
 
 echo ""
 echo "                                n:$n"
 echo "                        +-----------------+"
 echo "                        |                 |"
 echo "    w:$w     |                 |  e:$e"  
 echo "                        |                 |"
 echo "                        |        c  <-*C  |    c: center ($center_easting $center_northing)"
 echo "                        |                 |    C: camera (pos: x 75%, y 50%)"
 echo "                        |                 |"
 echo "                        |                 | N-S extent: $ns_extent"
 echo "                        +-----------------+"
 echo "                                s:$s"
 echo "                 <- E-W extent: $ew_extent ->"
 echo ""
 echo "Povray control file parameters:"
 
 CAM1="`echo $e $w $ew_extent | awk '{printf "%f", (($1 + $2)/2 + ($3/4))}'`"
 CAM3="`echo $n $s | awk '{printf "%f", ($1 + $2)/2}'`"
 
 DEMZVAL="`r.what $DEM east_north=$CAM1,$CAM3 | cut -d'|' -f4`"
 DEMZVALHIGH="`echo $DEMZVAL | awk '{printf "%f", $1 + 700}'`"
 
 LOOK1="`echo $e $w | awk '{printf "%f", ($1 + $2)/2}'`"
 LOOK3="`echo $n $s | awk '{printf "%f", ($1 + $2)/2}'`"
 
 SCALE1=$cols
 SCALE3=$rows
 
 SUN1=$CAM1
 SUN3="`echo $s $ns_extent | awk '{printf "%f", ($1 - $2)}'`"
 
 echo "light_source:  < $SUN1, 7000, $SUN3 >"
 echo "Camera:        < $CAM1, $DEMZVALHIGH, $CAM3 >"
 echo "Look at:       < $LOOK1, $DEMZVAL, $LOOK3 >"
 echo "DEM scale:     < $ew_extent, 65535, $ns_extent >"
 echo "DEM translate: < $w, 0, $s >"

Usage example

Idea

Make a 3D rendering of a panoramic scene with some 3D vector objects added (e.g., a building, a tower etc).

What's needed

You need a (detailed) elevation model (DEM), a color orthophoto to drape over and geocoded 3D vector data, perhaps originating from CAD software.

Procedure

Preparation:

  1. Create GRASS location if you don't have it already, for example in UTM projection (use Location wizard)
  2. Import elevation model (DEM, usually in GeoTIFF format, import with (use r.in.gdal)
  3. Import orthophoto (comes typically in separated R/G/B channels within one GeoTIFF file, import with (use r.in.gdal)
  4. Combine separated R/G/B channels into one single colorized orthophoto composite (r.composite)
  5. Import 3D vector data (typically in DXF format and typically not geocoded but in xyz-coordinates)
  6. Geocode 3D vector data (using v.transform)

Test visualization within GRASS:

  1. Make a test visualization with nviz): nviz elevation=my_dem color=my_ortho_rgb vector=my_building3d

Export into POV-Ray formats: If that's ok, then start to export the prepared geodata for POV-Ray:

  1. Export elevation model with r.out.pov: r.out.pov map=my_dem tga=my_dem.tga
  2. Export R/G/B orthophoto composite with r.out.pov: r.out.png in=my_ortho_rgb out=my_ortho_rgb.png
  3. Export 3D vector objects with v.out.pov: v.out.pov input=my_building3d output=my_building3d.pov objmod="pigment { color red 0 green 1 blue 0 }"

Rendering with POV-ray:

  1. Create POV-Ray rendering script (see here for examples), see above for script to easily calculate rough camera and sun position coordinates.
  2. Render it, for example (11000x900 PNG file) with: povray +Ipovscript.pov +Opovview.png +D +P +W1100 +H900 +A0.5
Example for GRASS-POV-Ray rendering

See also