1
|
#! /bin/sh
|
2
|
################################################################################
|
3
|
# script Name: buildNewNwHemiCigarMosaicVrt.sh
|
4
|
# script uses 'gdalbuildvrt' utility to construct virtual image mosaic table
|
5
|
# for the NorthWest Hemisphere mosaic componenes containing only CGIAR SRTM
|
6
|
# Version 4.1 files.
|
7
|
#
|
8
|
# input: NorthWestHemiCgiarSrtmFileList.txt: Text file contains list of
|
9
|
# CIGAR/SRTM image 'tile' files that comprise the image mosaic.
|
10
|
# Author: Rick Reeves, NCEAS June 8, 2011
|
11
|
#
|
12
|
################################################################################
|
13
|
date
|
14
|
rm /home/reeves/active_work/OutProducts/WestHemi/NorthWest/NorthWestHemiCgiarSrtm.vrt
|
15
|
gdalbuildvrt -input_file_list NorthWestHemiCgiarSrtmFileList.txt -overwrite \
|
16
|
/home/reeves/active_work/OutProducts/WestHemi/NorthWest/NorthWestHemiCgiarSrtm.vrt
|
17
|
date
|