-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHDFEOS2ArraySwathGeoField.h
More file actions
64 lines (49 loc) · 1.86 KB
/
HDFEOS2ArraySwathGeoField.h
File metadata and controls
64 lines (49 loc) · 1.86 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
57
58
59
60
61
62
63
64
/////////////////////////////////////////////////////////////////////////////
// Retrieves the latitude and longitude of the HDF-EOS2 Swath without using dimension maps
// Authors: MuQun Yang <myang6@hdfgroup.org>
// Copyright (c) 2010-2012 The HDF Group
/////////////////////////////////////////////////////////////////////////////
// For the swath without using dimension maps, for most cases, the retrieving of latitude and
// longitude is the same as retrieving other fields. Some MODIS latitude and longitude need
// to be arranged specially.
#ifdef USE_HDFEOS2_LIB
#ifndef HDFEOS2ARRAY_SWATHGEOFIELD_H
#define HDFEOS2ARRAY_SWATHGEOFIELD_H
#include <libdap/Array.h>
#include "HDFCFUtil.h"
#include "HdfEosDef.h"
class HDFEOS2ArraySwathGeoField:public libdap::Array
{
public:
HDFEOS2ArraySwathGeoField (int rank, const std::string & filename, const int swathfd, const std::string & swathname, const std::string & fieldname, const string & n = "", libdap::BaseType * v = 0):
libdap::Array (n, v),
rank (rank),
filename(filename),
swathfd (swathfd),
swathname (swathname),
fieldname (fieldname) {
}
virtual ~ HDFEOS2ArraySwathGeoField ()
{
}
// 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 HDFEOS2ArraySwathGeoField (*this);
}
// Read the data
virtual bool read ();
private:
// Field array rank
int rank;
// HDF-EOS2 file name
std::string filename;
int swathfd;
// HDF-EOS2 swath name
std::string swathname;
// HDF-EOS2 field name
std::string fieldname;
};
#endif
#endif