GRASS GIS 8 Programmer's Manual
8.5.0dev(2024)-847944e18e
|
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <grass/gis.h>
#include <grass/glocale.h>
#include <grass/interpf.h>
#include <grass/gmath.h>
Go to the source code of this file.
Functions | |
int | IL_interp_segments_2d_parallel (struct interp_params *params, struct tree_info *info, struct multtree *tree, struct BM *bitmask, double zmin, double zmax, double *zminac, double *zmaxac, double *gmin, double *gmax, double *c1min, double *c1max, double *c2min, double *c2max, double *ertot, int totsegm, off_t offset1, double dnorm, int threads) |
int IL_interp_segments_2d_parallel | ( | struct interp_params * | params, |
struct tree_info * | info, | ||
struct multtree * | tree, | ||
struct BM * | bitmask, | ||
double | zmin, | ||
double | zmax, | ||
double * | zminac, | ||
double * | zmaxac, | ||
double * | gmin, | ||
double * | gmax, | ||
double * | c1min, | ||
double * | c1max, | ||
double * | c2min, | ||
double * | c2max, | ||
double * | ertot, | ||
int | totsegm, | ||
off_t | offset1, | ||
double | dnorm, | ||
int | threads | ||
) |
See documentation for IL_interp_segments_2d. This is a parallel processing implementation.
info | info for the quad tree |
tree | current leaf of the quad tree |
bitmask | bitmask |
zmax | min and max input z-values |
zmaxac | min and max interp. z-values |
gmax | min and max inperp. slope val. |
c1max | min and max interp. curv. val. |
c2max | min and max interp. curv. val. |
ertot | total interplating func. error |
totsegm | total number of segments |
offset1 | offset for temp file writing |
Definition at line 36 of file segmen2d_parallel.c.