Skip to content

Commit

Permalink
fix(clean): lat_long regex not match a date format
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Lockhart committed Feb 24, 2021
1 parent 9312af5 commit 49d3d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataprep/clean/clean_lat_long.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

LAT_LONG_PATTERN = re.compile(
r"""
.*?[(]?
[^/]*?[(]?
(?P<dir_front>[NS])?[ ]*
(?P<deg>-?%(FLOAT)s)(?:[%(DEGREE)sD\*\u00B0\s][ ]*
(?:(?P<min>%(FLOAT)s)[%(PRIME)s'm]?[ ]*)?
Expand Down

0 comments on commit 49d3d22

Please sign in to comment.