Skip to content

Commit 2b3eb0b

Browse files
committed
v2 arch support
1 parent 69f4966 commit 2b3eb0b

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/main/java/org/hdf5javalib/examples/hdf5examples/HDF5Debug.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,12 @@ private static void processFile(Path filePath) {
6969
//// log.info("{} ", dataSet);
7070
// displayScalarData(channel, dataSet, HdfFloatPoint.class, reader);
7171
// }
72-
HdfDataset dataSet = reader.getDataset("/gt1l/geolocation/altitude_sc").get();
72+
HdfDataset dataSet = reader.getDataset("/ancillary_data/calibrations/low_link_impulse_response/hist_x").get();
7373
System.out.println("{} " + dataSet);
7474
// System.out.println("{} " + dataSet.getObjectPath());
7575
// log.info("{} ", dataSet);
76-
displayScalarData(channel, dataSet, HdfFloatPoint.class, reader);
76+
HdfDisplayUtils.displayData(channel, dataSet, reader);
77+
// displayScalarData(channel, dataSet, HdfFloatPoint.class, reader);
7778
} catch (Exception e) {
7879
log.error("Exception in processFile: {}", filePath, e);
7980
}

0 commit comments

Comments
 (0)