Yanshi railway station

Yanshi railway station (Chinese: 偃师站) is a station on Longhai railway in Yanshi, Luoyang, Henan.

Yanshi

偃师
Location8 Chezhan Road[1]
Yanshi, Luoyang, Henan
China
Coordinates34.7299°N 112.7884°E / 34.7299; 112.7884
Operated by CR Zhengzhou
Line(s)
Platforms3
Tracks6
Connections
  • Bus terminal
Other information
Station code
  • 39110 (TMIS code) [2]
  • YSF (telegraph code)
  • YSH (Pinyin code)
ClassificationClass 2 station (二等站)
History
Opened1908
Services
Preceding station   China Railway   Following station
Longhai Railway
towards Lanzhou
Location
Yanshi
Location of the station
Yanshi
Yanshi (China)

History

The station was established in 1908 together with the Kaifeng-Luoyang section of Longhai railway.

gollark: Your config can be a programming language too, since it's useful for specifying some things without having to repeat yourself, but it should be separate from the code.
gollark: Application code is stuff which should be the same across deployments. Config is stuff which shouldn't.
gollark: Then your application is wrong.
gollark: * specify, not design
gollark: ```rust let with_db = warp::any().map(move || pool.clone()); let static_files = warp::path("assets").and(warp::fs::dir("assets")); let view_page = warp::path!(String).and(warp::get()).and(with_db.clone()) // repeating the next bit for every route is kind of bad, see if it can be changed somehow .and_then(|title, db| async { error_to_http_response(view_page(db, title).await) }); let editor_page = warp::path!(String / "edit").and(warp::get()).and(with_db.clone()) .and_then(|title, db| async { error_to_http_response(editor_page(db, title).await) }); let save_edit = warp::path!(String / "edit").and(warp::post()).and(warp::body::form()).and(with_db) .and_then(|title, form, db| async { error_to_http_response(save_edit(db, title, form).await) }); let not_found = warp::any().map(|| warp::reply::with_status("404 Not Found", http::StatusCode::NOT_FOUND)); let main = editor_page.or(save_edit).or(view_page); let app = static_files.or(main).or(not_found);```See, this is how you SHOULD design routes: incomprehensibly.

References

  1. "客运营业站站点". 12306.cn (in Chinese). Retrieved 2018-08-31.
  2. 中华人民共和国铁路车站代码(GB/T 10302-2010) (in Chinese). 中国标准出版社. 2010. p. 2. ISBN 155066140495.CS1 maint: ignored ISBN errors (link)


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.