Skip to content

Commit

Permalink
Fix GLD360 reader compatibility with newer pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Jun 28, 2024
1 parent f1351b4 commit d1dfed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion satpy/readers/vaisala_gld360.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def __init__(self, filename, filename_info, filetype_info):
# Combine 'date' and 'time' into a datetime object
parse_dates = {"time": ["gld360_date", "gld360_time"]}

self.data = pd.read_csv(filename, delim_whitespace=True, header=None,
self.data = pd.read_csv(filename, sep="\\s+", header=None,
names=names, dtype=dtypes, parse_dates=parse_dates)

@property
Expand Down

0 comments on commit d1dfed7

Please sign in to comment.