Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensemble support in reader and support for groups in Netcdfwriter #802

Closed
wants to merge 10 commits into from
2 changes: 1 addition & 1 deletion io/teca_array_collection_reader.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ teca_metadata teca_array_collection_reader::get_output_metadata(unsigned int por
std::string name;
teca_metadata atts;
if (teca_netcdf_util::read_variable_attributes(fh, "", i,
"", "", "", t_axis_variable, 0, name, atts))
"", "", "", t_axis_variable, "", 0, name, atts))
{
this->clear_cached_metadata();
TECA_FATAL_ERROR("Failed to read " << i <<"th variable attributes")
Expand Down
Loading