From 161f13831b0134694e9edd0cd09ea454a9b587c9 Mon Sep 17 00:00:00 2001 From: Felix Oesterle <6945681+fso42@users.noreply.github.com> Date: Thu, 6 Nov 2025 22:37:47 +0100 Subject: [PATCH] fix(runCom9MoTVoellmy_algorithm): correct target directory for `sourceND` --- runCom9MoTVoellmy_algorithm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runCom9MoTVoellmy_algorithm.py b/runCom9MoTVoellmy_algorithm.py index 5820416..0bad922 100644 --- a/runCom9MoTVoellmy_algorithm.py +++ b/runCom9MoTVoellmy_algorithm.py @@ -356,7 +356,7 @@ def processAlgorithm(self, parameters, context, feedback): cF.copyRaster(sourceTAUC, targetDir / "Inputs" / "RASTERS", "_tauc") if sourceND is not None: - cF.copyRaster(sourceND, targetDir / "Inputs" / "RASTERS", "_nd") + cF.copyRaster(sourceND, targetDir / "Inputs" / "RES", "_nd") if sourceBHD is not None: cF.copyRaster(sourceBHD, targetDir / "Inputs" / "RASTERS", "_bhd")