Batch process multiple files?

Feel free to ask any question here
Post Reply
Philipp
Posts: 1
Joined: Tue Sep 04, 2018 10:12 am

Batch process multiple files?

Post by Philipp »

Hi,
I'm not very good a coding but I'm trying to write a small batch file for Windows that I can place in a folder containing a bunch of tiled .las files to generate a tiled RGB raster.

This is my batch file:

Code: Select all

@ECHO OFF
set /p grid="Enter grid size in meters: "
for %%f in (*.las) do (
START C:\"Program Files"\CloudCompare\cloudcompare.exe -O -GLOBAL_SHIFT AUTO "%%~nf.las" -RASTERIZE -GRID_STEP %grid% -PROJ AVG -EMPTY_FILL INTERP -OUTPUT_RASTER_RGB
)
PAUSE
In general it works.
Unfortunately, it is opening all files one after the other without waiting until CloudCompare has finished processing one file. Is there a way to get a some sort of "finished" signal from CC so the batch can continue with the next file? Or am I asking too much from such a simple batch file? :)
daniel
Site Admin
Posts: 7711
Joined: Wed Oct 13, 2010 7:34 am
Location: Grenoble, France
Contact:

Re: Batch process multiple files?

Post by daniel »

Do you need the "START" before CloudCompare.exe? I'm not the expert, but I personally wouldn't use this command.
Daniel, CloudCompare admin
kluuboo
Posts: 1
Joined: Sat Jan 22, 2022 9:07 pm

Re: Batch process multiple files?

Post by kluuboo »

Hey Philipp!
I need to process (ptcloud to raster) in batch and i have seen your post - it looks like you are able to "run it in batch". Mind if we chat a little about it? Im new to this, i got some basic skills in python, but im kinda stuck in this batch processing. In general, i have laz files in one folder and i need to use them to create raster from two particulart codes - medium and high vegetation - preferably all in one 0/1 raster or any other solution that will provide info if there is medium/high vegetation on the pixel.
Post Reply