README 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /****************************************************************************
  2. *
  3. * MODULE: dspf library
  4. * AUTHOR(S):
  5. * Originally by Bill Brown, with contributions from
  6. * Bill Hughes, Brook Milligan, Helena Mitasova
  7. * Started in GRASS 4.x with makedspf program, then
  8. * appeared as this lib in GRASS 5.0beta_2i**.
  9. * Subsequent (post-CVS) contributors:
  10. * Markus Neteler <neteler itc.it>
  11. * Glynn Clements <glynn gclements.plus.com>,
  12. * Bernhard Reiter <bernhard intevation.de>
  13. * PURPOSE: libraries for NVIZ: render/display volumes
  14. * COPYRIGHT: (C) 1996-2006 by the GRASS Development Team
  15. *
  16. * This program is free software under the GNU General Public
  17. * License (>=v2). Read the file COPYING that comes with GRASS
  18. * for details.
  19. *
  20. *****************************************************************************/
  21. Info in .grid3 headers:
  22. version number
  23. xdim ydim zdim
  24. north south east west top bottom
  25. ns_res ew_res tb_res
  26. zone
  27. proj
  28. type (1=short 2=int 3=float)
  29. min max (data values)
  30. Info in .dspf headers:
  31. version number
  32. xdim ydim zdim
  33. min max
  34. lightmodel (1=flat 2=gouraud)
  35. number of thresholds
  36. array of threshold values
  37. data offset
  38. lookup offset
  39. Thu Mar 28 09:31:59 CST 1996
  40. In process of eliminating use of .grid3 files, using
  41. new 3dgrid format instead.