forked from JavierLopatin/Python-Remote-Sensing-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetbandname.py
executable file
·79 lines (68 loc) · 2.63 KB
/
setbandname.py
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
72
73
74
75
76
#!/usr/bin/env python
###################################################
# Set the band names to an image
# Use like, e.g.:
# python setbandname.py -i image.tif -b 1 -n Blue
####################################################
# Import the GDAL python library
import osgeo.gdal as gdal
# Import the python Argument parser
import argparse
# Import the System library
import sys
# A function to set the no data value
# for each image band.
def setBandName(inputFile, band, name):
# Open the image file, in update mode
# so that the image can be edited.
dataset = gdal.Open(inputFile, gdal.GA_Update)
# Check that the image has been opened.
if not dataset is None:
# Get the image band
imgBand = dataset.GetRasterBand(band)
# Check the image band was available.
if not imgBand is None:
# Set the image band name.
imgBand.SetDescription(name)
else:
# Print out an error message.
print("Could not open the image band: ", band)
else:
# Print an error message if the file
# could not be opened.
print("Could not open the input image file: ", inputFile)
# This is the first part of the script to
# be executed.
if __name__ == '__main__':
# Create the command line options
# parser.
parser = argparse.ArgumentParser()
# Define the argument for specifying the input file.
parser.add_argument("-i", "--input", type=str,
help="Specify the input image file.")
# Define the argument for specifying image band.
parser.add_argument("-b", "--band", type=int,
help="Specify image band.")
# Define the argument for specifying band name.
parser.add_argument("-n", "--name", type=str,
help="Specify the band name.")
# Call the parser to parse the arguments.
args = parser.parse_args()
# Check that the input parameter has been specified.
if args.input == None:
# Print an error message if not and exit.
print("Error: No input image file provided.")
sys.exit()
# Check that the band parameter has been specified.
if args.band == None:
# Print an error message if not and exit.
print("Error: the band was not specified.")
sys.exit()
# Check that the name parameter has been specified.
if args.name == None:
# Print an error message if not and exit.
print("Error: the band name was not specified.")
sys.exit()
# Otherwise, run the function to set the band
# name.
setBandName(args.input, args.band, args.name)