QGIS 툴로 footprint 배치로 돌리는 방법1. 영상 root 가서 cmd 열고 파일명 txt로 뽑기#로컬dir /s /b *.tif > list.txt# 네트워크Get-ChildItem -Path *8b_clip.tif > list.txt2. .bat으로 저장Get-ChildItem -Filter *.tif | ForEach-Object { $name = $_.Name $geojson = [System.IO.Path]::ChangeExtension($name, '.geojson') $gdalPath = "C:\Program Files\QGIS 3.34.8\bin\gdal_footprint.exe" "$gdalPath -t_srs EPSG:5179 $name $geojson..