Skip to content

Commit 16972e4

Browse files
authored
Add logger to N3headerNew that CDF5 is not supported (#1350)
1 parent fabaec0 commit 16972e4

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

cdm/core/src/main/java/ucar/nc2/internal/iosp/netcdf3/N3headerNew.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ public static boolean isValidFile(ucar.unidata.io.RandomAccessFile raf) throws I
3838
case NETCDF3:
3939
case NETCDF3_64BIT_OFFSET:
4040
return true;
41+
case NETCDF3_64BIT_DATA:
42+
log.debug("NETCDF3_64BIT_DATA (CDF5) not supported");
43+
return false;
4144
default:
4245
return false;
4346
}

0 commit comments

Comments
 (0)