79 #include "Eigen/Dense"
84 #include "unsupported/Eigen/CXX11/Tensor"
86 int main(
int argc,
char** argv) {
201 string tbName =
"ObsValue/brightness_temperature";
202 string latName =
"MetaData/latitude";
203 string lonName =
"MetaData/longitude";
208 float_params.
chunk =
true;
225 tbVar.atts.add<std::string>(
"coordinates", {
"longitude latitude nchans"}, {1})
226 .add<std::string>(
"long_name", {
"ficticious brightness temperature"}, {1})
227 .add<std::string>(
"units", {
"K"}, {1})
228 .add<float>(
"valid_range", {100.0, 400.0}, {2});
229 latVar.atts.add<std::string>(
"long_name", {
"latitude"}, {1})
230 .add<std::string>(
"units", {
"degrees_north"}, {1})
231 .add<float>(
"valid_range", {-90.0, 90.0}, {2});
232 lonVar.atts.add<std::string>(
"long_name", {
"longitude"}, {1})
233 .add<std::string>(
"units", {
"degrees_east"}, {1})
234 .add<float>(
"valid_range", {-360.0, 360.0}, {2});
242 for (std::size_t i = 0; i <
numLocs; ++i) {
243 lonData[i] =
static_cast<float>(i % 8) * 3.0f;
248 latData[i] =
static_cast<float>(i / 8) * 3.0f;
249 for (std::size_t j = 0; j <
numChans; ++j) {
250 float del_i =
static_cast<float>(i) -
midLoc;
251 float del_j =
static_cast<float>(j) -
midChan;
252 tbData(i, j) = 250.0f + sqrt(del_i * del_i + del_j * del_j);
262 }
catch (
const std::exception& e) {
Definitions for setting up backends with file and memory I/O.
Interfaces for ioda::Group and related classes.
Interfaces for ioda::ObsGroup and related classes.
Groups are a new implementation of ObsSpaces.
An ObsGroup is a specialization of a ioda::Group. It provides convenience functions and guarantees th...
static ObsGroup generate(Group &emptyGroup, const NewDimensionScales_t &fundamentalDims, std::shared_ptr< const detail::DataLayoutPolicy > layout=nullptr)
Create an empty ObsGroup and populate it with the fundamental dimensions.
IODA_DL Group constructFromCmdLine(int argc, char **argv, const std::string &defaultFilename)
This is a wrapper function around the constructBackend function for creating a backend based on comma...
int main(int argc, char **argv)
constexpr int Unlimited
Specifies that a dimension is resizable to infinity.
IODA_DL void unwind_exception_stack(const std::exception &e, std::ostream &out=std::cerr, int level=0)
Convenience function for unwinding an exception stack.
std::vector< std::shared_ptr< NewDimensionScale_Base > > NewDimensionScales_t
Used to specify Variable creation-time properties.
void compressWithGZIP(int level=6)
VariableCreationParameters & setFillValue(DataType fill)
bool chunk
Do we chunk this variable? Required for extendible / compressible Variables.