Extension: Json and NetCDF utilities
#include "dg/file/file.h"
Loading...
Searching...
No Matches
records.h
Go to the documentation of this file.
1#pragma once
2#include <map>
3#include <functional>
4
5namespace dg
6{
7namespace file
8{
9
11namespace detail
12{
13
14template<class Signature>
15struct get_first_argument_type;
16
17template<class R, class Arg1, class ...A>
18struct get_first_argument_type<R(Arg1, A...)>
19{
20 using type = Arg1;
21};
22}//namespace detail
26template<class Signature>
27using get_first_argument_type_t = std::decay_t<typename detail::get_first_argument_type<Signature>::type>;
28
31template<class Signature>
32using get_result_type_t = typename std::function<Signature>::result_type;
33
40{
42 auto begin() const {return m_atts.begin();}
44 auto end() const {return m_atts.end();}
45
48 LongNameAttribute( const char* long_name)
49 : m_atts( {{"long_name", std::string(long_name)}})
50 {
51 }
52 private:
53 std::map<std::string, nc_att_t> m_atts;
54
55};
56
68template<class SignatureType, class Attributes = std::map<std::string, nc_att_t>>
69struct Record
70{
71 using Signature = SignatureType;
72 std::string name;
73 Attributes atts;
74 std::function<Signature> function;
75};
76
77} //namespace file
78}//namespace dg
std::decay_t< typename detail::get_first_argument_type< Signature >::type > get_first_argument_type_t
Definition records.h:27
typename std::function< Signature >::result_type get_result_type_t
Definition records.h:32
Definition easy_atts.h:15
Facilitate construction of CF attribute "long_name" in records lists.
Definition records.h:40
auto end() const
Make Iterable so file.put_atts will work.
Definition records.h:44
auto begin() const
Make Iterable so file.put_atts will work.
Definition records.h:42
LongNameAttribute(const char *long_name)
Specifically convert string literal to attribute.
Definition records.h:48
A realisation of the Record concept. Helper to generate NetCDF variables.
Definition records.h:70
std::string name
Name of the variable to create.
Definition records.h:72
SignatureType Signature
Signature of the function.
Definition records.h:71
std::function< Signature > function
The function to call that generates data for the variable.
Definition records.h:74
Attributes atts
Attributes of the variable: "long_name" is strongly recommended.
Definition records.h:73