Skip to content

Commit

Permalink
Disable filter example
Browse files Browse the repository at this point in the history
  • Loading branch information
skinkie committed Aug 16, 2016
1 parent aed2177 commit 052880a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gpsxml2png.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ def parse_xml(filename):

for z in tree.findall('.//gps-point'):
# A lon/lat filter might be applied here
if float(z.get('lon')) < 3.942:
continue
# if float(z.get('lon')) < 3.942:
# continue

if z.get('bssid') == 'GP:SD:TR:AC:KL:OG':
walked_lon.append(float(z.get('lon')))
Expand Down

0 comments on commit 052880a

Please sign in to comment.