aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-05-29 18:24:57 +0200
committerMattias Andrée <maandree@operamail.com>2014-05-29 18:24:57 +0200
commit5fda6e0efcee6b6834bae827c15f3ccb5f4eca85 (patch)
tree750cdf68145a0c821bfecd31ba03c4cf28b7acd8
parenttypo (diff)
downloadnightshift-5fda6e0efcee6b6834bae827c15f3ccb5f4eca85.tar.gz
nightshift-5fda6e0efcee6b6834bae827c15f3ccb5f4eca85.tar.bz2
nightshift-5fda6e0efcee6b6834bae827c15f3ccb5f4eca85.tar.xz
add support for N/S/E/W suffixes in the location0.6
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rwxr-xr-xsrc/__main__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/__main__.py b/src/__main__.py
index e0230c5..1fe2b50 100755
--- a/src/__main__.py
+++ b/src/__main__.py
@@ -314,7 +314,10 @@ def read_status(proc, sock):
red_condition.acquire()
try:
if key == 'Location':
- red_location = [float(v) for v in value.split(', ')]
+ def coordcomp(v):
+ v = (v + ' N').split(' ')[:2]
+ return float(v[0]) * (-1 if v[1] in 'SW' else 1)
+ red_location = [coordcomp(v) for v in value.split(', ')]
# Followed by 'Temperatures'
elif key == 'Temperatures':
red_temperatures = [float(v.split(' ')[0][:-1]) for v in value.split(', ')]