Search found 1 match

by Philipp
Fri Jun 12, 2020 6:19 pm
Forum: Questions
Topic: Batch process multiple files?
Replies: 2
Views: 2022

Batch process multiple files?

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: @ECHO OFF set /p grid="Enter grid size in meters: " for %%f in (*.las) do ( START...