This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for file in `\find . -maxdepth 1 -type f`; do convert -crop 300x300 $file ${file:0:-4}'.jpg'; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cudatensor.detach().cpu().numpy() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| las2txt -i lidar_1_3.las -o lidar.txt -parse xyzWV |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| dir_path="/PATH/*" | |
| dirs=`find $dir_path -maxdepth 2 -type f -name *.las` | |
| for dir in $dirs; | |
| do | |
| echo $dir | |
| echo ${dir%.*}.txt | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| dir_path="/path/*" | |
| dirs=`find $dir_path -maxdepth 2 -type f -name *.txt` | |
| for dir in $dirs; | |
| do | |
| echo $dir | |
| echo ${dir%.*}.npz | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| lasmerge -i in1.las in2.las in3.las -o out.las |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| las2txt.exe -i input.las -o output.txt -parse xyzirc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| for %%a in (G:\path\to\*.las) do ( | |
| call :sub "%%a" | |
| ) | |
| goto :EOF | |
| :sub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /path/to/lastools/lasdiff.exe -i input1.las -i linput2.las -o output.las |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ¥path¥to¥lasgrid.exe -i input.txt -o output.tif -elevation_hightest | |
| ¥path¥to¥lasgrid.exe -i input.txt -o output.tif -elevation_lowest |
OlderNewer