-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.japan_tokyo_ku.inc
77 lines (72 loc) · 1.15 KB
/
data.japan_tokyo_ku.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/**
* Tokyo 23-ku list
*
* See https://ja.wikipedia.org/wiki/東京都区部
* See https://en.wikipedia.org/wiki/Special_wards_of_Tokyo
*/
namespace QQAPI;
/**
* NB. They keys are 1 for Chiyoda-ku, through to 23 for edogawa-ku. This ordering
* comes from 全国地方公共団体コードの末尾.
*/
$GLOBALS['jp23kuJa']=array(
'',
'千代田区', //1
'中央区',
'港区',
'新宿区', //4
'文京区',
'台東区',
'墨田区',
'江東区', //8
'品川区',
'目黒区',
'大田区',
'世田谷区', //12
'渋谷区',
'中野区',
'杉並区',
'豊島区', //16
'北区',
'荒川区',
'板橋区',
'練馬区', //20
'足立区',
'葛飾区',
'江戸川区', //23
);
/**
* Translation of $jp23kuJa into English.
*
* Hepburn romaji, no long vowels shown, and lowercase.
*
* The -ku suffix (they might also use " city" suffix") is not included.
*/
$GLOBALS['jp23kuEn'] = array(
'',
'chiyoda', //1
'chuo',
'minato',
'shinjuku', //4
'bunkyo',
'taito',
'sumida',
'koto', //8
'shinagawa',
'meguro',
'ota',
'setagaya', //12
'shibuya',
'nakano',
'suginami',
'toshima', //16
'kita',
'arakawa',
'itabashi',
'nerima', //20
'adachi',
'katsushika',
'edogawa', //23
);
?>