Skip to content

Commit

Permalink
Fix Avoid duplicate in analyser_merge_geodesie osm-fr#560
Browse files Browse the repository at this point in the history
  • Loading branch information
frodrigo committed Oct 1, 2019
1 parent 815ac4d commit 2d9f121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analysers/analyser_merge_geodesie.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, config, logger = None):
file = "geodesie.csv.bz2"),
header = False),
Load("lon", "lat",
where = lambda res: not('Point constaté détruit' in res['description'] or 'Point non retrouvé' in res['description']), # No more uniq ref
where = lambda res: not(u'Point constaté détruit' in res[u'description'] or u'Point non retrouvé' in res[u'description']), # No more uniq ref
create = """
id VARCHAR(254) PRIMARY KEY,
lat VARCHAR(254),
Expand Down

0 comments on commit 2d9f121

Please sign in to comment.