Tonghe Xincun station

Tonghe Xincun (Chinese: 通河新村; pinyin: Tōnghé Xīncūn) is a station on Shanghai Metro Line 1. This station is part of the northern extension of that line from Shanghai Railway Station to Gongfu Xincun that opened on 28 December 2004.[1]

Tonghe Xincun

通河新村
Station exterior
LocationGonghexin Road and West Changjiang Road (长江西路)
Baoshan District, Shanghai
China
Coordinates31°19′52″N 121°26′30″E
Operated byShanghai No. 1 Metro Operation Co. Ltd.
Line(s)     Line 1
History
Opened28 December 2004 (2004-12-28)
Services
Preceding station   Shanghai Metro   Following station
toward Fujin Road
Line 1
toward Xinzhuang
Location
Tonghe Xincun
Location in Shanghai

Station Layout

3F
Side platform, doors open on the right
Northbound      Line 1 towards Fujin Road (Hulan Road)
Southbound      Line 1 towards Xinzhuang (Gongkang Road)
Side platform, doors open on the right
2F Concourse Faregates, Station Agent
G Entrances and Exits Exits 1-4
gollark: This is an API I run to do some random things.
gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
gollark: Also, please use Flask and Python3.

References

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