-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpt.py
64 lines (54 loc) · 2.37 KB
/
gpt.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
#!/usr/bin/env python
#==============================================================================
# <gpt.py>
#==============================================================================
# Project : Co-ReSyF
# Company : Deimos Engenharia
# Component : Co-ReSyF Tools (snap command line api)
# Language : Python (v.2.7)
#------------------------------------------------------------------------------
# Scope : (see the following docstring)
# Usage : ---
#==============================================================================
# $LastChangedRevision: $:
# $LastChangedBy: $:
# $LastChangedDate: $:
#==============================================================================
'''
This module is used to run the gpt executable in batch-mode.
'''
''' SYSTEM MODULES '''
import os
import subprocess
def parameter(prefix, value):
f = ("-%s=\"%s\"" if isinstance(value, basestring) else "-%s=%s")
return f % (prefix, value)
def call_gpt(operator, source, target, options):
# ------------------------------------#
# Building gpt command line #
# ------------------------------------#
gpt_options = ' '.join([parameter(key, value) for key, value in options.items() if value is not None])
targetopt = ("-t \"%s\"" % target if target else "")
gpt_command = "gpt %s -f GeoTIFF %s -Ssource=\"%s\" %s" % (operator, targetopt, source, gpt_options)
# ------------------------------------#
# Run gpt command line #
# ------------------------------------#
print ('\n invoking: ' + gpt_command)
try:
process = subprocess.Popen(gpt_command,
shell=True,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE, )
# Reads the output and waits for the process to exit before returning
stdout, stderr = process.communicate()
print (stdout)
if stderr:
raise Exception(stderr) # or if process.returncode:
if 'Error' in stdout:
raise Exception()
except Exception, message:
print(str(message))
# sys.exit(1) # or sys.exit(process.returncode)
# Change output name (dummy resolution to solve SNAP bug of automatically adding extension)
# os.rename(target + ".tif", target)