diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-29 18:24:57 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-29 18:24:57 +0200 |
commit | 5fda6e0efcee6b6834bae827c15f3ccb5f4eca85 (patch) | |
tree | 750cdf68145a0c821bfecd31ba03c4cf28b7acd8 | |
parent | typo (diff) | |
download | nightshift-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-x | src/__main__.py | 5 |
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(', ')] |