MI - Fimex
LnPressure.h
Go to the documentation of this file.
1 /*
2  * Fimex, LnPressure.h
3  *
4  * (C) Copyright 2013, met.no
5  *
6  * Project Info: https://wiki.met.no/fimex/start
7  *
8  * This library is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16  * License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21  * USA.
22  *
23  * Created on: Aug 6, 2013
24  * Author: heikok
25  */
26 
27 #ifndef LNPRESSURE_H_
28 #define LNPRESSURE_H_
29 
31 
32 namespace MetNoFimex
33 {
37 class LnPressure : public VerticalTransformation
39 {
40 public:
42  const std::string p0;
50  LnPressure(const std::string& lev, const std::string& p0) : lev(lev), p0(p0) {}
51  virtual ~LnPressure() {}
56  static const std::string NAME() {return "atmosphere_ln_pressure_coordinate";}
60  virtual std::string getName() const { return NAME(); }
61  virtual int getPreferredVerticalType() const { return MIFI_VINT_PRESSURE; }
62  virtual std::string getParameterString() const { return "lev="+lev+",p0="+p0; }
63  virtual bool isComplete() const {return lev != "" && p0 != "";}
64 protected:
65  virtual boost::shared_ptr<ToVLevelConverter> getPressureConverter(const boost::shared_ptr<CDMReader>& reader, size_t unLimDimPos, boost::shared_ptr<const CoordinateSystem> cs, size_t nx, size_t ny, size_t nt) const;
66 };
67 
68 } /* namespace MetNoFimex */
69 #endif /* LNPRESSURE_H_ */
basic_string< char > string
Definition: C_CDMReader.h:35
static const std::string NAME()
Definition: LnPressure.h:56
virtual int getPreferredVerticalType() const
the most natural vertical type, one of the MIFI_VINT_* in fimex/mifi_constants.h
Definition: LnPressure.h:61
virtual ~LnPressure()
Definition: LnPressure.h:51
virtual std::string getName() const
Definition: LnPressure.h:60
LnPressure(const std::string &lev, const std::string &p0)
Definition: LnPressure.h:50
virtual boost::shared_ptr< ToVLevelConverter > getPressureConverter(const boost::shared_ptr< CDMReader > &reader, size_t unLimDimPos, boost::shared_ptr< const CoordinateSystem > cs, size_t nx, size_t ny, size_t nt) const
const std::string p0
Definition: LnPressure.h:42
virtual bool isComplete() const
Definition: LnPressure.h:63
#define MIFI_VINT_PRESSURE
vertical interpolation type
Definition: mifi_constants.h:168
virtual std::string getParameterString() const
list the parameters
Definition: LnPressure.h:62
const std::string lev
Definition: LnPressure.h:41