giswqs commited on
Commit
f7904d8
·
verified ·
1 Parent(s): 7d3f391

Create landsat/README.md

Browse files
Files changed (1) hide show
  1. landsat/README.md +8 -0
landsat/README.md ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+
2
+ ```bash
3
+ for tif in *.tif; do
4
+ filename=$(basename "$tif" .tif)
5
+ gdal_translate "$tif" "cog/${filename}.tif" \
6
+ -of COG -co COMPRESS=DEFLATE
7
+ done
8
+ ```