forked from gmcgarragh/seviri_util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
external.h
52 lines (37 loc) · 983 Bytes
/
external.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*******************************************************************************
*
* Copyright (C) 2014-2018 Greg McGarragh <[email protected]>
*
* This source code is licensed under the GNU General Public License (GPL),
* Version 3. See the file COPYING for more details.
*
******************************************************************************/
#ifndef EXTERNAL_H
#define EXTERNAL_H
#ifdef __cplusplus
extern "C" {
#endif
#define SEVIRI_N_BANDS 12
typedef unsigned char uchar;
typedef unsigned short ushort;
typedef unsigned int uint;
typedef unsigned long ulong;
enum seviri_bounds {
SEVIRI_BOUNDS_FULL_DISK,
SEVIRI_BOUNDS_ACTUAL_IMAGE,
SEVIRI_BOUNDS_LINE_COLUMN,
SEVIRI_BOUNDS_LAT_LON,
N_SEVIRI_BOUNDS
};
enum seviri_units {
SEVIRI_UNIT_CNT,
SEVIRI_UNIT_RAD,
SEVIRI_UNIT_REF,
SEVIRI_UNIT_BRF,
SEVIRI_UNIT_BT,
N_SEVIRI_UNITS
};
#ifdef __cplusplus
}
#endif
#endif /* EXTERNAL_H */