15 #include <gsl/gsl-lite.hpp>
38 namespace FillValuePolicies {
44 inline std::string HDF5_default<std::string>() {
56 inline std::string netCDF4_default<std::string>() {
61 return static_cast<signed char>(-127);
65 return static_cast<char>(0);
69 return static_cast<int16_t
>(-32767);
77 return 9.9692099683868690e+36f;
81 return 9.9692099683868690e+36;
85 return static_cast<unsigned char>(255);
89 return static_cast<unsigned short>(65535);
97 return -9223372036854775806LL;
101 return 18446744073709551614ULL;
109 if (fvd.
set_)
return;
Fill value getters and setters.
The ioda exception class.
Common preprocessor definitions used throughout IODA.
FillValuePolicy
This option describes the default fill values that will be used if the user does not manually specify...
void applyFillValuePolicy(FillValuePolicy pol, detail::FillValueData_t &fvd)
Applies the fill value policy. This sets default fill values when fill values are not already provide...
void assignFillValue(FillValueData_t &data, T val)
@ HDF5
Set all fill values to zero or null strings.
@ NETCDF4
Use NetCDF4 default fill values. This is the default option for ioda files.
char netCDF4_default< char >()
uint32_t netCDF4_default< uint32_t >()
int16_t netCDF4_default< int16_t >()
uint16_t netCDF4_default< uint16_t >()
unsigned char netCDF4_default< unsigned char >()
double netCDF4_default< double >()
signed char netCDF4_default< signed char >()
int64_t netCDF4_default< int64_t >()
float netCDF4_default< float >()
uint64_t netCDF4_default< uint64_t >()
int32_t netCDF4_default< int32_t >()
Container used to store and manipulate fill values.