taiwan_address 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 06bf28574cf3ac518b919112930c99bd83846730
4
+ data.tar.gz: c0836f91f90a86599a5e18288d0f48bea3b50c7c
5
+ SHA512:
6
+ metadata.gz: f3d5d335bbb82b1fa527745959314fdbbef2b41718c0e0f0e3f051a1c3d606c79ff812fd83395d5e0fe1bda21dd0825d09baab87ebdd9c8c2439fc5015b6256e
7
+ data.tar.gz: 52d63d0411a99a7b1def26deab0eea8214c3da9c51f9dc9f6c4f9e45c00b1225fc8688ab68096f8af29fad8165c73fa0c3775f1048d7345510d28328bf2e360a
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,16 @@
1
+ sudo: false
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.0.0
6
+ - 2.1.0
7
+ - 2.2.2
8
+ - 2.2.5
9
+ - 2.3.1
10
+ - 2.4.0
11
+ before_install: gem install bundler -v 1.14.5
12
+ branches:
13
+ only:
14
+ - master
15
+ notifications:
16
+ email: false
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at tou9702@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/CONTRIBUTION.md ADDED
@@ -0,0 +1,48 @@
1
+ # Contributing
2
+
3
+ ## Fork and Clone
4
+
5
+ The first step of contributing on this project is to fork the repository.
6
+ Now you can clone the repository to your local machine with code below
7
+
8
+ ```
9
+ git clone git@githuh.com:YOUR_USERNAME/taiwan-address
10
+ ```
11
+
12
+ ## Create a Branch
13
+
14
+ Now, you can make changes to repository by create new branch
15
+
16
+ ```
17
+ git checkout -b YOUR_WORKING_BRANCH
18
+ ```
19
+
20
+ ## Install Required Gem
21
+
22
+ ```
23
+ bundle install
24
+ ```
25
+
26
+ ## Test Your Code
27
+
28
+ If you made changes on code, please write the spec code in `/spec/`.
29
+ You can rspec with `bundle exec rspec`, also you can specific run with filename and line number.
30
+
31
+ ```
32
+ bundle exec rspec spec/taiwan_address/reader_spec.rb:4
33
+ ```
34
+
35
+ ## Send Pull Request
36
+
37
+ Once test are passed, you can create a pull request on GitHub.
38
+
39
+ First, push you cahnges
40
+
41
+ ```
42
+ git push origin YOUR_WORKING_BRANCH
43
+ ```
44
+
45
+ Now you can create pull request from [top page of this repository](https://github.com/ToUMenu/taiwan-address)
46
+
47
+ That's all:)
48
+ :wq
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in taiwan_address.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 DONGSHIH TENG
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,49 @@
1
+ # TaiwanAddress
2
+
3
+ [![Build Status](https://travis-ci.org/ToUMenu/taiwan-address.svg?branch=master)](https://travis-ci.org/ToUMenu/taiwan-address)
4
+ [![Coverage Status](https://coveralls.io/repos/github/ToUMenu/taiwan-address/badge.svg?branch=master)](https://coveralls.io/github/ToUMenu/taiwan-address?branch=master)
5
+
6
+ ## Installation
7
+
8
+ Install with application's Gemfile:
9
+
10
+ ```ruby
11
+ gem 'taiwan_address'
12
+ ```
13
+
14
+ Or install it yourself as:
15
+
16
+ ```shell
17
+ $ gem install taiwan_address
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ### Reader
23
+
24
+ ```ruby
25
+ reader = TaiwanAddress::Reader.new(203, :"zh-TW")
26
+ reader.zone # => "基隆市"
27
+ reader.district # => "中山區"
28
+ reader.address # => "基隆市 中山區"
29
+
30
+ reader.locale = :en
31
+ reader.zone # => "Keelung City"
32
+ reader.district # => "Zhongshan District"
33
+ reader.address # => "Keelung City Zhongshan District"
34
+ ```
35
+
36
+ ## Development
37
+
38
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
39
+
40
+
41
+ ## Contributing
42
+
43
+ Details in [CONTRIBUTING](/CONTRIBUTING.md)
44
+
45
+ Feel free to send pull request!
46
+
47
+ ## License
48
+
49
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "taiwan_address"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ require "i18n"
2
+
3
+ I18n.load_path = Dir.glob("lib/taiwan_address/config/locale/*.yml").map{|path| [path]}
4
+
5
+ I18n.config.available_locales = [:en, :"zh-TW"]
@@ -0,0 +1,392 @@
1
+ en:
2
+ zone:
3
+ taipei_city: "Taipei City"
4
+ new_taipei_city: "New Taipei City"
5
+ keelung_city: "Keelung City"
6
+ lienchiang_county: "Lienchiang County"
7
+ yilan_county: "Yilan County"
8
+ hsinchu_city: "Hsinchu City"
9
+ hsinchu_county: "Hsinchu County"
10
+ taoyuan_city: "Taoyuan City"
11
+ miaoli_county: "Miaoli County"
12
+ taichung_city: "Taichung City"
13
+ changhua_county: "Changhua County"
14
+ nantou_county: "Nantou County"
15
+ chiayi_city: "Chiayi City"
16
+ chiayi_county: "Chiayi County"
17
+ yunlin_county: "Yunlin County"
18
+ tainan_city: "Tainan City"
19
+ kaohsiung_city: "Kaohsiung City"
20
+ penghu_county: "Penghu County"
21
+ kinmen_county: "Kinmen County"
22
+ pingtung_county: "Pingtung County"
23
+ taitung_county: "Taitung County"
24
+ hualien_county: "Hualien County"
25
+ districts:
26
+ zhongzheng_district: 'Zhongzheng District'
27
+ datong_district: 'Datong District'
28
+ zhongshan_district: 'Zhongshan District'
29
+ songshan_district: 'Songshan District'
30
+ da_an_district: 'Da An District'
31
+ wanhua_district: 'Wanhua District'
32
+ xinyi_district: 'Xinyi District'
33
+ shilin_district: 'Shilin District'
34
+ beitou_district: 'Beitou District'
35
+ neihu_district: 'Neihu District'
36
+ nangang_district: 'Nangang District'
37
+ wenshan_district: 'Wenshan District'
38
+ ren_ai_district: 'Ren Ai District'
39
+ xinyi_district: 'Xinyi District'
40
+ zhongzheng_district: 'Zhongzheng District'
41
+ zhongshan_district: 'Zhongshan District'
42
+ anle_district: 'Anle District'
43
+ nuannuan_district: 'Nuannuan District'
44
+ qidu_district: 'Qidu District'
45
+ nangan_township: 'Nangan Township'
46
+ beigan_township: 'Beigan Township'
47
+ juguang_township: 'Juguang Township'
48
+ dongyin_township: 'Dongyin Township'
49
+ wanli_district: 'Wanli District'
50
+ jinshan_district: 'Jinshan District'
51
+ banqiao_district: 'Banqiao District'
52
+ xizhi_district: 'Xizhi District'
53
+ shenkeng_district: 'Shenkeng District'
54
+ shiding_district: 'Shiding District'
55
+ ruifang_district: 'Ruifang District'
56
+ pingxi_district: 'Pingxi District'
57
+ shuangxi_district: 'Shuangxi District'
58
+ gongliao_district: 'Gongliao District'
59
+ xindian_district: 'Xindian District'
60
+ pinglin_district: 'Pinglin District'
61
+ wulai_district: 'Wulai District'
62
+ yonghe_district: 'Yonghe District'
63
+ zhonghe_district: 'Zhonghe District'
64
+ tucheng_district: 'Tucheng District'
65
+ sanxia_district: 'Sanxia District'
66
+ shulin_district: 'Shulin District'
67
+ yingge_district: 'Yingge District'
68
+ sanchong_district: 'Sanchong District'
69
+ xinzhuang_district: 'Xinzhuang District'
70
+ taishan_district: 'Taishan District'
71
+ linkou_district: 'Linkou District'
72
+ luzhou_district: 'Luzhou District'
73
+ wugu_district: 'Wugu District'
74
+ bali_district: 'Bali District'
75
+ tamsui_district: 'Tamsui District'
76
+ sanzhi_district: 'Sanzhi District'
77
+ shimen_district: 'Shimen District'
78
+ yilan_city: 'Yilan City'
79
+ toucheng_township: 'Toucheng Township'
80
+ jiaoxi_township: 'Jiaoxi Township'
81
+ zhuangwei_township: 'Zhuangwei Township'
82
+ yuanshan_township: 'Yuanshan Township'
83
+ luodong_township: 'Luodong Township'
84
+ sanxing_township: 'Sanxing Township'
85
+ datong_township: 'Datong Township'
86
+ wujie_township: 'Wujie Township'
87
+ dongshan_township: 'Dongshan Township'
88
+ su_ao_township: 'Su Ao Township'
89
+ nan_ao_township: 'Nan Ao Township'
90
+ xiangshan_district: 'Xiangshan District'
91
+ zhubei_city: 'Zhubei City'
92
+ hukou_township: 'Hukou Township'
93
+ xinfeng_township: 'Xinfeng Township'
94
+ xinpu_township: 'Xinpu Township'
95
+ guanxi_township: 'Guanxi Township'
96
+ qionglin_township: 'Qionglin Township'
97
+ baoshan_township: 'Baoshan Township'
98
+ zhudong_township: 'Zhudong Township'
99
+ wufeng_township: 'Wufeng Township'
100
+ hengshan_township: 'Hengshan Township'
101
+ jianshi_township: 'Jianshi Township'
102
+ beipu_township: 'Beipu Township'
103
+ emei_township: 'Emei Township'
104
+ zhongli_district: 'Zhongli District'
105
+ pingzhen_district: 'Pingzhen District'
106
+ longtan_district: 'Longtan District'
107
+ yangmei_district: 'Yangmei District'
108
+ xinwu_district: 'Xinwu District'
109
+ guanyin_district: 'Guanyin District'
110
+ taoyuan_district: 'Taoyuan District'
111
+ guishan_district: 'Guishan District'
112
+ bade_district: 'Bade District'
113
+ daxi_district: 'Daxi District'
114
+ fuxing_district: 'Fuxing District'
115
+ dayuan_district: 'Dayuan District'
116
+ luzhu_district: 'Luzhu District'
117
+ zhunan_township: 'Zhunan Township'
118
+ toufen_township: 'Toufen Township'
119
+ sanwan_township: 'Sanwan Township'
120
+ nanzhuang_township: 'Nanzhuang Township'
121
+ shitan_township: 'Shitan Township'
122
+ houlong_township: 'Houlong Township'
123
+ tongxiao_township: 'Tongxiao Township'
124
+ yuanli_township: 'Yuanli Township'
125
+ miaoli_city: 'Miaoli City'
126
+ zaoqiao_township: 'Zaoqiao Township'
127
+ touwu_township: 'Touwu Township'
128
+ gongguan_township: 'Gongguan Township'
129
+ dahu_township: 'Dahu Township'
130
+ tai_an_township: 'Tai An Township'
131
+ tongluo_township: 'Tongluo Township'
132
+ sanyi_township: 'Sanyi Township'
133
+ xihu_township: 'Xihu Township'
134
+ zhuolan_township: 'Zhuolan Township'
135
+ central_district: 'Central District'
136
+ east_district: 'East District'
137
+ south_district: 'South District'
138
+ west_district: 'West District'
139
+ north_district: 'North District'
140
+ beitun_district: 'Beitun District'
141
+ xitun_district: 'Xitun District'
142
+ nantun_district: 'Nantun District'
143
+ taiping_district: 'Taiping District'
144
+ dali_district: 'Dali District'
145
+ wufeng_district: 'Wufeng District'
146
+ wuri_district: 'Wuri District'
147
+ fengyuan_district: 'Fengyuan District'
148
+ houli_district: 'Houli District'
149
+ shigang_district: 'Shigang District'
150
+ dongshi_district: 'Dongshi District'
151
+ heping_district: 'Heping District'
152
+ xinshe_district: 'Xinshe District'
153
+ tanzi_district: 'Tanzi District'
154
+ daya_district: 'Daya District'
155
+ shengang_district: 'Shengang District'
156
+ dadu_district: 'Dadu District'
157
+ shalu_district: 'Shalu District'
158
+ longjing_district: 'Longjing District'
159
+ wuqi_district: 'Wuqi District'
160
+ qingshui_district: 'Qingshui District'
161
+ dajia_district: 'Dajia District'
162
+ waipu_district: 'Waipu District'
163
+ da_an_district: 'Da An District'
164
+ changhua_city: 'Changhua City'
165
+ fenyuan_township: 'Fenyuan Township'
166
+ huatan_township: 'Huatan Township'
167
+ xiushui_township: 'Xiushui Township'
168
+ lukang_township: 'Lukang Township'
169
+ fuxing_township: 'Fuxing Township'
170
+ xianxi_township: 'Xianxi Township'
171
+ hemei_township: 'Hemei Township'
172
+ shengang_township: 'Shengang Township'
173
+ yuanlin_township: 'Yuanlin Township'
174
+ shetou_township: 'Shetou Township'
175
+ yongjing_township: 'Yongjing Township'
176
+ puxin_township: 'Puxin Township'
177
+ xihu_township: 'Xihu Township'
178
+ dacun_township: 'Dacun Township'
179
+ puyan_township: 'Puyan Township'
180
+ tianzhong_township: 'Tianzhong Township'
181
+ beidou_township: 'Beidou Township'
182
+ tianwei_township: 'Tianwei Township'
183
+ pitou_township: 'Pitou Township'
184
+ xizhou_township: 'Xizhou Township'
185
+ zhutang_township: 'Zhutang Township'
186
+ erlin_township: 'Erlin Township'
187
+ dacheng_township: 'Dacheng Township'
188
+ fangyuan_township: 'Fangyuan Township'
189
+ ershui_township: 'Ershui Township'
190
+ nantou_city: 'Nantou City'
191
+ zhongliao_township: 'Zhongliao Township'
192
+ caotun_township: 'Caotun Township'
193
+ guoxing_township: 'Guoxing Township'
194
+ puli_township: 'Puli Township'
195
+ ren_ai_township: 'Ren Ai Township'
196
+ mingjian_township: 'Mingjian Township'
197
+ jiji_township: 'Jiji Township'
198
+ shuili_township: 'Shuili Township'
199
+ yuchi_township: 'Yuchi Township'
200
+ xinyi_township: 'Xinyi Township'
201
+ zhushan_township: 'Zhushan Township'
202
+ lugu_township: 'Lugu Township'
203
+ west_district: 'West District'
204
+ fanlu_township: 'Fanlu Township'
205
+ meishan_township: 'Meishan Township'
206
+ zhuqi_township: 'Zhuqi Township'
207
+ alishan_township: 'Alishan Township'
208
+ zhongpu_township: 'Zhongpu Township'
209
+ dapu_township: 'Dapu Township'
210
+ shuishang_township: 'Shuishang Township'
211
+ lucao_township: 'Lucao Township'
212
+ taibao_city: 'Taibao City'
213
+ puzi_city: 'Puzi City'
214
+ dongshi_township: 'Dongshi Township'
215
+ liujiao_township: 'Liujiao Township'
216
+ xingang_township: 'Xingang Township'
217
+ minxiong_township: 'Minxiong Township'
218
+ dalin_township: 'Dalin Township'
219
+ xikou_township: 'Xikou Township'
220
+ yizhu_township: 'Yizhu Township'
221
+ budai_township: 'Budai Township'
222
+ dounan_township: 'Dounan Township'
223
+ dapi_township: 'Dapi Township'
224
+ huwei_township: 'Huwei Township'
225
+ tuku_township: 'Tuku Township'
226
+ baozhong_township: 'Baozhong Township'
227
+ dongshi_township: 'Dongshi Township'
228
+ lunbei_township: 'Lunbei Township'
229
+ mailiao_township: 'Mailiao Township'
230
+ douliu_city: 'Douliu City'
231
+ linnei_township: 'Linnei Township'
232
+ sihu_township: 'Sihu Township'
233
+ taixi_township: 'Taixi Township'
234
+ gukeng_township: 'Gukeng Township'
235
+ citong_township: 'Citong Township'
236
+ xiluo_township: 'Xiluo Township'
237
+ erlun_township: 'Erlun Township'
238
+ beigang_township: 'Beigang Township'
239
+ shuilin_township: 'Shuilin Township'
240
+ kouhu_township: 'Kouhu Township'
241
+ yuanchang_township: 'Yuanchang Township'
242
+ west central_district: 'West Central District'
243
+ east_district: 'East District'
244
+ south_district: 'South District'
245
+ north_district: 'North District'
246
+ anping_district: 'Anping District'
247
+ annan_district: 'Annan District'
248
+ yongkang_district: 'Yongkang District'
249
+ guiren_district: 'Guiren District'
250
+ xinhua_district: 'Xinhua District'
251
+ zuozhen_district: 'Zuozhen District'
252
+ yujing_district: 'Yujing District'
253
+ nanxi_district: 'Nanxi District'
254
+ nanhua_district: 'Nanhua District'
255
+ rende_district: 'Rende District'
256
+ guanmiao_district: 'Guanmiao District'
257
+ longqi_district: 'Longqi District'
258
+ guantian_district: 'Guantian District'
259
+ madou_district: 'Madou District'
260
+ jiali_district: 'Jiali District'
261
+ xigang_district: 'Xigang District'
262
+ qigu_district: 'Qigu District'
263
+ jiangjun_district: 'Jiangjun District'
264
+ xuejia_district: 'Xuejia District'
265
+ beimen_district: 'Beimen District'
266
+ xinying_district: 'Xinying District'
267
+ houbi_district: 'Houbi District'
268
+ baihe_district: 'Baihe District'
269
+ dongshan_district: 'Dongshan District'
270
+ liujia_district: 'Liujia District'
271
+ xiaying_district: 'Xiaying District'
272
+ liuying_district: 'Liuying District'
273
+ yanshui_district: 'Yanshui District'
274
+ shanhua_district: 'Shanhua District'
275
+ danei_district: 'Danei District'
276
+ shanshang_district: 'Shanshang District'
277
+ xinshi_district: 'Xinshi District'
278
+ anding_district: 'Anding District'
279
+ xinxing_district: 'Xinxing District'
280
+ qianjin_district: 'Qianjin District'
281
+ lingya_district: 'Lingya District'
282
+ yancheng_district: 'Yancheng District'
283
+ gushan_district: 'Gushan District'
284
+ qijin_district: 'Qijin District'
285
+ qianzhen_district: 'Qianzhen District'
286
+ sanmin_district: 'Sanmin District'
287
+ nanzi_district: 'Nanzi District'
288
+ xiaogang_district: 'Xiaogang District'
289
+ zuoying_district: 'Zuoying District'
290
+ renwu_district: 'Renwu District'
291
+ dashe_district: 'Dashe District'
292
+ dongsha_islands: 'Dongsha Islands'
293
+ nansha_islands: 'Nansha Islands'
294
+ gangshan_district: 'Gangshan District'
295
+ luzhu_district: 'Luzhu District'
296
+ alian_district: 'Alian District'
297
+ tianliao_district: 'Tianliao District'
298
+ yanchao_district: 'Yanchao District'
299
+ qiaotou_district: 'Qiaotou District'
300
+ ziguan_district: 'Ziguan District'
301
+ mituo_district: 'Mituo District'
302
+ yong_an_district: 'Yong An District'
303
+ hunei_district: 'Hunei District'
304
+ fengshan_district: 'Fengshan District'
305
+ daliao_district: 'Daliao District'
306
+ linyuan_district: 'Linyuan District'
307
+ niaosong_district: 'Niaosong District'
308
+ dashu_district: 'Dashu District'
309
+ qishan_district: 'Qishan District'
310
+ meinong_district: 'Meinong District'
311
+ liugui_district: 'Liugui District'
312
+ neimen_district: 'Neimen District'
313
+ shanlin_district: 'Shanlin District'
314
+ jiaxian_district: 'Jiaxian District'
315
+ taoyuan_district: 'Taoyuan District'
316
+ namaxia_district: 'Namaxia District'
317
+ maolin_district: 'Maolin District'
318
+ qieding_district: 'Qieding District'
319
+ magong_city: 'Magong City'
320
+ xiyu_township: 'Xiyu Township'
321
+ wang_an_township: 'Wang An Township'
322
+ qimei_township: 'Qimei Township'
323
+ baisha_township: 'Baisha Township'
324
+ huxi_township: 'Huxi Township'
325
+ jinsha_township: 'Jinsha Township'
326
+ jinhu_township: 'Jinhu Township'
327
+ jinning_township: 'Jinning Township'
328
+ jincheng_township: 'Jincheng Township'
329
+ lieyu_township: 'Lieyu Township'
330
+ wuqiu_township: 'Wuqiu Township'
331
+ pingtung_city: 'Pingtung City'
332
+ sandimen_township: 'Sandimen Township'
333
+ wutai_township: 'Wutai Township'
334
+ majia_township: 'Majia Township'
335
+ jiuru_township: 'Jiuru Township'
336
+ ligang_township: 'Ligang Township'
337
+ gaoshu_township: 'Gaoshu Township'
338
+ yanpu_township: 'Yanpu Township'
339
+ changzhi_township: 'Changzhi Township'
340
+ linluo_township: 'Linluo Township'
341
+ zhutian_township: 'Zhutian Township'
342
+ neipu_township: 'Neipu Township'
343
+ wandan_township: 'Wandan Township'
344
+ chaozhou_township: 'Chaozhou Township'
345
+ taiwu_township: 'Taiwu Township'
346
+ laiyi_township: 'Laiyi Township'
347
+ wanluan_township: 'Wanluan Township'
348
+ kanding_township: 'Kanding Township'
349
+ xinpi_township: 'Xinpi Township'
350
+ nanzhou_township: 'Nanzhou Township'
351
+ linbian_township: 'Linbian Township'
352
+ donggang_township: 'Donggang Township'
353
+ liuqiu_township: 'Liuqiu Township'
354
+ jiadong_township: 'Jiadong Township'
355
+ xinyuan_township: 'Xinyuan Township'
356
+ fangliao_township: 'Fangliao Township'
357
+ fangshan_township: 'Fangshan Township'
358
+ chunri_township: 'Chunri Township'
359
+ shizi_township: 'Shizi Township'
360
+ checheng_township: 'Checheng Township'
361
+ mudan_township: 'Mudan Township'
362
+ hengchun_township: 'Hengchun Township'
363
+ manzhou_township: 'Manzhou Township'
364
+ taitung_city: 'Taitung City'
365
+ lüdao_township: 'Lüdao Township'
366
+ lanyu_township: 'Lanyu Township'
367
+ yanping_township: 'Yanping Township'
368
+ beinan_township: 'Beinan Township'
369
+ luye_township: 'Luye Township'
370
+ guanshan_township: 'Guanshan Township'
371
+ haiduan_township: 'Haiduan Township'
372
+ chishang_township: 'Chishang Township'
373
+ donghe_township: 'Donghe Township'
374
+ chenggong_township: 'Chenggong Township'
375
+ changbin_township: 'Changbin Township'
376
+ taimali_township: 'Taimali Township'
377
+ jinfeng_township: 'Jinfeng Township'
378
+ dawu_township: 'Dawu Township'
379
+ daren_township: 'Daren Township'
380
+ hualien_city: 'Hualien City'
381
+ xincheng_township: 'Xincheng Township'
382
+ xiulin_township: 'Xiulin Township'
383
+ ji_an_township: 'Ji An Township'
384
+ shoufeng_township: 'Shoufeng Township'
385
+ fenglin_township: 'Fenglin Township'
386
+ guangfu_township: 'Guangfu Township'
387
+ fengbin_township: 'Fengbin Township'
388
+ ruisui_township: 'Ruisui Township'
389
+ wanrong_township: 'Wanrong Township'
390
+ yuli_township: 'Yuli Township'
391
+ zhuoxi_township: 'Zhuoxi Township'
392
+ fuli_township: 'Fuli Township'