Electrification.fetch_etz_codes

Electrification.fetch_etz_codes(update=False, pickle_it=False, data_dir=None, verbose=False)[source]

Fetch OLE section codes for national network energy tariff zones from source web page.

Parameters
  • update (bool) – whether to check on update and proceed to update the package data, defaults to False

  • pickle_it (bool) – whether to replace the current package data with newly collected data, defaults to False

  • data_dir (str or None) – name of package data folder, defaults to None

  • verbose (bool or int) – whether to print relevant information in console as the function runs, defaults to False

Returns

OLE section codes for national network energy tariff zones

Return type

dict

Example:

>>> from pyrcs.line_data import Electrification

>>> elec = Electrification()

>>> etz_ole_dat = elec.fetch_etz_codes()

>>> type(etz_ole_dat)
<class 'dict'>
>>> print(list(etz_ole_dat.keys()))
['National network energy tariff zones', 'Last updated date']