From 0cbe2911d79ab34685705cbade8dff064286ebe7 Mon Sep 17 00:00:00 2001 From: Eric Duminil <eric.duminil@gmail.com> Date: Mon, 10 Oct 2022 10:05:29 +0200 Subject: [PATCH] TODO --- .../regionchooser/fast_xml_parser/ConvexHullCalculator.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/eu/simstadt/regionchooser/fast_xml_parser/ConvexHullCalculator.java b/src/main/java/eu/simstadt/regionchooser/fast_xml_parser/ConvexHullCalculator.java index 299110d..4e9e6b9 100644 --- a/src/main/java/eu/simstadt/regionchooser/fast_xml_parser/ConvexHullCalculator.java +++ b/src/main/java/eu/simstadt/regionchooser/fast_xml_parser/ConvexHullCalculator.java @@ -92,6 +92,7 @@ public static void extractHullsForEveryCityGML(Path repository, Consumer<String> try { Path kmlPath = getHullPath(repository, gmlPath); if (Files.exists(kmlPath)) { + //TODO: Check if size is the same as original. Recreate otherwise. LOGGER.fine("Using cache from " + repository.relativize(kmlPath)); return new String(Files.readAllBytes(kmlPath), StandardCharsets.UTF_8); } else { -- GitLab