From 2d482bc7ec8010199143078e014dea373c599649 Mon Sep 17 00:00:00 2001 From: gferret Date: Mon, 6 Mar 2023 11:17:18 +0100 Subject: [PATCH 1/2] [fix] Change the naming for the exports from applogic so that it is readable directly as a temporal series when reloaded --- Application/Ui/python/lidarview/applogic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Application/Ui/python/lidarview/applogic.py b/Application/Ui/python/lidarview/applogic.py index 54bbf052f..3fad6f56d 100644 --- a/Application/Ui/python/lidarview/applogic.py +++ b/Application/Ui/python/lidarview/applogic.py @@ -401,7 +401,7 @@ def saveCSV(filename, timesteps): tempDir = kiwiviewerExporter.tempfile.mkdtemp() basenameWithoutExtension = os.path.splitext(os.path.basename(filename))[0] outDir = os.path.join(tempDir, basenameWithoutExtension) - filenameTemplate = os.path.join(outDir, basenameWithoutExtension + ' (Frame %04d).csv') + filenameTemplate = os.path.join(outDir, basenameWithoutExtension + '_%04d.csv') os.makedirs(outDir) writer = smp.CreateWriter('tmp.csv', getLidar()) @@ -432,7 +432,7 @@ def saveLAS(filename, timesteps, transform = 0): tempDir = kiwiviewerExporter.tempfile.mkdtemp() basenameWithoutExtension = os.path.splitext(os.path.basename(filename))[0] outDir = os.path.join(tempDir, basenameWithoutExtension) - filenameTemplate = os.path.join(outDir, basenameWithoutExtension + ' (Frame %04d).csv') + filenameTemplate = os.path.join(outDir, basenameWithoutExtension + '_%04d.csv') os.makedirs(outDir) for t in sorted(timesteps): -- GitLab From 202343e7086c989d49522546d007899be40b49ca Mon Sep 17 00:00:00 2001 From: gferret Date: Mon, 6 Mar 2023 11:17:57 +0100 Subject: [PATCH 2/2] [submodule] bump LVCore --- LVCore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LVCore b/LVCore index 31a715b38..d972b4734 160000 --- a/LVCore +++ b/LVCore @@ -1 +1 @@ -Subproject commit 31a715b38802e1ce538f1a0483139051dac85a6f +Subproject commit d972b4734c9317af0fa176d761bd0902930fa5e3 -- GitLab