/usr/include/hdf/dfsd.h is in libhdf4-alt-dev 4.2r4-12build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the files COPYING and Copyright.html. COPYING can be found at the root *
* of the source code distribution tree; Copyright.html can be found at *
* http://hdfgroup.org/products/hdf4/doc/Copyright.html. If you do not have *
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* $Id: dfsd.h 4932 2007-09-07 17:17:23Z bmribler $ */
/*-----------------------------------------------------------------------------
* File: dfsd.h
* Purpose: header file for the Scientific Data set
* Invokes: dfrig.h
* Contents:
* Structure definitions: DFSsdg
* Constant definitions: DFS_MAXLEN
* Remarks: This is included with user programs which use SDG
* Currently defined to be 2-D. Will later be increased to
* multiple dimensions
*---------------------------------------------------------------------------*/
#ifndef _DFSD_H /* avoid re-inclusion */
#define _DFSD_H
#include "hdf.h"
/* include numbertype and aid for 3.2 S. Xu */
/* structure to hold SDG info */
typedef struct DFSsdg
{
DFdi data; /* tag/ref of data in file */
intn rank; /* number of dimensions */
int32 *dimsizes; /* dimensions of data */
char *coordsys;
char *dataluf[3]; /* label/unit/format of data */
char **dimluf[3]; /* label/unit/format for each dim */
uint8 **dimscales; /* scales for each dimension */
uint8 max_min[16]; /* max, min values of data, */
/* currently atmost 8 bytes each */
int32 numbertype; /* default is float32 */
uint8 filenumsubclass; /* number format in the file, default is IEEE */
int32 aid; /* access id */
int32 compression; /* 0 -- not compressed */
int32 isndg; /* 0 -- pure sdg, written by 3.1 else ndg */
float64 cal, cal_err; /* calibration multiplier stuff */
float64 ioff, ioff_err; /* calibration offset stuff */
int32 cal_type; /* number type of data after calibration */
uint8 fill_value[DFSD_MAXFILL_LEN]; /* fill value if any specified */
intn fill_fixed; /* whether ther fill value is a fixed value, or it can change */
}
DFSsdg;
/* DFnsdgle is the internal structure which stores SDG or NDS and */
/* related SDG in an HDF file. */
/* It is a linked list. */
typedef struct DFnsdgle
{
DFdi nsdg; /* NDG from 3.2 or SDG from 3.1 */
DFdi sdg; /* Only special NDF has values in this field */
struct DFnsdgle *next;
}
DFnsdgle;
typedef struct DFnsdg_t_hdr
{
uint32 size;
DFnsdgle *nsdg_t;
}
DFnsdg_t_hdr;
#if defined c_plusplus || defined __cplusplus
extern "C"
{
#endif /* c_plusplus || __cplusplus */
extern int32 DFSDIopen
(const char * filename, int acc_mode);
extern int DFSDIsdginfo
(int32 file_id);
extern int DFSDIclear
(DFSsdg * sdg);
extern int DFSDIclearNT
(DFSsdg * sdg);
extern int DFSDIgetdata
(const char * filename, intn rank, int32 maxsizes[], VOIDP data,
int isfortran);
extern int DFSDIputdata
(const char * filename, intn rank, int32 * dimsizes, VOIDP data,
int accmode, int isfortran);
extern int DFSDIgetslice
(const char * filename, int32 winst[], int32 windims[], VOIDP data,
int32 dims[], int isfortran);
extern int DFSDIputslice
(int32 windims[], VOIDP data, int32 dims[], int isfortran);
extern int DFSDIendslice
(int isfortran);
extern intn DFSDIrefresh
(char * filename);
extern int DFSDIisndg
(intn * isndg);
extern int DFSDIgetrrank
(intn * rank);
extern int DFSDIgetwrank
(intn * rank);
extern int DFSDIsetdimstrs
(int dim, const char * label, const char * unit, const char * format);
extern int DFSDIsetdatastrs
(const char * label, const char * unit, const char * format,
const char * coordsys);
#if defined c_plusplus || defined __cplusplus
}
#endif /* c_plusplus || __cplusplus */
#endif /* _DFSD_H */
|