GRASS GIS 7 Programmer's Manual  7.2.1(2017)-exported
adj_cellhd.c File Reference

GIS Library - CELL header adjustment. More...

#include <grass/gis.h>
#include <grass/glocale.h>
Include dependency graph for adj_cellhd.c:

Go to the source code of this file.

Functions

void G_adjust_Cell_head (struct Cell_head *cellhd, int row_flag, int col_flag)
 Adjust cell header. More...
 
void G_adjust_Cell_head3 (struct Cell_head *cellhd, int row_flag, int col_flag, int depth_flag)
 Adjust cell header for 3D values. More...
 

Detailed Description

GIS Library - CELL header adjustment.

(C) 2001-2009 by the GRASS Development Team

This program is free software under the GNU General Public License (>=v2). Read the file COPYING that comes with GRASS for details.

Author
Original author CERL

Definition in file adj_cellhd.c.

Function Documentation

◆ G_adjust_Cell_head()

void G_adjust_Cell_head ( struct Cell_head *  cellhd,
int  row_flag,
int  col_flag 
)

Adjust cell header.

This function fills in missing parts of the input cell header (or region). It also makes projection-specific adjustments. The cellhd structure must have its north, south, east, west, and proj fields set.

If row_flag is true, then the north-south resolution is computed from the number of rows in the cellhd structure. Otherwise the number of rows is computed from the north-south resolution in the structure, similarly for col_flag and the number of columns and the east-west resolution.

Note: 3D values are not adjusted.

Parameters
[in,out]cellhdpointer to Cell_head structure
row_flagcompute n-s resolution
col_flagcompute e-w resolution

Definition at line 38 of file adj_cellhd.c.

References G_debug(), G_fatal_error(), and G_warning().

◆ G_adjust_Cell_head3()

void G_adjust_Cell_head3 ( struct Cell_head *  cellhd,
int  row_flag,
int  col_flag,
int  depth_flag 
)

Adjust cell header for 3D values.

This function fills in missing parts of the input cell header (or region). It also makes projection-specific adjustments. The cellhd structure must have its north, south, east, west, and proj fields set.

If row_flag is true, then the north-south resolution is computed from the number of rows in the cellhd structure. Otherwise the number of rows is computed from the north-south resolution in the structure, similarly for col_flag and the number of columns and the east-west resolution.

If depth_flag is true, top-bottom resolution is calculated from depths. If depth_flag are false, number of depths is calculated from top-bottom resolution.

Warning
This function can cause segmentation fault without any warning when it is called with Cell_head top and bottom set to zero.
Parameters
[in,out]cellhdpointer to Cell_head structure
row_flagcompute n-s resolution
col_flagcompute e-w resolution
depth_flagcompute t-b resolution

Definition at line 186 of file adj_cellhd.c.

References G_debug(), G_fatal_error(), and G_warning().