Skip to content

Commit

Permalink
#2857 DO not check the time variable for point2grid
Browse files Browse the repository at this point in the history
  • Loading branch information
Howard Soh committed Jun 28, 2024
1 parent 53e02f9 commit e9721fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/other/point2grid/point2grid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2944,7 +2944,7 @@ static bool has_lat_lon_vars(const NcFile *nc) {
<< " has_lat_var: " << has_lat_var
<< ", has_lon_var: " << has_lon_var
<< ", has_time_var: " << has_time_var << "\n";
return (has_lat_var && has_lon_var && has_time_var);
return (has_lat_var && has_lon_var);
}

////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit e9721fe

Please sign in to comment.