GRASS and C++: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
I/O: | I/O: | ||
* | * {{src|lib/iostream/}} | ||
Raster data processing | Raster data processing | ||
* | * {{src|raster/r.terraflow/}} | ||
Image processing | Image processing | ||
* | * {{src|imagery/i.atcorr/}} | ||
Visualization: | Visualization: | ||
* | * {{src|visualization/xganim/}} | ||
* | * {{src|visualization/wximgview/}} | ||
== Notes == | == Notes == |
Revision as of 20:53, 5 May 2012
(page to be expanded)
Calling GRASS library functionality in C++
For working examples, see:
I/O:
Raster data processing
Image processing
Visualization:
Notes
When developing C++ code to call a C function you need to specified for the compiler that the gis.h include is C code with:
extern "C"
{
#include <grass/gis.h>
}