epr_dddb.h

来自「Insar图像处理软件」· C头文件 代码 · 共 98 行

H
98
字号
#ifndef EPR_DDDB_H_INCL#define EPR_DDDB_H_INCL#include "epr_api.h"#ifdef __cplusplusextern "C"{#endifstruct RecordDescriptor {    const char* id;    const EPR_EDataTypeId type;    const char* unit;    const int elem_size;    const char* num_elem;    const char* description;};struct DatasetDescriptor {    const char* id;    const char* ds_name;    const struct RecordDescriptor* rec_descriptor;    const char* description;};struct BandDescriptor {    const char* id;    const char* rec_name;    const EPR_ESampleModel sample_offset;    const EPR_EDataTypeId type;    const int spectral_index;    const EPR_EScalingMethod scale_method;    const char* scale_offset;    const char* scale_factor;    const char* bitmask_expr;    const char* flag_coding_name;    const char* unit;    const char* description;};struct FlagDescriptor {    const char* id;    const int bit_index;    const char* description;};struct DatasetDescriptorTable {    const char* name;    const char* description;    int num_descriptors;    const struct DatasetDescriptor* descriptors;};struct BandDescriptorTable {    const char* name;    const char* description;    int num_descriptors;    const struct BandDescriptor* descriptors;};struct FlagDescriptorTable {    const char* name;    const char* description;    int num_descriptors;    const struct FlagDescriptor* descriptors;};struct RecordDescriptorTable {    const char* name;    const char* description;    int num_descriptors;    const struct RecordDescriptor* descriptors;};extern const struct DatasetDescriptorTable dddb_product_tables[29];extern const struct BandDescriptorTable dddb_band_tables[23];extern const struct FlagDescriptorTable dddb_flag_coding_tables[5];extern const struct RecordDescriptorTable dddb_meris_rec_tables[22];extern const struct RecordDescriptorTable dddb_aatsr_rec_tables[20];extern const struct RecordDescriptorTable dddb_asar_rec_tables[20];#define EPR_NUM_PRODUCT_TABLES         29#define EPR_NUM_BAND_TABLES            23#define EPR_NUM_FLAG_CODING_TABLES     5#define EPR_NUM_MERIS_REC_TABLES       22#define EPR_NUM_AATSR_REC_TABLES       20#define EPR_NUM_ASAR_REC_TABLES        20#ifdef __cplusplus} /* extern "C" */#endif#endif /* #ifndef EPR_DDDB_H_INCL */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?