Skip to content

Commit 0017fee

Browse files
committed
Updates for v2 arch
1 parent bf8917f commit 0017fee

3 files changed

Lines changed: 234 additions & 289 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ private void run() {
5454
try {
5555
// List all .h5 files in HDF5Examples resources directory
5656
// ATL03_20250302235544_11742607_006_01
57-
Path dirPath = Paths.get(Objects.requireNonNull(HDF5Debug.class.getClassLoader().getResource("HDF5Examples/h5ex_g_compact2.h5")).toURI());
58-
// Path dirPath = Paths.get("c:/users/karln/Downloads/ATL03_20250302235544_11742607_006_01.h5");
57+
// Path dirPath = Paths.get(Objects.requireNonNull(HDF5Debug.class.getClassLoader().getResource("HDF5Examples/h5ex_g_compact2.h5")).toURI());
58+
Path dirPath = Paths.get("c:/users/karln/Downloads/ATL03_20250302235544_11742607_006_01.h5");
5959
processFile(dirPath);
6060
} catch (Exception e) {
6161
throw new IllegalStateException(e);

src/main/java/org/hdf5javalib/hdffile/metadata/HdfSuperblock.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import org.hdf5javalib.dataclass.HdfFixedPoint;
44
import org.hdf5javalib.datatype.FixedPointDatatype;
55
import org.hdf5javalib.hdfjava.HdfDataFile;
6-
import org.hdf5javalib.hdfjava.HdfFileReader;
76
import org.hdf5javalib.utils.HdfDisplayUtils;
87

98
import java.io.IOException;
@@ -230,7 +229,7 @@ public int getGroupInternalNodeK() {
230229
return groupInternalNodeK;
231230
}
232231

233-
public HdfFixedPoint getRootGroupObjectHeaderAddresss() {
232+
public HdfFixedPoint getRootGroupObjectHeaderAddress() {
234233
return rootGroupObjectHeaderAddress;
235234
}
236235

0 commit comments

Comments
 (0)