bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
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 Kent Yang <myang6@hdfgroup.org>
6//
7// Copyright (c) 2009-2023 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 410 E University Ave,
26// Suite 200, Champaign, IL 61820
27
28#ifndef _HE5Checker_H
29#define _HE5Checker_H
30
31#include "HE5Parser.h"
32
41class HE5Checker {
42 public:
43
44 HE5Checker() = default;
45 ~ HE5Checker() = default;
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) const;
50 bool check_grids_missing_projcode(const HE5Parser*p) const;
51 bool check_grids_unknown_parameters(const HE5Parser* p) const;
52 bool check_grids_support_projcode(const HE5Parser*p) const;
53
54 void set_grids_missing_pixreg_orig(HE5Parser* p) const;
55
56};
57#endif
A class for parsing NASA HDF-EOS5 StructMetadata.