ReFRACtor
met_data_fixture.cc
Go to the documentation of this file.
1 #include "met_data_fixture.h"
2 #include "hdf_file.h"
3 #include "pressure_sigma.h"
4 #include "example_met_file.h"
5 
6 using namespace FullPhysics;
7 using namespace blitz;
8 
10 {
11  IfstreamCs press_data(test_data_dir() + "/in/meteorology/pressure_in");
12 
13  blitz::Array<double, 1> pressure_array;
14  double psurf_val;
15 
16  press_data >> pressure_array;
17  psurf_val = pressure_array(pressure_array.rows()-1);
18 
19  boost::shared_ptr<HdfFile> met_file(new HdfFile(test_data_dir() + "in/meteorology/example_met_data.h5"));
20  met_data.reset(new ExampleMetFile(met_file, "20091009203401"));
21 
22  pressure.reset(new PressureSigma(pressure_array, psurf_val, false));
23 }
This class maintains the pressure portion of the state.
This class reads and writes a HDF5 file.
Definition: hdf_file.h:39
Apply value function to a blitz array.
This class implements and example Meteorological reader that reads data from an HDF file with dataset...
It can be convenient to allow comments in a text data file that are ignored by the program reading it...
Definition: ifstream_cs.h:17
Contains classes to abstract away details in various Spurr Radiative Transfer software.
Definition: doxygen_python.h:1

Copyright © 2017, California Institute of Technology.
ALL RIGHTS RESERVED.
U.S. Government Sponsorship acknowledged.
Generated Fri Aug 24 2018 15:44:10