Banská Bystrica mesto railway station
Banská Bystrica mesto railway station (Slovak: Železničná stanica Banská Bystrica mesto) serves the city of Banská Bystrica in central Slovakia. It is situated a short walk from the centre of the old town, in contrast to the larger but less central Banská Bystrica railway station.
Banská Bystrica mesto | |
---|---|
View of the station building, 2012 | |
Location | Banská Bystrica |
Coordinates | 48°43′53″N 19°08′48″E |
Owned by | Železnice Slovenskej republiky (ŽSR) |
Operated by | Železničná spoločnosť Slovensko (ZSSK) |
Line(s) | Vrútky–Zvolen |
Connections |
|
Location | |
Banská Bystrica mesto Location within Slovakia |
History
The station was opened on 3 September 1873 as Banská Bystrica Svätý Jan (Hungarian: Besztercebánya Szt. János) together with the rest of the Zvolen–Banská Bystrica section of the Vrútky–Zvolen railway.[1]
Facilities
The station has a single platform, and a single storey station building housing information and ticketing facilities.
Services
The station is owned by Železnice Slovenskej republiky (ŽSR); passenger train services are operated by Železničná spoločnosť Slovensko (ZSSK).
Preceding station | ŽSSK | Following station | ||
---|---|---|---|---|
Sliač kúpele toward Bratislava |
Regional fast trains | Banská Bystrica Terminus | ||
Radvaň toward Zvolen |
Stopping trains | Banská Bystrica Terminus |
gollark: I told you.
gollark: The clunky syntax for functions?
gollark: <@!330678593904443393> Serde is the de-facto Rust serialization library.
gollark: No, skynet as in my websocket messaging server for CC.
gollark: ```rustuse std::collections::HashMap;use serde_cbor::Value;use chrono;use std::collections::HashSet;use actix::prelude::*;#[derive(Serialize, Deserialize, Debug, PartialEq, Eq, Hash, Clone)]#[serde(untagged)]pub enum Channel { Numeric(i64), Named(String)}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct RawMsg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value}#[derive(Serialize, Deserialize, Debug, Clone, Message)]pub struct Msg { pub channel: Channel, #[serde(flatten)] pub meta: HashMap<String, Value>, pub message: Value, pub timestamp: chrono::DateTime<chrono::Utc>}pub fn complete(raw: RawMsg) -> Msg { Msg { channel: raw.channel, meta: raw.meta, timestamp: chrono::Utc::now(), message: raw.message }}#[derive(Serialize, Deserialize, Debug)]#[serde(rename_all = "snake_case")]pub enum MessageFromClient { Open(Channel), Close(Channel), Message(RawMsg), Query}#[derive(Serialize)]#[serde(rename_all = "snake_case")]pub enum MessageToClient<'a> { Message(Msg), QueryResult { channels: &'a HashSet<Channel> }}```Skynet!
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.