31 #define slin(x) sslin(x)
34 errlin = "Error in file " __FILE__ " at line " slin(__LINE__) ".\n"; \
38 int main(
int argc,
char** argv) {
40 const char* errlin = NULL;
47 int* dim_location_data = NULL;
48 int* dim_channel_data = NULL;
49 struct ioda_variable *var_longitude = NULL, *var_latitude = NULL;
51 struct ioda_attribute *v_lon_units = NULL, *v_lon_valid_range = NULL, *v_lon_long_name = NULL;
52 struct ioda_attribute *v_lat_units = NULL, *v_lat_valid_range = NULL, *v_lat_long_name = NULL;
55 struct ioda_attribute *v_tb_units = NULL, *v_tb_valid_range = NULL, *v_tb_long_name = NULL;
58 struct ioda_attribute *v_sza_units = NULL, *v_sza_valid_range = NULL;
60 g =
ioda.
Engines.constructFromCmdLine(argc, argv,
"Example-04-C.hdf5");
71 params_default =
ioda.VariableCreationParams.create();
72 if (!params_default)
doErr;
79 dim_location_data = (
int*)malloc(
sizeof(
int) *
num_locs);
80 if (!dim_location_data)
doErr;
81 for (
long i = 0; i <
num_locs; ++i) dim_location_data[i] = (
int)(i + 1);
84 params_dimchannel =
ioda.VariableCreationParams.create();
85 if (!params_dimchannel)
doErr;
93 const char* check_str_dimscale_name =
"ATMS Channel Number";
94 const int buf_sz = 60;
95 char buf[60] = {
"\n"};
98 if (0 != strncmp(buf, check_str_dimscale_name, buf_sz))
doErr;
100 dim_channel_data = (
int*)malloc(
sizeof(
int) *
num_channels);
101 if (!dim_channel_data)
doErr;
102 for (
long i = 0; i <
num_channels; ++i) dim_channel_data[i] = (
int)(i + 1);
108 if (!var_longitude)
doErr;
112 if (!var_lon_atts)
doErr;
114 const char* lon_units =
"degrees_east";
115 const char* lon_long_name =
"Longitude";
116 const long valid_range_dims[] = {2};
117 const float lon_valid_range[2] = {-180, 180};
118 const long str_dims[] = {1};
121 =
ioda.
Has_Attributes.create_float(var_lon_atts, 11,
"valid_range", 1, valid_range_dims);
122 if (!v_lon_valid_range)
doErr;
126 if (!v_lon_units)
doErr;
129 v_lon_long_name =
ioda.
Has_Attributes.create_str(var_lon_atts, 9,
"long_name", 1, str_dims);
130 if (!v_lon_long_name)
doErr;
136 if (!var_latitude)
doErr;
139 if (!var_lat_atts)
doErr;
141 const char* lat_units =
"degrees_north";
142 const char* lat_long_name =
"Latitude";
143 const float lat_valid_range[2] = {-90, 90};
146 =
ioda.
Has_Attributes.create_float(var_lat_atts, 11,
"valid_range", 1, valid_range_dims);
147 if (!v_lat_valid_range)
doErr;
151 if (!v_lat_units)
doErr;
154 v_lat_long_name =
ioda.
Has_Attributes.create_str(var_lat_atts, 9,
"long_name", 1, str_dims);
155 if (!v_lat_long_name)
doErr;
160 var_tb =
ioda.
Has_Variables.create_float(gvars, 22,
"Brightness Temperature", 2, sz_tb, sz_tb,
166 if (!var_tb_atts)
doErr;
170 const char* tb_units =
"K";
171 const char* tb_long_name =
"ATMS Observed (Uncorrected) Brightness Temperature";
172 const float tb_valid_range[2] = {100, 400};
175 =
ioda.
Has_Attributes.create_float(var_tb_atts, 11,
"valid_range", 1, valid_range_dims);
176 if (!v_tb_valid_range)
doErr;
180 if (!v_tb_units)
doErr;
183 v_tb_long_name =
ioda.
Has_Attributes.create_str(var_tb_atts, 9,
"long_name", 1, str_dims);
184 if (!v_tb_long_name)
doErr;
188 p1 =
ioda.VariableCreationParams.create();
190 ioda.VariableCreationParams.setFillValue_float(
p1, -999);
191 const ptrdiff_t p1_chunks[] = {100};
193 ioda.VariableCreationParams.compressWithGZIP(
p1, 6);
208 if (!var_sza_atts)
doErr;
210 const char* sza_units =
"degrees";
211 const float sza_valid_range[2] = {-90, 90};
214 =
ioda.
Has_Attributes.create_float(var_sza_atts, 11,
"valid_range", 1, valid_range_dims);
215 if (!v_sza_valid_range)
doErr;
219 if (!v_sza_units)
doErr;
226 printf(
"%s", (errlin) ? errlin :
"An unknown error has occurred somewhere.");
234 if (params_default)
ioda.VariableCreationParams.destruct(params_default);
235 if (params_dimchannel)
ioda.VariableCreationParams.destruct(params_dimchannel);
236 if (
p1)
ioda.VariableCreationParams.destruct(
p1);
237 if (dim_location_data) free((
void*)dim_location_data);
238 if (dim_channel_data) free((
void*)dim_channel_data);
239 if (var_longitude)
ioda.
Variable.destruct(var_longitude);
244 if (v_lon_valid_range)
ioda.
Attribute.destruct(v_lon_valid_range);
245 if (v_lon_long_name)
ioda.
Attribute.destruct(v_lon_long_name);
247 if (v_lat_valid_range)
ioda.
Attribute.destruct(v_lat_valid_range);
248 if (v_lat_long_name)
ioda.
Attribute.destruct(v_lat_long_name);
252 if (v_tb_valid_range)
ioda.
Attribute.destruct(v_tb_valid_range);
257 if (v_sza_valid_range)
ioda.
Attribute.destruct(v_sza_valid_range);
This class represents attributes, which may be attached to both Variables and Groups.
Groups are a new implementation of ObsSpaces.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
virtual Variable attachDimensionScale(unsigned int DimensionNumber, const Variable &scale)
Attach a dimension scale to this Variable.
Variable setDimScale(const std::vector< Variable > &dims)
Set dimensions (convenience function to several invocations of attachDimensionScale).
virtual Variable setIsDimensionScale(const std::string &dimensionScaleName)
Designate this table as a dimension scale.
virtual bool isDimensionScaleAttached(unsigned int DimensionNumber, const Variable &scale) const
Is a dimension scale attached to this Variable in a certain position?
virtual bool isDimensionScale() const
Is this Variable used as a dimension scale?
virtual Variable detachDimensionScale(unsigned int DimensionNumber, const Variable &scale)
Detach a dimension scale.
std::string getDimensionScaleName() const
Get the name of this Variable's defined dimension scale.
Common preprocessor definitions used throughout IODA.
IODA_DL struct c_ioda use_c_ioda()
Creates and returns a c_ioda struct that has all of the function pointers filled in.
int main(int argc, char **argv)
C bindings for ioda-engines.
The backends that implement the ioda-engines functionality.
A few chunking strategies for Variables.