19 Array<double, 2> params(3, 2);
29 Array<bool, 2> flags(3, 2);
32 blitz::Array<double, 1> ref_points(3);
34 ref_points(1) = 1.615;
38 std::vector<std::string> band_name;
39 band_name.push_back(
"ABO2");
40 band_name.push_back(
"WCO2");
41 band_name.push_back(
"SCO2");
43 lambertian.reset(
new GroundLambertian(params, flags, ref_points_w_unit, band_name));
46 Array<double, 1> refr_index(3);
47 refr_index(0) = 1.331;
48 refr_index(1) = 1.332;
49 refr_index(2) = 1.334;
54 Array<double, 2> brdf_coeffs(3, 7);
57 0.1, 0.4, 0.7, 1.0, 1.3, 1.6, 1.9,
58 0.2, 0.5, 0.8, 1.1, 1.4, 1.7, 2.0,
59 0.3, 0.6, 0.9, 1.2, 1.5, 1.8, 2.1;
60 Array<bool, 2> flag(brdf_coeffs.shape());
63 brdf_veg.reset(
new GroundBrdfVeg(brdf_coeffs, flag, ref_points_w_unit, band_name));
64 brdf_soil.reset(
new GroundBrdfSoil(brdf_coeffs, flag, ref_points_w_unit, band_name));
This is a global fixture that is available to all unit tests.
This class implements a Lambertian albedo as a ground type.
boost::shared_ptr< GroundBrdfSoil > brdf_soil
boost::shared_ptr< GroundCoxmunk > coxmunk
boost::shared_ptr< GroundLambertian > lambertian
const Unit micron("micron", 1e-6 *m)
Apply value function to a blitz array.
boost::shared_ptr< GroundBrdfVeg > brdf_veg
Contains classes to abstract away details in various Spurr Radiative Transfer software.
This class implements a Coxmunk ground type.