GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <grass/gis.h>
#include <grass/raster.h>
#include <grass/glocale.h>
#include "raster3d_intern.h"
Go to the source code of this file.
Functions | |
void | Rast3d_range_update_from_tile (RASTER3D_Map *map, const void *tile, int rows, int cols, int depths, int xRedundant, int yRedundant, int zRedundant, int nofNum, int type) |
int | Rast3d_read_range (const char *name, const char *mapset, struct FPRange *drange) |
int | Rast3d_range_load (RASTER3D_Map *map) |
Loads the range into the range structure of map. More... | |
void | Rast3d_range_min_max (RASTER3D_Map *map, double *min, double *max) |
Returns in min and max the minimum and maximum values of the range. More... | |
int | Rast3d_range_write (RASTER3D_Map *map) |
Writes the range which is stored in the range structure of map. (This function is invoked automatically when a new file is closed). More... | |
int | Rast3d_range_init (RASTER3D_Map *map) |
int Rast3d_range_init | ( | RASTER3D_Map * | map | ) |
Definition at line 206 of file d/range.c.
References RASTER3D_Map::range, and Rast_init_fp_range().
Referenced by Rast3d_open_cell_old_no_header().
int Rast3d_range_load | ( | RASTER3D_Map * | map | ) |
Loads the range into the range structure of map.
map | a pointer to a raster 3D map object |
Definition at line 112 of file d/range.c.
References RASTER3D_Map::fileName, RASTER3D_Map::mapset, RASTER3D_Map::operation, RASTER3D_Map::range, Rast3d_read_range(), and RASTER3D_WRITE_DATA.
void Rast3d_range_min_max | ( | RASTER3D_Map * | map, |
double * | min, | ||
double * | max | ||
) |
Returns in min and max the minimum and maximum values of the range.
map | a pointer to a raster 3D map object |
min | a pointer to a double to store minumim |
max | a pointer to a double to store maximum |
Definition at line 135 of file d/range.c.
References RASTER3D_Map::range, and Rast_get_fp_range_min_max().
Referenced by Rast3d_print_header().
void Rast3d_range_update_from_tile | ( | RASTER3D_Map * | map, |
const void * | tile, | ||
int | rows, | ||
int | cols, | ||
int | depths, | ||
int | xRedundant, | ||
int | yRedundant, | ||
int | zRedundant, | ||
int | nofNum, | ||
int | type | ||
) |
Definition at line 15 of file d/range.c.
Referenced by Rast3d_write_tile().
int Rast3d_range_write | ( | RASTER3D_Map * | map | ) |
Writes the range which is stored in the range structure of map. (This function is invoked automatically when a new file is closed).
map |
Definition at line 189 of file d/range.c.
References RASTER3D_Map::fileName, GPATH_MAX, RASTER3D_Map::mapset, Rast3d_filename(), and RASTER3D_RANGE_ELEMENT.
int Rast3d_read_range | ( | const char * | name, |
const char * | mapset, | ||
struct FPRange * | drange | ||
) |
Definition at line 59 of file d/range.c.
References _, G_open_old_misc(), G_warning(), G_xdr_get_double(), Rast_init_fp_range(), Rast_update_fp_range(), RASTER3D_DIRECTORY, RASTER3D_RANGE_ELEMENT, and RASTER3D_XDR_DOUBLE_LENGTH.
Referenced by Rast3d_range_load().