Skip to content

Commit

Permalink
Use raw string for RegEx
Browse files Browse the repository at this point in the history
  • Loading branch information
garlic-os authored Jun 19, 2024
1 parent 6abd5a7 commit f350997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/RAiDER/gnss/downloadGNSSDelays.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_stats_by_llh(llhBox=None, baseURL=_UNR_URL):

stations = pd.read_csv(
stationHoldings,
sep='\s+',
sep=r'\s+',
names=['ID', 'Lat', 'Lon', 'Hgt_m']
)
stations = filterToBBox(stations, llhBox)
Expand Down

0 comments on commit f350997

Please sign in to comment.