Skip to content

Commit

Permalink
Adjust encoding for reading 1minute metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
gutzbenj committed Jun 24, 2020
1 parent 989a905 commit c71e7f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python_dwd/indexing/meta_index_creation.py
Expand Up @@ -231,7 +231,8 @@ def _parse_zipped_data_into_df(file_opened: open) -> pd.DataFrame:
filepath_or_buffer=TextIOWrapper(file_opened),
sep=STATIONDATA_SEP,
na_values=NA_STRING,
dtype=str
dtype=str,
encoding="ISO-8859-1"
)

return file
Expand Down

0 comments on commit c71e7f0

Please sign in to comment.