dcb
2025-06-20 51d12c4cca7c9d4911a0037673bbd2dc210836d0
src/main/java/com/se/nsl/service/SimuService.java
@@ -223,6 +223,8 @@
        File depthDir = depthPath.toFile();
        File[] files = depthDir.listFiles();
        for (File tifFile : files) {
            String name = tifFile.getName();
            if (!name.endsWith(TIF_EXTSION)) continue;
            ColumnRow cr = getColumnRow(tifFile, x, y);
            if (cr == null) continue;
            float depth = readPixelValue(cr.dataset, cr.col, cr.row, 1);