forked from NavPy/NavPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
183 lines (144 loc) · 4.57 KB
/
utils.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
"""
Utilities Functions.
Copyright (c) 2014 NavPy Developers. All rights reserved.
Use of this source code is governed by a BSD-style license that can be found in
LICENSE.txt
"""
import numpy as _np
import sys
def input_check_Nx1(x):
"""
Check x to be of dimension Nx1 and reshape it as a 1-D array
Adhika Lie
"""
x = _np.atleast_1d(x)
theSize = _np.shape(x)
if(len(theSize) > 1):
# 1. Input must be of size N x 1
if ((theSize[0] != 1) & (theSize[1] != 1)):
raise ValueError('Not an N x 1 array')
# 2. Make it into a 1-D array
x = x.reshape(_np.size(x))
elif (theSize[0] == 1):
x = x[0]
return x, _np.size(x)
def input_check_Nx3(x):
"""
Check x to be of dimension Nx3
Adhika Lie
"""
x = _np.atleast_2d(x)
theSize = _np.shape(x)
if(len(theSize) > 1):
# 1. Input must be of size N x 3
if ((theSize[0] != 3) & (theSize[1] != 3)):
raise ValueError('Not a N x 3 array')
# 2. Make it into a Nx3 array
if (theSize[1] != 3):
x = x.T
N = x.shape[0]
# 3. If N == 1, make it into a 1-D array
if (x.shape[0] == 1):
x = x.reshape(x.shape[1])
return x, N
def input_check_Nx3x3(x):
"""
Check x to be of dimension Nx3x3
Jacob Niehus
"""
theSize = _np.shape(x)
N = 1
if(len(theSize) > 2):
# 1. Input must be of size N x 3
if (3, 3) not in (theSize[:2], theSize[-2:]):
raise ValueError('Not a N x 3 x 3 array')
# 2. Make it into a Nx3x3 array
if (theSize[1:] != (3, 3)):
x = _np.rollaxis(x, -1)
N = x.shape[0]
# 3. If N == 2, make it into a 2-D array
if (x.shape[0] == 1):
x = x[0]
elif(theSize != (3, 3)):
raise ValueError('Not a 3 x 3 array')
return x, N
def loadtxt2dic(filename):
"""
Loads text file of key:value pairs into a dictionary.
Usage notes:
-Lines begining with '#' are treated as comments and skipped.
-Blank lines are also skipped
-Keys and values should be separated by '=' or ':', extra spaces are fine.
-A matrix/scalar are stored floats ONLY if the text has a decimal
Hamid M. (original)
Adhika Lie
"""
fid = open(filename, 'r')
param = {}
prev_line = ''
for line in fid:
# Remove Extra Spaces
line = prev_line + line.strip()
print(line)
# Skip lines beginning with # or blank
# Note: Python treats '' as False
if(line.startswith('#') or line.startswith('\n') or (not line)):
continue
# If line ends with a comma, it continues to the next line.
if(line.endswith(',')):
prev_line = line.strip()
continue
else:
prev_line = ''
# Split item
item = line.split('#', 1)[0].strip() # May have comment after the line
item = item.replace(':', ' ').replace('=', ' ').split(None, 1)
if(len(item) == 0):
continue
try:
param[item[0]] = eval(item[1])
if(type(eval(item[1])) == list):
param[item[0]] = _np.array(eval(item[1]))
except NameError:
param[item[0]] = item[1]
fid.close()
return param
def ask_ok(prompt, retries=4, complaint='Yes or no, please!'):
"""
Prompt user for for 'yes' or 'no' response
Taken from Python Documentation with small modifications
http://docs.python.org/tutorial/controlflow.html
Example:
>>> ask_ok('Do you really want to quit?')
Hamid M. May 2012
"""
while True:
ok = raw_input(prompt).lower()
if ok in ('y', 'ye', 'yes', '1'):
return True
if ok in ('n', 'no', 'nop', 'nope', '0'):
return False
retries = retries - 1
if retries < 0:
raise IOError('refusenik user')
print(complaint)
def status_update(i, drl, message, bar_length=20):
"""
To create progress bar + short error message
Parameters
----------
i is the counter of where you are in the "count"
drl is the total data record length
message is your message line (keep it short!)
Adhika Lie
"""
percent = float(i) / drl
hashes = '#' * int(round(percent * bar_length))
spaces = ' ' * (bar_length - len(hashes))
mmsg = message
if(len(mmsg) > 0):
if(mmsg[-1] != '\n'):
mmsg = mmsg + '\n'
sys.stdout.write("\r[%s] %3d%% :: %s" %
(hashes + spaces, int(round(percent * 100)), mmsg))
sys.stdout.flush()