GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
Main Page
Related Pages
+
Data Structures
Data Structures
Class Hierarchy
+
Data Fields
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
~
+
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Functions
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
x
y
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
o
p
r
s
t
u
v
w
y
z
+
Enumerations
a
c
d
e
h
l
m
n
o
p
r
s
t
v
y
+
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
▼
GRASS GIS 7 Programmer's Manual
Libraries
Core libraries
►
Further libraries
File structure of GRASS Location
►
Compiling and Installing GRASS Modules
Multiple-Architecture Conventions
►
Vector modules and their parameters/flags
►
GRASS Array Statistics Library
btree2 library
►
GRASS Cairo Display Driver
►
GRASS testing normality & exponentiality Library
►
GRASS Cluster analysis statistics Library
►
GRASS DataBase Management Interface
►
GRASS Display Library
►
CCMATH mathematics library source code
►
GRASS GIS General Library (aka GIS Library)
►
GRASS Numerical math interface
►
GRASS Partial differential equations Library (GPDE)
►
GRASS Imagery Library
►
GRASS Data Elements Manage Library
►
GRASS Nviz Library
►
GRASS GIS OGSF Library
GRASS GIS PNG Display Driver Library
►
GRASS and the PROJ projection library
GRASS Postscript Display Driver Library
►
GRASS Raster Library
►
GRASS 3D Raster Volume Library
GRASS Row Input/Output Library
GRASS Library for interpolation with regularized splines with tension
►
GRASS Segment Library
►
GRASS Directed Graph Library
►
GRASS Vector Library
Todo List
Deprecated List
Bug List
►
Data Structures
▼
Files
►
File List
►
Globals
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
xtan.c
Go to the documentation of this file.
1
2
#include <stdlib.h>
3
#include <math.h>
4
5
#include <
grass/gis.h
>
6
#include <
grass/raster.h
>
7
#include <
grass/calc.h
>
8
9
/**********************************************************************
10
tan(x)
11
12
if floating point exception occurs during the evaluation of tan(x)
13
the result is NULL
14
15
note: x is in degrees.
16
**********************************************************************/
17
18
#define DEGREES_TO_RADIANS (M_PI / 180.0)
19
20
int
f_tan
(
int
argc,
const
int
*argt,
void
**args)
21
{
22
DCELL
*res = args[0];
23
DCELL
*arg1 = args[1];
24
int
i;
25
26
if
(argc < 1)
27
return
E_ARG_LO
;
28
if
(argc > 1)
29
return
E_ARG_HI
;
30
31
if
(argt[0] !=
DCELL_TYPE
)
32
return
E_RES_TYPE
;
33
34
if
(argt[1] !=
DCELL_TYPE
)
35
return
E_ARG_TYPE
;
36
37
for
(i = 0; i <
columns
; i++)
38
if
(
IS_NULL_D
(&arg1[i]))
39
SET_NULL_D
(&res[i]);
40
else
{
41
floating_point_exception
= 0;
42
res[i] = tan(arg1[i] *
DEGREES_TO_RADIANS
);
43
if
(
floating_point_exception
)
44
SET_NULL_D
(&res[i]);
45
}
46
47
return
0;
48
}
DCELL
double DCELL
Definition:
gis.h:603
E_ARG_TYPE
Definition:
calc.h:14
E_ARG_HI
Definition:
calc.h:13
columns
int columns
Definition:
calc.c:12
floating_point_exception
volatile int floating_point_exception
Definition:
calc.c:9
raster.h
gis.h
DCELL_TYPE
#define DCELL_TYPE
Definition:
raster.h:13
f_tan
int f_tan(int argc, const int *argt, void **args)
Definition:
xtan.c:20
E_ARG_LO
Definition:
calc.h:12
IS_NULL_D
#define IS_NULL_D(x)
Definition:
calc.h:30
E_RES_TYPE
Definition:
calc.h:15
SET_NULL_D
#define SET_NULL_D(x)
Definition:
calc.h:34
calc.h
DEGREES_TO_RADIANS
#define DEGREES_TO_RADIANS
Definition:
xtan.c:18
lib
calc
xtan.c
Generated on Mon May 31 2021 05:21:32 for GRASS GIS 7 Programmer's Manual by
1.8.13