Skip to content

Commit

Permalink
libs/Mdvx - MdvxWrite.cc - when determining whether to use NetCDF vs …
Browse files Browse the repository at this point in the history
…old MDV format, extend date from 2025 to 2038
  • Loading branch information
mike-dixon committed Jan 1, 2025
1 parent 351a82a commit 1d615b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codebase/libs/Mdv/src/Mdvx/Mdvx_write.cc
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ int Mdvx::writeToPath(const string &outputPath)

if (_internalFormat == FORMAT_NCF ||
writeLen >= SI32_MAX ||
dtime.getYear() >= 2025) {
dtime.getYear() >= 2038) {
_writeFormat = FORMAT_NCF;
}

Expand Down

0 comments on commit 1d615b0

Please sign in to comment.