bes  Updated for version 3.20.6
HDFEOS2HandleType.h
1 #ifndef HDFEOS2HandleType_H
2 #define HDFEOS2HandleType_H
3 #include <vector>
4 #include <string>
5 
6 
7 // Don't like to handle this way. Seem this is the only doable solution for now.
8 // KY 2012-07-31
9 // A global field name vector is set to 0. This vector includes all field names
10 // of which the datatypes need to be changed. This is mainly due to the applying
11 // of scale and offset(MODIS). The typical example is changing the datatype from
12 // 16-bit integer to 32-bit float.
13 // The current handling is not ideal. It is because of added HDF-EOS2 attributes by HDF4 APIs
14 // To change the current handling may be a huge task. KY 2012-8-1
15 
16 std::vector <std::string> ctype_field_namelist;
17 
18 #endif