BBBikeDownloader.validate_file_format

BBBikeDownloader.validate_file_format(osm_file_format, valid_file_formats=None, raise_err=True, **kwargs)[source]

Validate an input file format of OSM data.

The validation is done by matching the input osm_file_format to a filename extension available on BBBike free download server.

Parameters:
  • osm_file_format (str) – file format/extension of the OSM data available on BBBike free download server

  • valid_file_formats (Iterable) – fil extensions of the data available on a free download server

  • raise_err (bool) – (if the input fails to match a valid name) whether to raise the error pydriosm.downloader.InvalidFileFormatError, defaults to True

Returns:

valid file format (file extension)

Return type:

str

Examples:

>>> from pydriosm.downloader import BBBikeDownloader

>>> bbd = BBBikeDownloader()

>>> valid_file_format = bbd.validate_file_format(osm_file_format='PBF')
>>> valid_file_format
'.pbf'

>>> valid_file_format = bbd.validate_file_format(osm_file_format='.osm.pbf')
>>> valid_file_format
'.pbf'