bes  Updated for version 3.20.6
HE5Checker.h
Go to the documentation of this file.
1 // This file is part of hdf5_handler a HDF5 file handler for the OPeNDAP
2 // data server.
3 //
4 // Authors:
5 // Hyo-Kyung Lee <hyoklee@hdfgroup.org> and Muqun Yang <myang6@hdfgroup.org>
6 //
7 // Copyright (c) 2009-2016 The HDF Group, Inc. and OPeNDAP, Inc.
8 // All rights reserved.
9 //
10 // This is free software; you can redistribute it and/or modify it under the
11 // terms of the GNU Lesser General Public License as published by the Free
12 // Software Foundation; either version 2.1 of the License, or (at your
13 // option) any later version.
14 //
15 // This software is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
18 // License for more details.
19 //
20 // You should have received a copy of the GNU Lesser General Public
21 // License along with this library; if not, write to the Free Software
22 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 //
24 // You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
25 // You can contact The HDF Group, Inc. at 1800 South Oak Street,
26 // Suite 203, Champaign, IL 61820
27 
28 #ifndef _HE5Checker_H
29 #define _HE5Checker_H
30 
31 #include "HE5Parser.h"
32 
41 class HE5Checker {
42  public:
43 
44  HE5Checker() {}
45  ~ HE5Checker(){}
46 
47  // Check if it has multiple grids that have different dimension sizes
48  // of coordinate variables.
49  bool check_grids_multi_latlon_coord_vars(HE5Parser* p);
50  bool check_grids_missing_projcode(HE5Parser*p);
51  bool check_grids_unknown_parameters(HE5Parser* p);
52  bool check_grids_support_projcode(HE5Parser*p);
53 
54  void set_grids_missing_pixreg_orig(HE5Parser* p);
55 
56 };
57 #endif
HE5Checker
Definition: HE5Checker.h:41
HE5Parser.h
A class for parsing NASA HDF-EOS5 StructMetadata.
HE5Parser
Definition: HE5Parser.h:49