A sphere with three ocean waves in differing shades of blue. Next to the sphere, there is the bolded text "Ocean Color". Under that, there are two acronyms, separated by a vertical pipe: OB.DAAC (Ocean Biology Distributed Active Archive Center) and OBPG (Ocean Biology Processing Group).
Lorem
ipsum
dolor
sit
amet
Toggle navigation
Ocean Color Science Software
Jump to content
ocssw
V2022
web
ocssw
ocssw_src
src
viirs_sim_sdr
hio.h
Go to the documentation of this file.
1
/*******************************************************************
2
3
hio.h
4
5
purpose: include file for the use of the hdf I/O routine aids
6
7
Parameters:
8
Type Name I/O Description
9
---- ---- --- -----------
10
11
Modification history:
12
Programmer Date Description of change
13
---------- ---- ---------------------
14
W. Robinson, SAIC 30-Sep-2005 rom l1io.h
15
16
*******************************************************************/
17
18
#include <stdint.h>
19
20
/*
21
* the hio_struct structure has file ids...
22
*/
23
typedef
struct
hio_struct_d
{
24
int32_t
fid
;
25
int32_t
sdfid
;
26
} hio_struct;
27
28
/*
29
* prototypes
30
*/
31
int32_t
hio_open
(
char
*, int32_t, hio_struct*);
32
//int32_t hio_w_sds(hio_struct, int, int32_t *, int32_t, char *, void *);
33
int32_t
hio_close
(hio_struct);
34
int32_t
hio_r_sds
(hio_struct,
char
*, int32_t,
void
*);
35
//int32_t hio_r_sds_sl(hio_struct, char *, int32_t, int32_t *, int32_t *, void *);
36
//int32_t hio_r_sds_sls(hio_struct, char *, int32_t, int32_t *, int32_t *, int32_t *,
37
// void *);
38
//int32_t hio_rg_attr(hio_struct, char *, int32_t, int32_t, void *);
hio_struct_d
Definition:
hio.h:27
hio_struct_d::fid
int32 fid
Definition:
hio.h:43
hio_close
int32 hio_close(hio_struct)
Definition:
hio_close.c:3
hio_struct_d::sdfid
int32 sdfid
Definition:
hio.h:44
hio_open
int32 hio_open(char *, int32, hio_struct *)
hio_r_sds
int32 hio_r_sds(hio_struct, char *, int32, void *)
Definition:
hio_r_sds.c:4