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
|
/******************************************************************************
*
* Project: Hierarchical Data Format Release 4 (HDF4)
* Purpose: Header file for HDF4 datasets reader.
* Author: Andrey Kiselev, dron@ak4719.spb.edu
*
******************************************************************************
* Copyright (c) 2002, Andrey Kiselev <dron@ak4719.spb.edu>
*
* SPDX-License-Identifier: MIT
****************************************************************************/
#ifndef HDF4DATASET_H_INCLUDED_
#define HDF4DATASET_H_INCLUDED_
#include "hdf.h"
#include "mfhdf.h"
#include "cpl_list.h"
#include "gdal_pam.h"
typedef enum // Types of dataset:
{
HDF4_SDS, // Scientific Dataset
HDF4_GR, // General Raster Image
HDF4_EOS, // HDF EOS
HDF4_UNKNOWN
} HDF4DatasetType;
typedef enum // Types of data products:
{
H4ST_GDAL, // HDF written by GDAL
H4ST_EOS_GRID, // HDF-EOS Grid
H4ST_EOS_SWATH, // HDF-EOS Swath
H4ST_EOS_SWATH_GEOL, // HDF-EOS Swath Geolocation Array
H4ST_SEAWIFS_L1A, // SeaWiFS Level-1A Data
H4ST_SEAWIFS_L2, // SeaWiFS Level-2 Data
H4ST_SEAWIFS_L3, // SeaWiFS Level-3 Standard Mapped Image
H4ST_HYPERION_L1, // Hyperion L1 Data Product
H4ST_UNKNOWN
} HDF4SubdatasetType;
/************************************************************************/
/* ==================================================================== */
/* HDF4Dataset */
/* ==================================================================== */
/************************************************************************/
class HDF4Dataset CPL_NON_FINAL : public GDALPamDataset
{
private:
bool bIsHDFEOS;
std::shared_ptr<GDALGroup> m_poRootGroup{};
static char **HDF4EOSTokenizeAttrs(const char *pszString);
static char **HDF4EOSGetObject(char **papszAttrList, char **ppszAttrName,
char **ppszAttrClass, char **ppszAttrValue);
void OpenMultiDim(const char *pszFilename, CSLConstList papszOpenOptionsIn);
protected:
int32 hGR;
int32 hSD;
int32 nImages;
HDF4SubdatasetType iSubdatasetType;
const char *pszSubdatasetType;
char **papszGlobalMetadata;
char **papszSubDatasets;
CPLErr ReadGlobalAttributes(int32);
public:
static GDALDataType GetDataType(int32);
static const char *GetDataTypeName(int32);
static int GetDataTypeSize(int32);
static double AnyTypeToDouble(int32, void *);
static char **TranslateHDF4Attributes(int32, int32, char *, int32, int32,
char **);
static char **TranslateHDF4EOSAttributes(int32, int32, int32, char **);
public:
HDF4Dataset();
virtual ~HDF4Dataset();
std::shared_ptr<GDALGroup> GetRootGroup() const override
{
return m_poRootGroup;
}
virtual char **GetMetadataDomainList() override;
virtual char **GetMetadata(const char *pszDomain = "") override;
static GDALDataset *Open(GDALOpenInfo *);
};
char *SPrintArray(GDALDataType eDataType, const void *paDataArray, int nValues,
const char *pszDelimiter);
#endif /* HDF4DATASET_H_INCLUDED_ */
|