Project

General

Profile

Download (1.23 KB) Statistics
| Branch: | Revision:
1 3afd1c7b Jim Regetz
# 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 cc5360b4 Jim Regetz
# original uncorrected DEMs. Note that the multiresolution spline is not
4
# included here, because the associated fused layer is already produced
5
# in its entirety during that process.
6 3afd1c7b Jim Regetz
#
7
# Jim Regetz
8
# NCEAS
9
10
# uncorrected fused layer
11
gdalwarp -ot Int16 -te -136 59.875 -96 60.125 -ts 48000 300 \
12
  srtm_150below.tif aster_150above.tif fused_300straddle.tif
13
14
# exponential ramp of boundary delta to the north
15
gdalwarp -ot Int16 -te -136 59.875 -96 60.125 -ts 48000 300 \
16
  srtm_150below.tif aster_150above_rampexp.tif fused_300straddle_rampexp.tif
17
18
# exponential blend of predicted deltas to the north
19
gdalwarp -ot Int16 -te -136 59.875 -96 60.125 -ts 48000 300 \
20
  srtm_150below.tif aster_150above_predexp.tif fused_300straddle_predexp.tif
21
22
# gaussian blend of predicted deltas to the north
23
gdalwarp -ot Int16 -te -136 59.875 -96 60.125 -ts 48000 300 \
24
  srtm_150below.tif aster_150above_predgau.tif fused_300straddle_predgau.tif
25
26
# gaussian blend of SRTM/ASTER to the south
27
gdalwarp -ot Int16 -te -136 59.875 -96 60.125 -ts 48000 300 \
28
  dem_150below_blendgau.tif aster_150above.tif fused_300straddle_blendgau.tif