-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHDFEOS2ArraySwathGeoDimMapExtraField.h
More file actions
56 lines (44 loc) · 1.75 KB
/
HDFEOS2ArraySwathGeoDimMapExtraField.h
File metadata and controls
56 lines (44 loc) · 1.75 KB
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
/////////////////////////////////////////////////////////////////////////////
// Retrieves the latitude and longitude of the HDF-EOS2 Swath with dimension map
// Authors: MuQun Yang <myang6@hdfgroup.org>
// Copyright (c) 2010-2012 The HDF Group
/////////////////////////////////////////////////////////////////////////////
// SOME MODIS products provide the latitude and longitude files for
// swaths using dimension map. The files are still HDF-EOS2 files.
// The file name is determined at hdfdesc.cc.
#ifdef USE_HDFEOS2_LIB
#ifndef HDFEOS2ARRAY_SWATHGEODIMMAPEXTRAFIELD_H
#define HDFEOS2ARRAY_SWATHGEODIMMAPEXTRAFIELD_H
#include <libdap/Array.h>
#include "mfhdf.h"
#include "hdf.h"
#include "HdfEosDef.h"
// swathname is not provided because the additional geo-location file uses
// a different swath name.
class HDFEOS2ArraySwathGeoDimMapExtraField:public libdap::Array
{
public:
HDFEOS2ArraySwathGeoDimMapExtraField (int rank, const std::string & filename, const std::string & fieldname, const string & n = "", libdap::BaseType * v = 0):
libdap::Array (n, v), rank (rank), filename (filename), fieldname (fieldname) {
}
virtual ~ HDFEOS2ArraySwathGeoDimMapExtraField ()
{
}
// Standard way to pass the coordinates of the subsetted region from the client to the handlers
int format_constraint (int *cor, int *step, int *edg);
libdap::BaseType *ptr_duplicate ()
{
return new HDFEOS2ArraySwathGeoDimMapExtraField (*this);
}
// Read the data
virtual bool read ();
private:
// Field array rank
int rank;
// HDF-EOS2 file name
std::string filename;
// HDF-EOS2 field name
std::string fieldname;
};
#endif
#endif