parse_csv_xz

pydriosm.reader.parse_csv_xz(path_to_csv_xz, col_names=None)[source]

Parse a compressed CSV (.csv.xz) data file.

Parameters
  • path_to_csv_xz (str) – absolute path to a .csv.xz data file

  • col_names (list or None) – column names of .csv.xz data, defaults to None

Returns

tabular data of the CSV file

Return type

pandas.DataFrame

See the example for the method BBBikeReader.read_csv_xz().