Ōbaku Station
Ōbaku Station (黄檗駅, Ōbaku-eki) is a train station located in Uji, Kyoto Prefecture, Japan, operated by West Japan Railway Company (JR West) and Keihan Electric Railway. It has the Keihan station number "KH75", and the JR West station number "JR-D08".
Ōbaku Station 黄檗駅 | |
---|---|
Ōbaku Station JR building in December 2007 | |
Location | Uji, Kyoto Prefecture Japan |
Coordinates | 34.9133°N 135.8032°E |
Operated by | Keihan Electric Railway |
Line(s) | D Nara Line ■ Uji Line |
Other information | |
Station code | KH75 (Keihan), JR-D08 (JR West) |
Website | Official website |
Traffic | |
Passengers (2016) | 3,753 (JR West) 2,757 (Keihan) |
Location | |
Ōbaku Station Location within Japan |
Lines
Ōbaku Station is served by the JR West Nara Line and by the Keihan Uji Line.
Layout
The Keihan station and the JR station are separate structures not connected directly.
Keihan Railway
The Keihan station has two side platforms serving one track each.
JR West
The JR West station has two side platforms serving one track each.
Passenger statistics
According to Kyoto Prefecture statistics, the average number of passengers per day is as follows.
year | Keihan | JR West |
---|---|---|
1999 | 3,855 | 3,257 |
2000 | 3,945 | 3,282 |
2001 | 3,860 | 3,236 |
2002 | 3,814 | 3,148 |
2003 | 3,716 | 3,096 |
2004 | 3,633 | 3,096 |
2005 | 3,556 | 3,200 |
2006 | 3,441 | 3,282 |
2007 | 3,402 | 3,322 |
2008 | 3,436 | 3,458 |
2009 | 3,392 | 3,408 |
2010 | 3,400 | 3,460 |
2011 | 3,311 | 3,552 |
2012 | 3,403 | 3,604 |
2013 | 3,353 | 3,732 |
2014 | 3,353 | 3,773 |
2015 | 3,459 | 3,811 |
2016 | 2,757 | 3,753 |
Adjacent stations
« | Service | » | ||
---|---|---|---|---|
Keihan Railway Uji Line | ||||
Kowata | - | Mimurodo | ||
JR West Nara Line | ||||
Kohata | Local | Uji | ||
Regional Rapid Service: Does not stop at this station | ||||
Rapid Service: Does not stop at this station | ||||
Miyakoji Rapid Service: Does not stop at this station |
Surrounding area
- Kyoto University Uji Campus
gollark: https://esolangs.org/wiki/WHY#WHYJIT
gollark: WHYJIT is now production-unusable!
gollark: _continues WHYJIT development_
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
External links
Wikimedia Commons has media related to Obaku Station. |
- Official website (in Japanese)
- Keihan station information (in Japanese)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.