-
Notifications
You must be signed in to change notification settings - Fork 10
/
check_error_img.sh
71 lines (71 loc) · 1.93 KB
/
check_error_img.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/bash
#
# ***************************************************************************
# Name : Check image
# Description : If image have error, print ERROR
#
# Arguments:
# $1: Image
#
# Dependencies : gdal 1.10.1 (gdalinfo)
#
# ***************************************************************************
# begin : 2015-04-24 (yyyy-mm-dd)
# copyright : (C) 2015 by Luiz Motta
# email : motta dot luiz at gmail.com
# ***************************************************************************
#
# Revisions
#
# 0000-00-00:
# - None
#
# ***************************************************************************
#
# Example:
# check_img.sh LC8_229-066_20140724_LGN00_r6g5b4.tif
#
# ***************************************************************************
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU General Public License as published by *
# * the Free Software Foundation; either version 2 of the License, or *
# * (at your option) any later version. *
# * *
# ***************************************************************************
#
#
clean(){
if [ -f "$in_img.error.txt" ] ; then
rm "$in_img.error.txt"
fi
if [ -f "$in_img.aux.xml" ] ; then
rm "$in_img.aux.xml"
fi
}
#
msg_error(){
local name_script=$(basename $0)
echo "Usage: $name_script <image>" >&2
echo "<image> is the image" >&2
exit 1
}
#
totalargs=1
#
if [ $# -ne $totalargs ] ; then
msg_error
exit 1
fi
#
in_img=$1
#
gdalinfo -mm -stats $in_img 2> "$in_img.error.txt" >/dev/null;
error=$(cat "$in_img.error.txt" | grep ERROR | head -1 | cut -d':' -f1);
if [ "$error" == "" ]; then
clean
exit 0
fi
echo "$in_img:$error"
clean
exit 0