GRASS Programmer's Manual  6.4.3(2013)-r
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Pages
print_info.c
Go to the documentation of this file.
1 #include "viz.h"
2 
4 {
5  fprintf(stderr, "xdim = %d ydim = %d zdim = %d\n",
6  head->xdim, head->ydim, head->zdim);
7  fprintf(stderr, " n = %f s = %f e = %f w = %f\n",
8  head->north, head->south, head->east, head->west);
9  fprintf(stderr, "t = %f b = %f\n", head->top, head->bottom);
10  fprintf(stderr, "ns_res = %f ew_res = %f tb_res = %f\n",
11  head->ns_res, head->ew_res, head->tb_res);
12  fprintf(stderr, "min = %f max = %f \n", head->min, head->max);
13 
14  return 0;
15 }