GRASS Programmer's Manual  6.4.2(2012)
print_info.c
Go to the documentation of this file.
00001 #include "viz.h"
00002 
00003 int print_head_info(file_info * head)
00004 {
00005     fprintf(stderr, "xdim = %d ydim = %d zdim = %d\n",
00006             head->xdim, head->ydim, head->zdim);
00007     fprintf(stderr, " n = %f s = %f e = %f w = %f\n",
00008             head->north, head->south, head->east, head->west);
00009     fprintf(stderr, "t = %f b = %f\n", head->top, head->bottom);
00010     fprintf(stderr, "ns_res = %f ew_res = %f tb_res = %f\n",
00011             head->ns_res, head->ew_res, head->tb_res);
00012     fprintf(stderr, "min = %f max = %f \n", head->min, head->max);
00013 
00014     return 0;
00015 }
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines