TODO 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. TODO
  2. ------
  3. 6.0.0 (can be done, but cannot stop 6.0.0 release)
  4. -----------------------------------------------------------------
  5. - Cygwin/Windows and other (Non-Linux) platform specific problems
  6. - i18n translations
  7. > 6.1.0
  8. -------
  9. Vector TODO: see doc/vector/TODO
  10. Missing modules:
  11. - write Vect_map_exists() and implement in g.remove and v.digit -n (radim)
  12. - add '-d' dissolve to v.reclass
  13. - add 'where=' to v.to.rast
  14. - add '-3' for 3D distance calculation in v.distance
  15. - change default color white to black:
  16. (better define DEFAULT_FG_COLOR, DEFAULT_BG_COLOR in gis.h, update in 5.0 and 5.7)
  17. display/d.erase/main.c: color->answer = "white"; /* set default color! */
  18. display/d.path/main.c: bgcolor_opt->answer = "white" ;
  19. display/d.barscale/main.c: opt2->answer = "white" ;
  20. display/d.legend/main.c: opt2->answer = "white" ;
  21. display/d.colortable/main.c: opt2->answer = "white" ;
  22. display/d.geodesic/main.c: parm.lcolor->answer = "white";
  23. display/d.geodesic/main.c: line_color = D_translate_color (parm.lcolor->answer = "white");
  24. display/d.geodesic/main.c: if(strcmp (parm.lcolor->answer, "white") == 0)
  25. display/d.graph/main.c: opt2->answer = "white" ;
  26. display/d.histogram/main.c: opt2->answer = "white" ;
  27. display/d.mapgraph/main.c: opt2->answer = "white" ;
  28. display/d.measure/main.c: parm.c2->answer = "white";
  29. display/d.rast.arrow/arrow.c: opt5->answer = "white" ;
  30. display/d.rhumbline/main.c: parm.lcolor->answer = "white";
  31. display/d.rhumbline/main.c: line_color = D_translate_color (parm.lcolor->answer = "white");
  32. display/d.rhumbline/main.c: if(strcmp (parm.lcolor->answer, "white") == 0)
  33. display/d.scale/main.c: opt2->answer = "white" ;
  34. display/d.title/main.c: opt2->answer = "white" ;
  35. display/d.linegraph/linegraph.c: t_color_opt->answer = "white" ;
  36. - merge of image libraries:
  37. A)
  38. - lib/imagery/: standard lib, in use (i.* except for i.points3, i.rectify3)
  39. - imagery/i.ortho.photo/libes/: standard lib, in use (i.ortho.photo, photo.*)
  40. B)
  41. - lib/image3/: never finished improvement which integrated the standard lib and
  42. the ortho lib. Seems to provide also ortho rectification for
  43. satellite data (i.points3, i.rectify3)
  44. C)
  45. - merge of i.points, i.vpoints, i.points3
  46. - merge of i.rectify and i.rectify3
  47. - addition of new resampling algorithms such as bilinear, cubic convolution
  48. (take from r.proj?)
  49. - add other warping methods (maybe thin splines from GDAL?)
  50. - implement/finish linewise ortho-rectification of satellite data
  51. - Add support for > 8bit colors (only 0-255 supported currently)
  52. - Depreciate tape functions in next major revision of GRASS and create a
  53. tape module that accomplishes tape access.