validator_osm_wiki_url = ( "https://wiki.openstreetmap.org/wiki/Quality_assurance#subway-preprocessor" ) github_url = "https://github.com/alexey-zakharenkov/subways" produced_by = f"""Produced by Subway Preprocessor on {{date}}""" metro_mapping_osm_article = "https://wiki.openstreetmap.org/wiki/Metro_Mapping" list_of_metro_systems_url = ( "https://en.wikipedia.org/wiki/List_of_metro_systems#List" ) # These are templates for validation_to_html.py # Variables should be in curly braces STYLE = """ """ INDEX_HEADER = f""" Subway Validator {STYLE}

Subway Validation Results

{{good_cities}} of {{total_cities}} networks validated without errors. To make a network validate successfully please follow the metro mapping instructions. Commit your changes to the OSM and then check back to the updated validation results after the next validation cycle, please. See the validator instance(s) description for the schedule and capabilities.

View networks on a map

""" INDEX_CONTINENT = """ {content} """ INDEX_COUNTRY = """ """ INDEX_FOOTER = f"""
 
Continent Country Good Cities Subway Lines Light Rail Lines Stations Interchanges Errors Warnings Notices
{continent} {good_cities} / {total_cities} {subwayl_found} / {subwayl_expected} {lightrl_found} / {lightrl_expected} {stations_found} / {stations_expected} {transfers_found} / {transfers_expected} {num_errors} {num_warnings} {num_notices}
  {country} {good_cities} / {total_cities} {subwayl_found} / {subwayl_expected} {lightrl_found} / {lightrl_expected} {stations_found} / {stations_expected} {transfers_found} / {transfers_expected} {num_errors} {num_warnings} {num_notices}
""" COUNTRY_HEADER = f""" Subway Validator: {{country}} {STYLE}

Subway Validation Results for {{country}}

Return to the countries list.

{{?subways}} {{end}}{{?overground}} {{end}} """ COUNTRY_CITY = """ {?subways} {end}{?overground} {end} """ COUNTRY_FOOTER = f"""
CitySubway Lines Light Rail LinesTram Lines Bus Lines T-Bus Lines Other LinesStations Interchanges Unused Entrances
{city} {?yaml}Y{end} {?json}J{end} {?json}M{end} sub: {subwayl_found} / {subwayl_expected} lr: {lightrl_found} / {lightrl_expected}t: {traml_found} / {traml_expected} b: {busl_found} / {busl_expected} tb: {trolleybusl_found} / {trolleybusl_expected} o: {otherl_found} / {otherl_expected}st: {stations_found} / {stations_expected} int: {transfers_found} / {transfers_expected} ent: {unused_entrances}
{?errors}
🛑 Errors
{errors}
{end} {?warnings}
⚠ī¸ Warnings
{warnings}
{end} {?notices}
ℹī¸ Notices
{notices} {end}
"""