Project

General

Profile

Download (1.08 KB) Statistics
| Branch: | Revision:
1
# GDAL commands to produced fused DEMs in the vicinity of the 60N Canada
2
# boundary, using several "boundary-corrected" variants as well as the
3
# original uncorrected DEMs.
4
#
5
# Jim Regetz
6
# NCEAS
7

    
8
# uncorrected fused layer
9
gdalwarp -ot Int16 -te -136 59.875 -96 60.125 -ts 48000 300 \
10
  srtm_150below.tif aster_150above.tif fused_300straddle.tif
11

    
12
# exponential ramp of boundary delta to the north
13
gdalwarp -ot Int16 -te -136 59.875 -96 60.125 -ts 48000 300 \
14
  srtm_150below.tif aster_150above_rampexp.tif fused_300straddle_rampexp.tif
15

    
16
# exponential blend of predicted deltas to the north
17
gdalwarp -ot Int16 -te -136 59.875 -96 60.125 -ts 48000 300 \
18
  srtm_150below.tif aster_150above_predexp.tif fused_300straddle_predexp.tif
19

    
20
# gaussian blend of predicted deltas to the north
21
gdalwarp -ot Int16 -te -136 59.875 -96 60.125 -ts 48000 300 \
22
  srtm_150below.tif aster_150above_predgau.tif fused_300straddle_predgau.tif
23

    
24
# gaussian blend of SRTM/ASTER to the south
25
gdalwarp -ot Int16 -te -136 59.875 -96 60.125 -ts 48000 300 \
26
  dem_150below_blendgau.tif aster_150above.tif fused_300straddle_blendgau.tif
(3-3/6)