Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. for f in *.tif
  2. do
  3. echo "Processing $f"
  4. gdaldem hillshade $f $f-hillshade" -z 1.0 -s 1.0 -az 315.0 -alt 45.0 -compute_edges -of GTiff
  5. done
  6.  
  7. for f in *.tif
  8. do
  9. echo "Processing $f"
  10. gdaldem hillshade $f $f-hillshade -z 1.0 -s 1.0 -az 315.0 -alt 45.0 -compute_edges -of GTiff
  11. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement