Electrification.collect_national_network_codes¶
- Electrification.collect_national_network_codes(confirmation_required=True, verbose=False)[source]¶
Collects the section codes for Overhead Line Electrification (OLE) installations for the national network from the source web page.
- Parameters:
confirmation_required (bool) – Whether user confirmation is required before proceeding; defaults to
True
.verbose (bool | int) – Whether to print relevant information to the console; defaults to
False
.
- Returns:
A dictionary of OLE section codes for the national network, or
None
if not applicable.- Return type:
dict | None
Examples:
>>> from pyrcs.line_data import Electrification # from pyrcs import Electrification >>> elec = Electrification() >>> nn_codes = elec.collect_national_network_codes() To collect section codes for OLE installations: national network ? [No]|Yes: yes >>> type(nn_codes) dict >>> list(nn_codes.keys()) ['National network', 'Last updated date'] >>> elec.KEY_TO_NATIONAL_NETWORK 'National network' >>> nn_codes_dat = nn_codes[elec.KEY_TO_NATIONAL_NETWORK] >>> type(nn_codes_dat) dict >>> list(nn_codes_dat.keys()) ['Traditional numbering system [distance and sequence]', 'New numbering system [km and decimal]', 'Codes not certain [confirmation is welcome]', 'Suspicious data', 'An odd one to complete the record', 'LBSC/Southern Railway overhead system', 'Codes not known'] >>> tns_codes = nn_codes_dat['Traditional numbering system [distance and sequence]'] >>> type(tns_codes) dict >>> list(tns_codes.keys()) ['Codes', 'Notes'] >>> tns_codes_dat = tns_codes['Codes'] >>> tns_codes_dat.head() Code ... Datum 0 A ... Fenchurch Street 1 A ... Newbridge Junction 2 A ... Fenchurch Street 3 A ... Guide Bridge Station Junction 4 AB ... [5 rows x 4 columns]