Wunsin Daye metro station

Wunsin Daye (pinyin: Wénxīn Dàyè) is a future metro station operated by Taichung Metro located in Nantun District, Taichung, Taiwan. It is on the Green Line.[1]

Wunsin Daye

文心大業站
Station under construction
LocationNantun, Taichung
Taiwan
Operated by
Line(s)
  •  G  Green Line
Platforms2 side platforms
Construction
Structure typeElevated
Other information
Station code111
History
OpenedDecember 2020 (2020-12)
Services
Preceding station Taichung Metro Following station
Wunsin Forest Park Green line Taichung City Hall
towards Beitun Main

The station name is taken from its location at Wenxin and Daye Roads. Initially, the station was known as Shueian Station (水安站), but was renamed on March 7, 2020.[2]

Station layout

2F Side platform
 G  Green Line: towards Taichung HSR Station (Wunsin Forest Park)
   G  Green Line: towards Beitun Main (Taichung City Hall)
Side platform
1F Lobby Station entrance, ticketing machine, information counter
gollark: ```pythonimport itertoolsimport multiprocessing as mchars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sif __name__ == "__main__": def start(func): proc = m.Process(target=func) proc.start() io_queue = m.Queue(maxsize=128) def printer(): while True: print(io_queue.get()) code_queue = m.Queue(maxsize=128) def generator(): for x in generate(): code_queue.put(x) def executor(): while True: code = code_queue.get() result = None try: result = repr(exec(code)) except Exception as e: result = repr(e) if result != None: io_queue.put(code + ": " + result) start(generator) for _ in range(4): start(executor) printer()```
gollark: Which do you think is slower: the execution or generation of strings?
gollark: ```pythonimport itertoolschars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sfor x in generate(): try: print(exec(x)) except Exception as e: print(f"{e} from {x}")```
gollark: I should multithread this!
gollark: ```pythonimport itertoolschars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sfor x in generate(): print(x)```<@!330678593904443393>

References

  1. "臺中捷運未來營運計畫" (PDF). Transportation Bureau of Taichung City (in Chinese). Taichung Metro. May 8, 2017. Retrieved October 15, 2019.
  2. 張菁雅 (May 7, 2020). "台中捷運綠線7站將改名 「這站」依然爭議最大" (in Chinese). Liberty Times. Retrieved July 30, 2020.

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