1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #include "vizual.h"
- #include <grass/raster3d.h>
- void viz_make_header(file_info * hf, double dmin, double dmax,
- RASTER3D_Region * g3reg)
- {
- hf->min = dmin;
- hf->max = dmax;
- hf->xdim = g3reg->cols;
- hf->ydim = g3reg->rows;
- fprintf(stderr, "rows=%d cols=%d depths=%d\n",
- g3reg->rows, g3reg->cols, g3reg->depths);
- /*
- hf->ydim = g3reg->cols;
- hf->xdim = g3reg->rows;
- TRIAL: */
- hf->zdim = g3reg->depths;
- hf->north = g3reg->north;
- hf->south = g3reg->south;
- hf->east = g3reg->east;
- hf->west = g3reg->west;
- hf->top = g3reg->top;
- hf->bottom = g3reg->bottom;
- hf->ns_res = (g3reg->north - g3reg->south) / g3reg->rows;
- hf->ew_res = (g3reg->east - g3reg->west) / g3reg->cols;
- hf->tb_res = (g3reg->top - g3reg->bottom) / g3reg->depths;
- /* not needed here ?
- hf->zone
- hf->proj
- hf->type
- */
- }
|