-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
195 lines (187 loc) · 247 KB
/
app.js
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
var express = require('express');
// var config = require('./config/config');
var app = express();
var request = require('request');
var https = require('https');
// var httpProxy = require('http-proxy');
var path = require('path');
var bodyParser = require('body-parser');
var headerBase = [{
type: '*',
value: ''
}, {
type: '/js/*',
value: 'application/json;charset=utf-8'
}, {
type: '/css/*',
value: 'text/css;charset=utf-8'
}]
//设置跨域限制
headerBase.forEach(function(v, i) {
app.all(v.type, function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "X-Requested-With");
res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS");
res.header("X-Powered-By", ' 3.2.2');
if (v.value) {
res.header("Content-Type", v.value);
}
next();
});
})
app.use(express.static(path.join(__dirname, 'public')));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.get('/', function(req, res) {
res.send('Service has been started!');
})
var tool = express.Router();
var urlPath = express.Router();
// var proxy = httpProxy.createProxyServer({});
// var proxyUrl = 'http://111.206.13.63/'; //线上透传地址
// var jsBase = ['']; //代理路径配置
// // js代理透传
// jsBase.forEach(function(v) {
// Router.get(v + '*', function(req, res) {
// var url = 'http://localhost' + v + req.params[0];
// request(url, function(error, response, body) {
// if (!error && response.statusCode == 200) {
// res.send(body);
// } else {
// proxy.web(req, res, {
// target: proxyUrl + req.baseUrl
// });
// }
// })
// })
// })
// 接口路由
tool.post('/api/saveData', function(req, res) {
console.log(req.body);
var pageId = req.body.pageId,
text = req.body.text;
config.doQuery("SELECT * FROM test WHERE user='"+ pageId +"'", function(e) {
console.log(e)
if (e.data.rows.length != 0) {
config.doQuery("UPDATE test SET text = '" + text + "' WHERE user='"+ pageId +"'", function(data) {
if (data.code == 'A00000') {
res.send({
code: 'A00000',
text: '保存成功!',
data: data.data
})
} else {
res.send({
code: 'A00001',
text: '保存失败!',
data: data.data
})
}
})
} else {
config.doQuery("INSERT INTO `test`.`test` (`user`, `text`) VALUES ('"+ pageId + "','" + text +"');", function(data) {
if (data.code == 'A00000') {
res.send({
code: 'A00000',
text: '保存成功!',
data: data.data
})
} else {
res.send({
code: 'A00001',
text: '保存失败!',
data: data.data
})
}
})
}
})
})
tool.get('/api/getData', function(req, res) {
console.log(req.query)
var pageId = req.query.pageId;
config.doQuery("SELECT * FROM test WHERE user='"+ pageId +"'", function(data) {
if (data.code == 'A00000') {
res.send({
code: 'A00000',
text: '查询成功!',
data: data.data
})
} else {
res.send({
code: 'A00001',
text: '查询失败!',
data: data.data
})
}
})
})
tool.get('/api/getText', function(req, res) {
try {
var number = req.query.number,
url = 'http://www.kuaidi100.com/autonumber/autoComNum?text=' + number;
request(url, function(error, response, body) {
if (!error && response.statusCode == 200) {
res.send(body);
}
})
} catch(e) {}
})
tool.get('/api/getPhysical', function(req, res) {
try {
var number = req.query.number,
name = req.query.name,
url = 'http://www.kuaidi100.com/query?type='+ name +'&postid=' + number +'&id=1&valicode=&temp=' + Math.random();
request(url, function(error, response, body) {
if (!error && response.statusCode == 200) {
res.send(body);
}
});
} catch(e) {}
})
// 车票查询
tool.get('/api/getTicket', function(req, res) {
try {
var train_date = req.query.train_date;
var from_station = req.query.from_station;
var to_station = req.query.to_station;
var purpose_codes = req.query.purpose_codes;
var url = 'leftTicket/query';
function getQuery(url) {
var options = {
url: 'https://kyfw.12306.cn/otn/'+ url +'?leftTicketDTO.train_date='+ train_date +'&leftTicketDTO.from_station='+ from_station +'&leftTicketDTO.to_station='+ to_station +'&purpose_codes='+ purpose_codes,
rejectUnauthorized: false
};
request(options, function(error, response, body) {
if (!error && response.statusCode == 200) {
body = JSON.parse(body);
if (body.status) {
res.send(body);
} else if(body.c_url) {
getQuery(body.c_url)
} else {
getQuery(url)
}
} else {
res.send([error, response, body]);
}
})
}
} catch(e) {
res.send(['www',e]);
}
})
tool.get('/api/station', function(req, res) {
var station = {
code: 200,
info: [{"station":"bjb","name":"北京北","type":"VAP","simple":"beijingbei","base":"bjb","code":"0"},{"station":"bjd","name":"北京东","type":"BOP","simple":"beijingdong","base":"bjd","code":"1"},{"station":"bji","name":"北京","type":"BJP","simple":"beijing","base":"bj","code":"2"},{"station":"bjn","name":"北京南","type":"VNP","simple":"beijingnan","base":"bjn","code":"3"},{"station":"bjx","name":"北京西","type":"BXP","simple":"beijingxi","base":"bjx","code":"4"},{"station":"gzn","name":"广州南","type":"IZQ","simple":"guangzhounan","base":"gzn","code":"5"},{"station":"cqb","name":"重庆北","type":"CUW","simple":"chongqingbei","base":"cqb","code":"6"},{"station":"cqi","name":"重庆","type":"CQW","simple":"chongqing","base":"cq","code":"7"},{"station":"cqn","name":"重庆南","type":"CRW","simple":"chongqingnan","base":"cqn","code":"8"},{"station":"gzd","name":"广州东","type":"GGQ","simple":"guangzhoudong","base":"gzd","code":"9"},{"station":"sha","name":"上海","type":"SHH","simple":"shanghai","base":"sh","code":"10"},{"station":"shn","name":"上海南","type":"SNH","simple":"shanghainan","base":"shn","code":"11"},{"station":"shq","name":"上海虹桥","type":"AOH","simple":"shanghaihongqiao","base":"shhq","code":"12"},{"station":"shx","name":"上海西","type":"SXH","simple":"shanghaixi","base":"shx","code":"13"},{"station":"tjb","name":"天津北","type":"TBP","simple":"tianjinbei","base":"tjb","code":"14"},{"station":"tji","name":"天津","type":"TJP","simple":"tianjin","base":"tj","code":"15"},{"station":"tjn","name":"天津南","type":"TIP","simple":"tianjinnan","base":"tjn","code":"16"},{"station":"tjx","name":"天津西","type":"TXP","simple":"tianjinxi","base":"tjx","code":"17"},{"station":"cch","name":"长春","type":"CCT","simple":"changchun","base":"cc","code":"18"},{"station":"ccn","name":"长春南","type":"CET","simple":"changchunnan","base":"ccn","code":"19"},{"station":"ccx","name":"长春西","type":"CRT","simple":"changchunxi","base":"ccx","code":"20"},{"station":"cdd","name":"成都东","type":"ICW","simple":"chengdudong","base":"cdd","code":"21"},{"station":"cdn","name":"成都南","type":"CNW","simple":"chengdunan","base":"cdn","code":"22"},{"station":"cdu","name":"成都","type":"CDW","simple":"chengdu","base":"cd","code":"23"},{"station":"csh","name":"长沙","type":"CSQ","simple":"changsha","base":"cs","code":"24"},{"station":"csn","name":"长沙南","type":"CWQ","simple":"changshanan","base":"csn","code":"25"},{"station":"fzh","name":"福州","type":"FZS","simple":"fuzhou","base":"fz","code":"26"},{"station":"fzn","name":"福州南","type":"FYS","simple":"fuzhounan","base":"fzn","code":"27"},{"station":"gya","name":"贵阳","type":"GIW","simple":"guiyang","base":"gy","code":"28"},{"station":"gzh","name":"广州","type":"GZQ","simple":"guangzhou","base":"gz","code":"29"},{"station":"gzx","name":"广州西","type":"GXQ","simple":"guangzhouxi","base":"gzx","code":"30"},{"station":"heb","name":"哈尔滨","type":"HBB","simple":"haerbin","base":"heb","code":"31"},{"station":"hed","name":"哈尔滨东","type":"VBB","simple":"haerbindong","base":"hebd","code":"32"},{"station":"hex","name":"哈尔滨西","type":"VAB","simple":"haerbinxi","base":"hebx","code":"33"},{"station":"hfe","name":"合肥","type":"HFH","simple":"hefei","base":"hf","code":"34"},{"station":"hfx","name":"合肥西","type":"HTH","simple":"hefeixi","base":"hfx","code":"35"},{"station":"hhd","name":"呼和浩特东","type":"NDC","simple":"huhehaotedong","base":"hhhtd","code":"36"},{"station":"hht","name":"呼和浩特","type":"HHC","simple":"huhehaote","base":"hhht","code":"37"},{"station":"hkd","name":"海 口东","type":"KEQ","simple":"haikoudong","base":"hkd","code":"38"},{"station":"hkd","name":"海口东","type":"HMQ","simple":"haikoudong","base":"hkd","code":"39"},{"station":"hko","name":"海口","type":"VUQ","simple":"haikou","base":"hk","code":"40"},{"station":"hzd","name":"杭州东","type":"HGH","simple":"hangzhoudong","base":"hzd","code":"41"},{"station":"hzh","name":"杭州","type":"HZH","simple":"hangzhou","base":"hz","code":"42"},{"station":"hzn","name":"杭州南","type":"XHH","simple":"hangzhounan","base":"hzn","code":"43"},{"station":"jna","name":"济南","type":"JNK","simple":"jinan","base":"jn","code":"44"},{"station":"jnd","name":"济南东","type":"JAK","simple":"jinandong","base":"jnd","code":"45"},{"station":"jnx","name":"济南西","type":"JGK","simple":"jinanxi","base":"jnx","code":"46"},{"station":"kmi","name":"昆明","type":"KMM","simple":"kunming","base":"km","code":"47"},{"station":"kmx","name":"昆明西","type":"KXM","simple":"kunmingxi","base":"kmx","code":"48"},{"station":"lsa","name":"拉萨","type":"LSO","simple":"lasa","base":"ls","code":"49"},{"station":"lzd","name":"兰州东","type":"LVJ","simple":"lanzhoudong","base":"lzd","code":"50"},{"station":"lzh","name":"兰州","type":"LZJ","simple":"lanzhou","base":"lz","code":"51"},{"station":"lzx","name":"兰州西","type":"LAJ","simple":"lanzhouxi","base":"lzx","code":"52"},{"station":"nch","name":"南昌","type":"NCG","simple":"nanchang","base":"nc","code":"53"},{"station":"nji","name":"南京","type":"NJH","simple":"nanjing","base":"nj","code":"54"},{"station":"njn","name":"南京南","type":"NKH","simple":"nanjingnan","base":"njn","code":"55"},{"station":"nni","name":"南宁","type":"NNZ","simple":"nanning","base":"nn","code":"56"},{"station":"sjb","name":"石家庄北","type":"VVP","simple":"shijiazhuangbei","base":"sjzb","code":"57"},{"station":"sjz","name":"石家庄","type":"SJP","simple":"shijiazhuang","base":"sjz","code":"58"},{"station":"sya","name":"沈阳","type":"SYT","simple":"shenyang","base":"sy","code":"59"},{"station":"syb","name":"沈阳北","type":"SBT","simple":"shenyangbei","base":"syb","code":"60"},{"station":"syd","name":"沈阳东","type":"SDT","simple":"shenyangdong","base":"syd","code":"61"},{"station":"tyb","name":"太原北","type":"TBV","simple":"taiyuanbei","base":"tyb","code":"62"},{"station":"tyd","name":"太原东","type":"TDV","simple":"taiyuandong","base":"tyd","code":"63"},{"station":"tyu","name":"太原","type":"TYV","simple":"taiyuan","base":"ty","code":"64"},{"station":"wha","name":"武汉","type":"WHN","simple":"wuhan","base":"wh","code":"65"},{"station":"wjx","name":"王家营西","type":"KNM","simple":"wangjiayingxi","base":"wjyx","code":"66"},{"station":"wln","name":"乌鲁木齐南","type":"WMR","simple":"wulumuqinan","base":"wlmqn","code":"67"},{"station":"xab","name":"西安北","type":"EAY","simple":"xianbei","base":"xab","code":"68"},{"station":"xan","name":"西安","type":"XAY","simple":"xian","base":"xa","code":"69"},{"station":"xan","name":"西安南","type":"CAY","simple":"xiannan","base":"xan","code":"70"},{"station":"xni","name":"西宁","type":"XNO","simple":"xining","base":"xn","code":"71"},{"station":"ych","name":"银川","type":"YIJ","simple":"yinchuan","base":"yc","code":"72"},{"station":"zzh","name":"郑州","type":"ZZF","simple":"zhengzhou","base":"zz","code":"73"},{"station":"aes","name":"阿尔山","type":"ART","simple":"aershan","base":"aes","code":"74"},{"station":"aka","name":"安康","type":"AKY","simple":"ankang","base":"ak","code":"75"},{"station":"aks","name":"阿克苏","type":"ASR","simple":"akesu","base":"aks","code":"76"},{"station":"alh","name":"阿里河","type":"AHX","simple":"alihe","base":"alh","code":"77"},{"station":"alk","name":"阿拉山口","type":"AKR","simple":"alashankou","base":"alsk","code":"78"},{"station":"api","name":"安平","type":"APT","simple":"anping","base":"ap","code":"79"},{"station":"aqi","name":"安庆","type":"AQH","simple":"anqing","base":"aq","code":"80"},{"station":"ash","name":"安顺","type":"ASW","simple":"anshun","base":"as","code":"81"},{"station":"ash","name":"鞍山","type":"AST","simple":"anshan","base":"as","code":"82"},{"station":"aya","name":"安阳","type":"AYF","simple":"anyang","base":"ay","code":"83"},{"station":"ban","name":"北安","type":"BAB","simple":"beian","base":"ba","code":"84"},{"station":"bbu","name":"蚌埠","type":"BBH","simple":"bengbu","base":"bb","code":"85"},{"station":"bch","name":"白城","type":"BCT","simple":"baicheng","base":"bc","code":"86"},{"station":"bha","name":"北海","type":"BHZ","simple":"beihai","base":"bh","code":"87"},{"station":"bhe","name":"白河","type":"BEL","simple":"baihe","base":"bh","code":"88"},{"station":"bji","name":"白涧","type":"BAP","simple":"baijian","base":"bj","code":"89"},{"station":"bji","name":"宝鸡","type":"BJY","simple":"baoji","base":"bj","code":"90"},{"station":"bji","name":"滨江","type":"BJB","simple":"binjiang","base":"bj","code":"91"},{"station":"bkt","name":"博克图","type":"BKX","simple":"boketu","base":"bkt","code":"92"},{"station":"bse","name":"百色","type":"BIZ","simple":"baise","base":"bs","code":"93"},{"station":"bss","name":"白山市","type":"HJL","simple":"baishanshi","base":"bss","code":"94"},{"station":"bta","name":"北台","type":"BTT","simple":"beitai","base":"bt","code":"95"},{"station":"btd","name":"包头东","type":"BDC","simple":"baotoudong","base":"btd","code":"96"},{"station":"bto","name":"包头","type":"BTC","simple":"baotou","base":"bt","code":"97"},{"station":"bts","name":"北屯市","type":"BXR","simple":"beitunshi","base":"bts","code":"98"},{"station":"bxi","name":"本溪","type":"BXT","simple":"benxi","base":"bx","code":"99"},{"station":"byb","name":"白云鄂博","type":"BEC","simple":"baiyunebo","base":"byeb","code":"100"},{"station":"byx","name":"白银西","type":"BXJ","simple":"baiyinxi","base":"byx","code":"101"},{"station":"bzh","name":"亳州","type":"BZH","simple":"bozhou","base":"bz","code":"102"},{"station":"cbi","name":"赤壁","type":"CBN","simple":"chibi","base":"cb","code":"103"},{"station":"cde","name":"常德","type":"VGQ","simple":"changde","base":"cd","code":"104"},{"station":"cde","name":"承德","type":"CDP","simple":"chengde","base":"cd","code":"105"},{"station":"cdi","name":"长甸","type":"CDT","simple":"changdian","base":"cd","code":"106"},{"station":"cfe","name":"赤峰","type":"CFD","simple":"chifeng","base":"cf","code":"107"},{"station":"cli","name":"茶陵","type":"CDG","simple":"chaling","base":"cl","code":"108"},{"station":"cna","name":"苍南","type":"CEH","simple":"cangnan","base":"cn","code":"109"},{"station":"cpi","name":"昌平","type":"CPP","simple":"changping","base":"cp","code":"110"},{"station":"cre","name":"崇仁","type":"CRG","simple":"chongren","base":"cr","code":"111"},{"station":"ctu","name":"昌图","type":"CTT","simple":"changtu","base":"ct","code":"112"},{"station":"ctz","name":"长汀镇","type":"CDB","simple":"changtingzhen","base":"ctz","code":"113"},{"station":"cxi","name":"曹县","type":"CXK","simple":"caoxian","base":"cx","code":"114"},{"station":"cxi","name":"楚雄","type":"COM","simple":"chuxiong","base":"cx","code":"115"},{"station":"cxt","name":"陈相屯","type":"CXT","simple":"chenxiangtun","base":"cxt","code":"116"},{"station":"czb","name":"长治北","type":"CBF","simple":"changzhibei","base":"czb","code":"117"},{"station":"czh","name":"池州","type":"IYH","simple":"chizhou","base":"cz","code":"118"},{"station":"czh","name":"长征","type":"CZJ","simple":"changzheng","base":"cz","code":"119"},{"station":"czh","name":"常州","type":"CZH","simple":"changzhou","base":"cz","code":"120"},{"station":"czh","name":"郴州","type":"CZQ","simple":"chenzhou","base":"cz","code":"121"},{"station":"czh","name":"长治","type":"CZF","simple":"changzhi","base":"cz","code":"122"},{"station":"czh","name":"沧州","type":"COP","simple":"cangzhou","base":"cz","code":"123"},{"station":"czu","name":"崇左","type":"CZZ","simple":"chongzuo","base":"cz","code":"124"},{"station":"dab","name":"大安北","type":"RNT","simple":"daanbei","base":"dab","code":"125"},{"station":"dch","name":"大成","type":"DCT","simple":"dacheng","base":"dc","code":"126"},{"station":"ddo","name":"丹东","type":"DUT","simple":"dandong","base":"dd","code":"127"},{"station":"dfh","name":"东方红","type":"DFB","simple":"dongfanghong","base":"dfh","code":"128"},{"station":"dgd","name":"东莞东","type":"DMQ","simple":"dongguandong","base":"dgd","code":"129"},{"station":"dhs","name":"大虎山","type":"DHD","simple":"dahushan","base":"dhs","code":"130"},{"station":"dhu","name":"敦煌","type":"DHJ","simple":"dunhuang","base":"dh","code":"131"},{"station":"dhu","name":"敦化","type":"DHL","simple":"dunhua","base":"dh","code":"132"},{"station":"dhu","name":"德惠","type":"DHT","simple":"dehui","base":"dh","code":"133"},{"station":"djc","name":"东京城","type":"DJB","simple":"dongjingcheng","base":"djc","code":"134"},{"station":"dji","name":"大涧","type":"DFP","simple":"dajian","base":"dj","code":"135"},{"station":"djy","name":"都江堰","type":"DDW","simple":"dujiangyan","base":"djy","code":"136"},{"station":"dlb","name":"大连北","type":"DFT","simple":"dalianbei","base":"dlb","code":"137"},{"station":"dli","name":"大理","type":"DKM","simple":"dali","base":"dl","code":"138"},{"station":"dli","name":"大连","type":"DLT","simple":"dalian","base":"dl","code":"139"},{"station":"dna","name":"定南","type":"DNG","simple":"dingnan","base":"dn","code":"140"},{"station":"dqi","name":"大庆","type":"DZX","simple":"daqing","base":"dq","code":"141"},{"station":"dsh","name":"东胜","type":"DOC","simple":"dongsheng","base":"ds","code":"142"},{"station":"dsq","name":"大石桥","type":"DQT","simple":"dashiqiao","base":"dsq","code":"143"},{"station":"dto","name":"大同","type":"DTV","simple":"datong","base":"dt","code":"144"},{"station":"dyi","name":"东营","type":"DPK","simple":"dongying","base":"dy","code":"145"},{"station":"dys","name":"大杨树","type":"DUX","simple":"dayangshu","base":"dys","code":"146"},{"station":"dyu","name":"都匀","type":"RYW","simple":"duyun","base":"dy","code":"147"},{"station":"dzh","name":"邓州","type":"DOF","simple":"dengzhou","base":"dz","code":"148"},{"station":"dzh","name":"达州","type":"RXW","simple":"dazhou","base":"dz","code":"149"},{"station":"dzh","name":"德州","type":"DZP","simple":"dezhou","base":"dz","code":"150"},{"station":"ejn","name":"额济纳","type":"EJC","simple":"ejina","base":"ejn","code":"151"},{"station":"eli","name":"二连","type":"RLC","simple":"erlian","base":"el","code":"152"},{"station":"esh","name":"恩施","type":"ESN","simple":"enshi","base":"es","code":"153"},{"station":"fdi","name":"福鼎","type":"FES","simple":"fuding","base":"fd","code":"154"},{"station":"fhc","name":"凤凰机场","type":"FJQ","simple":"fenghuangjichang","base":"fhjc","code":"155"},{"station":"fld","name":"风陵渡","type":"FLV","simple":"fenglingdu","base":"fld","code":"156"},{"station":"fli","name":"涪陵","type":"FLW","simple":"fuling","base":"fl","code":"157"},{"station":"flj","name":"富拉尔基","type":"FRX","simple":"fulaerji","base":"flej","code":"158"},{"station":"fsb","name":"抚顺北","type":"FET","simple":"fushunbei","base":"fsb","code":"159"},{"station":"fsh","name":"佛山","type":"FSQ","simple":"foshan","base":"fs","code":"160"},{"station":"fxn","name":"阜新南","type":"FXD","simple":"fuxinnan","base":"fxn","code":"161"},{"station":"fya","name":"阜阳","type":"FYH","simple":"fuyang","base":"fy","code":"162"},{"station":"gem","name":"格尔木","type":"GRO","simple":"geermu","base":"gem","code":"163"},{"station":"gha","name":"广汉","type":"GHW","simple":"guanghan","base":"gh","code":"164"},{"station":"gji","name":"古交","type":"GJV","simple":"gujiao","base":"gj","code":"165"},{"station":"glb","name":"桂林北","type":"GBZ","simple":"guilinbei","base":"glb","code":"166"},{"station":"gli","name":"古莲","type":"GRX","simple":"gulian","base":"gl","code":"167"},{"station":"gli","name":"桂林","type":"GLZ","simple":"guilin","base":"gl","code":"168"},{"station":"gsh","name":"固始","type":"GXN","simple":"gushi","base":"gs","code":"169"},{"station":"gsh","name":"广水","type":"GSN","simple":"guangshui","base":"gs","code":"170"},{"station":"gta","name":"干塘","type":"GNJ","simple":"gantang","base":"gt","code":"171"},{"station":"gyu","name":"广元","type":"GYW","simple":"guangyuan","base":"gy","code":"172"},{"station":"gzb","name":"广州北","type":"GBQ","simple":"guangzhoubei","base":"gzb","code":"173"},{"station":"gzh","name":"赣州","type":"GZG","simple":"ganzhou","base":"gz","code":"174"},{"station":"gzl","name":"公主岭","type":"GLT","simple":"gongzhuling","base":"gzl","code":"175"},{"station":"gzn","name":"公主岭南","type":"GBT","simple":"gongzhulingnan","base":"gzln","code":"176"},{"station":"han","name":"淮安","type":"AUH","simple":"huaian","base":"ha","code":"177"},{"station":"hbe","name":"鹤北","type":"HMB","simple":"hebei","base":"hb","code":"178"},{"station":"hbe","name":"淮北","type":"HRH","simple":"huaibei","base":"hb","code":"179"},{"station":"hbi","name":"淮滨","type":"HVN","simple":"huaibin","base":"hb","code":"180"},{"station":"hbi","name":"河边","type":"HBV","simple":"hebian","base":"hb","code":"181"},{"station":"hch","name":"潢川","type":"KCN","simple":"huangchuan","base":"hc","code":"182"},{"station":"hch","name":"韩城","type":"HCY","simple":"hancheng","base":"hc","code":"183"},{"station":"hda","name":"邯郸","type":"HDP","simple":"handan","base":"hd","code":"184"},{"station":"hdz","name":"横道河子","type":"HDB","simple":"hengdaohezi","base":"hdhz","code":"185"},{"station":"hga","name":"鹤岗","type":"HGB","simple":"hegang","base":"hg","code":"186"},{"station":"hgt","name":"皇姑屯","type":"HTT","simple":"huanggutun","base":"hgt","code":"187"},{"station":"hgu","name":"红果","type":"HEM","simple":"hongguo","base":"hg","code":"188"},{"station":"hhe","name":"黑河","type":"HJB","simple":"heihe","base":"hh","code":"189"},{"station":"hhu","name":"怀化","type":"HHQ","simple":"huaihua","base":"hh","code":"190"},{"station":"hko","name":"汉口","type":"HKN","simple":"hankou","base":"hk","code":"191"},{"station":"hld","name":"葫芦岛","type":"HLD","simple":"huludao","base":"hld","code":"192"},{"station":"hle","name":"海拉尔","type":"HRX","simple":"hailaer","base":"hle","code":"193"},{"station":"hll","name":"霍林郭勒","type":"HWD","simple":"huolinguole","base":"hlgl","code":"194"},{"station":"hlu","name":"海伦","type":"HLB","simple":"hailun","base":"hl","code":"195"},{"station":"hma","name":"侯马","type":"HMV","simple":"houma","base":"hm","code":"196"},{"station":"hmi","name":"哈密","type":"HMR","simple":"hami","base":"hm","code":"197"},{"station":"hna","name":"淮南","type":"HAH","simple":"huainan","base":"hn","code":"198"},{"station":"hna","name":"桦南","type":"HNB","simple":"huanan","base":"hn","code":"199"},{"station":"hnx","name":"海宁西","type":"EUH","simple":"hainingxi","base":"hnx","code":"200"},{"station":"hqi","name":"鹤庆","type":"HQM","simple":"heqing","base":"hq","code":"201"},{"station":"hrb","name":"怀柔北","type":"HBP","simple":"huairoubei","base":"hrb","code":"202"},{"station":"hro","name":"怀柔","type":"HRP","simple":"huairou","base":"hr","code":"203"},{"station":"hsd","name":"黄石东","type":"OSN","simple":"huangshidong","base":"hsd","code":"204"},{"station":"hsh","name":"华山","type":"HSY","simple":"huashan","base":"hs","code":"205"},{"station":"hsh","name":"黄石","type":"HSN","simple":"huangshi","base":"hs","code":"206"},{"station":"hsh","name":"黄山","type":"HKH","simple":"huangshan","base":"hs","code":"207"},{"station":"hsh","name":"衡水","type":"HSP","simple":"hengshui","base":"hs","code":"208"},{"station":"hya","name":"衡阳","type":"HYQ","simple":"hengyang","base":"hy","code":"209"},{"station":"hze","name":"菏泽","type":"HIK","simple":"heze","base":"hz","code":"210"},{"station":"hzh","name":"贺州","type":"HXZ","simple":"hezhou","base":"hz","code":"211"},{"station":"hzh","name":"汉中","type":"HOY","simple":"hanzhong","base":"hz","code":"212"},{"station":"hzh","name":"惠州","type":"HCQ","simple":"huizhou","base":"hz","code":"213"},{"station":"jan","name":"吉安","type":"VAG","simple":"jian","base":"ja","code":"214"},{"station":"jan","name":"集安","type":"JAL","simple":"jian","base":"ja","code":"215"},{"station":"jbc","name":"江边村","type":"JBG","simple":"jiangbiancun","base":"jbc","code":"216"},{"station":"jch","name":"晋城","type":"JCF","simple":"jincheng","base":"jc","code":"217"},{"station":"jcj","name":"金城江","type":"JJZ","simple":"jinchengjiang","base":"jcj","code":"218"},{"station":"jdz","name":"景德镇","type":"JCG","simple":"jingdezhen","base":"jdz","code":"219"},{"station":"jfe","name":"嘉峰","type":"JFF","simple":"jiafeng","base":"jf","code":"220"},{"station":"jgq","name":"加格达奇","type":"JGX","simple":"jiagedaqi","base":"jgdq","code":"221"},{"station":"jgs","name":"井冈山","type":"JGG","simple":"jinggangshan","base":"jgs","code":"222"},{"station":"jhe","name":"蛟河","type":"JHL","simple":"jiaohe","base":"jh","code":"223"},{"station":"jhn","name":"金华南","type":"RNH","simple":"jinhuanan","base":"jhn","code":"224"},{"station":"jhu","name":"金华","type":"JBH","simple":"jinhua","base":"jh","code":"225"},{"station":"jji","name":"九江","type":"JJG","simple":"jiujiang","base":"jj","code":"226"},{"station":"jli","name":"吉林","type":"JLL","simple":"jilin","base":"jl","code":"227"},{"station":"jme","name":"荆门","type":"JMN","simple":"jingmen","base":"jm","code":"228"},{"station":"jms","name":"佳木斯","type":"JMB","simple":"jiamusi","base":"jms","code":"229"},{"station":"jni","name":"济宁","type":"JIK","simple":"jining","base":"jn","code":"230"},{"station":"jnn","name":"集宁南","type":"JAC","simple":"jiningnan","base":"jnn","code":"231"},{"station":"jqu","name":"酒泉","type":"JQJ","simple":"jiuquan","base":"jq","code":"232"},{"station":"jsh","name":"江山","type":"JUH","simple":"jiangshan","base":"js","code":"233"},{"station":"jsh","name":"吉首","type":"JIQ","simple":"jishou","base":"js","code":"234"},{"station":"jta","name":"九台","type":"JTL","simple":"jiutai","base":"jt","code":"235"},{"station":"jts","name":"镜铁山","type":"JVJ","simple":"jingtieshan","base":"jts","code":"236"},{"station":"jxi","name":"鸡西","type":"JXB","simple":"jixi","base":"jx","code":"237"},{"station":"jxi","name":"蓟县","type":"JKP","simple":"jixian","base":"jx","code":"238"},{"station":"jxx","name":"绩溪县","type":"JRH","simple":"jixixian","base":"jxx","code":"239"},{"station":"jyg","name":"嘉峪关","type":"JGJ","simple":"jiayuguan","base":"jyg","code":"240"},{"station":"jyo","name":"江油","type":"JFW","simple":"jiangyou","base":"jy","code":"241"},{"station":"jzh","name":"锦州","type":"JZD","simple":"jinzhou","base":"jz","code":"242"},{"station":"jzh","name":"金州","type":"JZT","simple":"jinzhou","base":"jz","code":"243"},{"station":"kel","name":"库尔勒","type":"KLR","simple":"kuerle","base":"kel","code":"244"},{"station":"kfe","name":"开封","type":"KFF","simple":"kaifeng","base":"kf","code":"245"},{"station":"kla","name":"岢岚","type":"KLV","simple":"kelan","base":"kl","code":"246"},{"station":"kli","name":"凯里","type":"KLW","simple":"kaili","base":"kl","code":"247"},{"station":"ksh","name":"喀什","type":"KSR","simple":"kashi","base":"ks","code":"248"},{"station":"ksn","name":"昆山南","type":"KNH","simple":"kunshannan","base":"ksn","code":"249"},{"station":"ktu","name":"奎屯","type":"KTR","simple":"kuitun","base":"kt","code":"250"},{"station":"kyu","name":"开原","type":"KYT","simple":"kaiyuan","base":"ky","code":"251"},{"station":"lan","name":"六安","type":"UAH","simple":"luan","base":"la","code":"252"},{"station":"lba","name":"灵宝","type":"LBF","simple":"lingbao","base":"lb","code":"253"},{"station":"lcg","name":"芦潮港","type":"UCH","simple":"luchaogang","base":"lcg","code":"254"},{"station":"lch","name":"隆昌","type":"LCW","simple":"longchang","base":"lc","code":"255"},{"station":"lch","name":"陆川","type":"LKZ","simple":"luchuan","base":"lc","code":"256"},{"station":"lch","name":"利川","type":"LCN","simple":"lichuan","base":"lc","code":"257"},{"station":"lch","name":"临川","type":"LCG","simple":"linchuan","base":"lc","code":"258"},{"station":"lch","name":"潞城","type":"UTP","simple":"lucheng","base":"lc","code":"259"},{"station":"lda","name":"鹿道","type":"LDL","simple":"ludao","base":"ld","code":"260"},{"station":"ldi","name":"娄底","type":"LDQ","simple":"loudi","base":"ld","code":"261"},{"station":"lfe","name":"临汾","type":"LFV","simple":"linfen","base":"lf","code":"262"},{"station":"lgz","name":"良各庄","type":"LGP","simple":"lianggezhuang","base":"lgz","code":"263"},{"station":"lhe","name":"临河","type":"LHC","simple":"linhe","base":"lh","code":"264"},{"station":"lhe","name":"漯河","type":"LON","simple":"luohe","base":"lh","code":"265"},{"station":"lhu","name":"绿化","type":"LWJ","simple":"lvhua","base":"lh","code":"266"},{"station":"lhu","name":"隆化","type":"UHP","simple":"longhua","base":"lh","code":"267"},{"station":"lji","name":"丽江","type":"LHM","simple":"lijiang","base":"lj","code":"268"},{"station":"lji","name":"临江","type":"LQL","simple":"linjiang","base":"lj","code":"269"},{"station":"lji","name":"龙井","type":"LJL","simple":"longjing","base":"lj","code":"270"},{"station":"lli","name":"吕梁","type":"LHV","simple":"lvliang","base":"ll","code":"271"},{"station":"lli","name":"醴陵","type":"LLG","simple":"liling","base":"ll","code":"272"},{"station":"lln","name":"柳林南","type":"LKV","simple":"liulinnan","base":"lln","code":"273"},{"station":"lpi","name":"滦平","type":"UPP","simple":"luanping","base":"lp","code":"274"},{"station":"lps","name":"六盘水","type":"UMW","simple":"liupanshui","base":"lps","code":"275"},{"station":"lqi","name":"灵丘","type":"LVV","simple":"lingqiu","base":"lq","code":"276"},{"station":"lsh","name":"旅顺","type":"LST","simple":"lvshun","base":"ls","code":"277"},{"station":"lxi","name":"陇西","type":"LXJ","simple":"longxi","base":"lx","code":"278"},{"station":"lxi","name":"澧县","type":"LEQ","simple":"lixian","base":"lx","code":"279"},{"station":"lxi","name":"兰溪","type":"LWH","simple":"lanxi","base":"lx","code":"280"},{"station":"lxi","name":"临西","type":"UEP","simple":"linxi","base":"lx","code":"281"},{"station":"lya","name":"龙岩","type":"LYS","simple":"longyan","base":"ly","code":"282"},{"station":"lya","name":"耒阳","type":"LYQ","simple":"leiyang","base":"ly","code":"283"},{"station":"lya","name":"洛阳","type":"LYF","simple":"luoyang","base":"ly","code":"284"},{"station":"lyd","name":"洛阳东","type":"LDF","simple":"luoyangdong","base":"lyd","code":"285"},{"station":"lyd","name":"连云港东","type":"UKH","simple":"lianyungangdong","base":"lygd","code":"286"},{"station":"lyi","name":"临沂","type":"LVK","simple":"linyi","base":"ly","code":"287"},{"station":"lym","name":"洛阳龙门","type":"LLF","simple":"luoyanglongmen","base":"lylm","code":"288"},{"station":"lyu","name":"柳园","type":"DHR","simple":"liuyuan","base":"ly","code":"289"},{"station":"lyu","name":"凌源","type":"LYD","simple":"lingyuan","base":"ly","code":"290"},{"station":"lyu","name":"辽源","type":"LYL","simple":"liaoyuan","base":"ly","code":"291"},{"station":"lzh","name":"立志","type":"LZX","simple":"lizhi","base":"lz","code":"292"},{"station":"lzh","name":"柳州","type":"LZZ","simple":"liuzhou","base":"lz","code":"293"},{"station":"lzh","name":"辽中","type":"LZD","simple":"liaozhong","base":"lz","code":"294"},{"station":"mch","name":"麻城","type":"MCN","simple":"macheng","base":"mc","code":"295"},{"station":"mdh","name":"免渡河","type":"MDX","simple":"mianduhe","base":"mdh","code":"296"},{"station":"mdj","name":"牡丹江","type":"MDB","simple":"mudanjiang","base":"mdj","code":"297"},{"station":"meg","name":"莫尔道嘎","type":"MRX","simple":"moerdaoga","base":"medg","code":"298"},{"station":"mgu","name":"满归","type":"MHX","simple":"mangui","base":"mg","code":"299"},{"station":"mgu","name":"明光","type":"MGH","simple":"mingguang","base":"mg","code":"300"},{"station":"mhe","name":"漠河","type":"MVX","simple":"mohe","base":"mh","code":"301"},{"station":"mmi","name":"茂名","type":"MDQ","simple":"maoming","base":"mm","code":"302"},{"station":"mmx","name":"茂名西","type":"MMZ","simple":"maomingxi","base":"mmx","code":"303"},{"station":"msh","name":"密山","type":"MSB","simple":"mishan","base":"ms","code":"304"},{"station":"msj","name":"马三家","type":"MJT","simple":"masanjia","base":"msj","code":"305"},{"station":"mwe","name":"麻尾","type":"VAW","simple":"mawei","base":"mw","code":"306"},{"station":"mya","name":"绵阳","type":"MYW","simple":"mianyang","base":"my","code":"307"},{"station":"mzh","name":"梅州","type":"MOQ","simple":"meizhou","base":"mz","code":"308"},{"station":"mzl","name":"满洲里","type":"MLX","simple":"manzhouli","base":"mzl","code":"309"},{"station":"nbd","name":"宁波东","type":"NVH","simple":"ningbodong","base":"nbd","code":"310"},{"station":"nbo","name":"宁波","type":"NGH","simple":"ningbo","base":"nb","code":"311"},{"station":"nch","name":"南岔","type":"NCB","simple":"nancha","base":"nc","code":"312"},{"station":"nch","name":"南充","type":"NCW","simple":"nanchong","base":"nc","code":"313"},{"station":"nda","name":"南丹","type":"NDZ","simple":"nandan","base":"nd","code":"314"},{"station":"ndm","name":"南大庙","type":"NMP","simple":"nandamiao","base":"ndm","code":"315"},{"station":"nfe","name":"南芬","type":"NFT","simple":"nanfen","base":"nf","code":"316"},{"station":"nhe","name":"讷河","type":"NHX","simple":"nehe","base":"nh","code":"317"},{"station":"nji","name":"嫩江","type":"NGX","simple":"nenjiang","base":"nj","code":"318"},{"station":"nji","name":"内江","type":"NJW","simple":"neijiang","base":"nj","code":"319"},{"station":"npi","name":"南平","type":"NPS","simple":"nanping","base":"np","code":"320"},{"station":"nto","name":"南通","type":"NUH","simple":"nantong","base":"nt","code":"321"},{"station":"nya","name":"南阳","type":"NFF","simple":"nanyang","base":"ny","code":"322"},{"station":"nzs","name":"碾子山","type":"NZX","simple":"nianzishan","base":"nzs","code":"323"},{"station":"pds","name":"平顶山","type":"PEN","simple":"pingdingshan","base":"pds","code":"324"},{"station":"pji","name":"盘锦","type":"PVD","simple":"panjin","base":"pj","code":"325"},{"station":"pli","name":"平凉","type":"PIJ","simple":"pingliang","base":"pl","code":"326"},{"station":"pln","name":"平凉南","type":"POJ","simple":"pingliangnan","base":"pln","code":"327"},{"station":"pqu","name":"平泉","type":"PQP","simple":"pingquan","base":"pq","code":"328"},{"station":"psh","name":"坪石","type":"PSQ","simple":"pingshi","base":"ps","code":"329"},{"station":"pxi","name":"萍乡","type":"PXG","simple":"pingxiang","base":"px","code":"330"},{"station":"pxi","name":"凭祥","type":"PXZ","simple":"pingxiang","base":"px","code":"331"},{"station":"pxx","name":"郫县西","type":"PCW","simple":"pixianxi","base":"pxx","code":"332"},{"station":"pzh","name":"攀枝花","type":"PRW","simple":"panzhihua","base":"pzh","code":"333"},{"station":"qch","name":"蕲春","type":"QRN","simple":"qichun","base":"qc","code":"334"},{"station":"qcs","name":"青城山","type":"QSW","simple":"qingchengshan","base":"qcs","code":"335"},{"station":"qda","name":"青岛","type":"QDK","simple":"qingdao","base":"qd","code":"336"},{"station":"qhc","name":"清河城","type":"QYP","simple":"qinghecheng","base":"qhc","code":"337"},{"station":"qji","name":"曲靖","type":"QJM","simple":"qujing","base":"qj","code":"338"},{"station":"qji","name":"黔江","type":"QNW","simple":"qianjiang","base":"qj","code":"339"},{"station":"qjz","name":"前进镇","type":"QEB","simple":"qianjinzhen","base":"qjz","code":"340"},{"station":"qqe","name":"齐齐哈尔","type":"QHX","simple":"qiqihaer","base":"qqhe","code":"341"},{"station":"qth","name":"七台河","type":"QTB","simple":"qitaihe","base":"qth","code":"342"},{"station":"qxi","name":"沁县","type":"QVV","simple":"qinxian","base":"qx","code":"343"},{"station":"qzd","name":"泉州东","type":"QRS","simple":"quanzhoudong","base":"qzd","code":"344"},{"station":"qzh","name":"泉州","type":"QYS","simple":"quanzhou","base":"qz","code":"345"},{"station":"qzh","name":"衢州","type":"QEH","simple":"quzhou","base":"qz","code":"346"},{"station":"ran","name":"融安","type":"RAZ","simple":"rongan","base":"ra","code":"347"},{"station":"rjg","name":"汝箕沟","type":"RQJ","simple":"rujigou","base":"rqg","code":"348"},{"station":"rji","name":"瑞金","type":"RJG","simple":"ruijin","base":"rj","code":"349"},{"station":"rzh","name":"日照","type":"RZK","simple":"rizhao","base":"rz","code":"350"},{"station":"scp","name":"双城堡","type":"SCB","simple":"shuangchengpu","base":"scb","code":"351"},{"station":"sfh","name":"绥芬河","type":"SFB","simple":"suifenhe","base":"sfh","code":"352"},{"station":"sgd","name":"韶关东","type":"SGQ","simple":"shaoguandong","base":"sgd","code":"353"},{"station":"shg","name":"山海关","type":"SHD","simple":"shanhaiguan","base":"shg","code":"354"},{"station":"shu","name":"绥化","type":"SHB","simple":"suihua","base":"sh","code":"355"},{"station":"sjf","name":"三间房","type":"SFX","simple":"sanjianfang","base":"sjf","code":"356"},{"station":"sjt","name":"苏家屯","type":"SXT","simple":"sujiatun","base":"sjt","code":"357"},{"station":"sla","name":"舒兰","type":"SLL","simple":"shulan","base":"sl","code":"358"},{"station":"smi","name":"三明","type":"SMS","simple":"sanming","base":"sm","code":"359"},{"station":"smu","name":"神木","type":"OMY","simple":"shenmu","base":"sm","code":"360"},{"station":"smx","name":"三门峡","type":"SMF","simple":"sanmenxia","base":"smx","code":"361"},{"station":"sna","name":"商南","type":"ONY","simple":"shangnan","base":"sn","code":"362"},{"station":"sni","name":"遂宁","type":"NIW","simple":"suining","base":"sn","code":"363"},{"station":"spi","name":"四平","type":"SPT","simple":"siping","base":"sp","code":"364"},{"station":"sqi","name":"商丘","type":"SQF","simple":"shangqiu","base":"sq","code":"365"},{"station":"sra","name":"上饶","type":"SRG","simple":"shangrao","base":"sr","code":"366"},{"station":"ssh","name":"韶山","type":"SSQ","simple":"shaoshan","base":"ss","code":"367"},{"station":"sso","name":"宿松","type":"OAH","simple":"susong","base":"ss","code":"368"},{"station":"sto","name":"汕头","type":"OTQ","simple":"shantou","base":"st","code":"369"},{"station":"swu","name":"邵武","type":"SWS","simple":"shaowu","base":"sw","code":"370"},{"station":"sxi","name":"涉县","type":"OEP","simple":"shexian","base":"sx","code":"371"},{"station":"sya","name":"三亚","type":"SEQ","simple":"sanya","base":"sy","code":"372"},{"station":"sya","name":"三 亚","type":"JUQ","simple":"sanya","base":"sy","code":"373"},{"station":"sya","name":"邵阳","type":"SYQ","simple":"shaoyang","base":"sy","code":"374"},{"station":"sya","name":"十堰","type":"SNN","simple":"shiyan","base":"sy","code":"375"},{"station":"sys","name":"双鸭山","type":"SSB","simple":"shuangyashan","base":"sys","code":"376"},{"station":"syu","name":"松原","type":"VYT","simple":"songyuan","base":"sy","code":"377"},{"station":"szh","name":"深圳","type":"SZQ","simple":"shenzhen","base":"sz","code":"378"},{"station":"szh","name":"苏州","type":"SZH","simple":"suzhou","base":"sz","code":"379"},{"station":"szh","name":"随州","type":"SZN","simple":"suizhou","base":"sz","code":"380"},{"station":"szh","name":"宿州","type":"OXH","simple":"suzhou","base":"sz","code":"381"},{"station":"szh","name":"朔州","type":"SUV","simple":"shuozhou","base":"sz","code":"382"},{"station":"szx","name":"深圳西","type":"OSQ","simple":"shenzhenxi","base":"szx","code":"383"},{"station":"tba","name":"塘豹","type":"TBQ","simple":"tangbao","base":"tb","code":"384"},{"station":"teq","name":"塔尔气","type":"TVX","simple":"taerqi","base":"teq","code":"385"},{"station":"tgu","name":"潼关","type":"TGY","simple":"tongguan","base":"tg","code":"386"},{"station":"tgu","name":"塘沽","type":"TGP","simple":"tanggu","base":"tg","code":"387"},{"station":"the","name":"塔河","type":"TXX","simple":"tahe","base":"th","code":"388"},{"station":"thu","name":"通化","type":"THL","simple":"tonghua","base":"th","code":"389"},{"station":"tla","name":"泰来","type":"TLX","simple":"tailai","base":"tl","code":"390"},{"station":"tlf","name":"吐鲁番","type":"TFR","simple":"tulufan","base":"tlf","code":"391"},{"station":"tli","name":"通辽","type":"TLD","simple":"tongliao","base":"tl","code":"392"},{"station":"tli","name":"铁岭","type":"TLT","simple":"tieling","base":"tl","code":"393"},{"station":"tlz","name":"陶赖昭","type":"TPT","simple":"taolaizhao","base":"tlz","code":"394"},{"station":"tme","name":"图们","type":"TML","simple":"tumen","base":"tm","code":"395"},{"station":"tre","name":"铜仁","type":"RDQ","simple":"tongren","base":"tr","code":"396"},{"station":"tsb","name":"唐山北","type":"FUP","simple":"tangshanbei","base":"tsb","code":"397"},{"station":"tsf","name":"田师府","type":"TFT","simple":"tianshifu","base":"tsf","code":"398"},{"station":"tsh","name":"泰山","type":"TAK","simple":"taishan","base":"ts","code":"399"},{"station":"tsh","name":"唐山","type":"TSP","simple":"tangshan","base":"ts","code":"400"},{"station":"tsh","name":"天水","type":"TSJ","simple":"tianshui","base":"ts","code":"401"},{"station":"typ","name":"通远堡","type":"TYT","simple":"tongyuanpu","base":"tyb","code":"402"},{"station":"tys","name":"太阳升","type":"TQT","simple":"taiyangsheng","base":"tys","code":"403"},{"station":"tzh","name":"泰州","type":"UTH","simple":"taizhou","base":"tz","code":"404"},{"station":"tzi","name":"桐梓","type":"TZW","simple":"tongzi","base":"tz","code":"405"},{"station":"tzx","name":"通州西","type":"TAP","simple":"tongzhouxi","base":"tzx","code":"406"},{"station":"wch","name":"五常","type":"WCB","simple":"wuchang","base":"wc","code":"407"},{"station":"wch","name":"武昌","type":"WCN","simple":"wuchang","base":"wc","code":"408"},{"station":"wfd","name":"瓦房店","type":"WDT","simple":"wafangdian","base":"wfd","code":"409"},{"station":"wha","name":"威海","type":"WKK","simple":"weihai","base":"wh","code":"410"},{"station":"whu","name":"芜湖","type":"WHH","simple":"wuhu","base":"wh","code":"411"},{"station":"whx","name":"乌海西","type":"WXC","simple":"wuhaixi","base":"whx","code":"412"},{"station":"wjt","name":"吴家屯","type":"WJT","simple":"wujiatun","base":"wjt","code":"413"},{"station":"wlo","name":"武隆","type":"WLW","simple":"wulong","base":"wl","code":"414"},{"station":"wlt","name":"乌兰浩特","type":"WWT","simple":"wulanhaote","base":"wlht","code":"415"},{"station":"wna","name":"渭南","type":"WNY","simple":"weinan","base":"wn","code":"416"},{"station":"wsh","name":"威舍","type":"WSM","simple":"weishe","base":"ws","code":"417"},{"station":"wts","name":"歪头山","type":"WIT","simple":"waitoushan","base":"wts","code":"418"},{"station":"wwe","name":"武威","type":"WUJ","simple":"wuwei","base":"ww","code":"419"},{"station":"wwn","name":"武威南","type":"WWJ","simple":"wuweinan","base":"wwn","code":"420"},{"station":"wxi","name":"无锡","type":"WXH","simple":"wuxi","base":"wx","code":"421"},{"station":"wxi","name":"乌西","type":"WXR","simple":"wuxi","base":"wx","code":"422"},{"station":"wyl","name":"乌伊岭","type":"WPB","simple":"wuyiling","base":"wyl","code":"423"},{"station":"wys","name":"武夷山","type":"WAS","simple":"wuyishan","base":"wys","code":"424"},{"station":"wyu","name":"万源","type":"WYY","simple":"wanyuan","base":"wy","code":"425"},{"station":"wzh","name":"万州","type":"WYW","simple":"wanzhou","base":"wz","code":"426"},{"station":"wzh","name":"梧州","type":"WZZ","simple":"wuzhou","base":"wz","code":"427"},{"station":"wzh","name":"温州","type":"RZH","simple":"wenzhou","base":"wz","code":"428"},{"station":"wzn","name":"温州南","type":"VRH","simple":"wenzhounan","base":"wzn","code":"429"},{"station":"xch","name":"西昌","type":"ECW","simple":"xichang","base":"xc","code":"430"},{"station":"xch","name":"许昌","type":"XCF","simple":"xuchang","base":"xc","code":"431"},{"station":"xcn","name":"西昌南","type":"ENW","simple":"xichangnan","base":"xcn","code":"432"},{"station":"xfa","name":"香坊","type":"XFB","simple":"xiangfang","base":"xf","code":"433"},{"station":"xga","name":"轩岗","type":"XGV","simple":"xuangang","base":"xg","code":"434"},{"station":"xgu","name":"兴国","type":"EUG","simple":"xingguo","base":"xg","code":"435"},{"station":"xha","name":"宣汉","type":"XHY","simple":"xuanhan","base":"xh","code":"436"},{"station":"xhu","name":"新会","type":"EFQ","simple":"xinhui","base":"xh","code":"437"},{"station":"xhu","name":"新晃","type":"XLQ","simple":"xinhuang","base":"xh","code":"438"},{"station":"xlt","name":"锡林浩特","type":"XTC","simple":"xilinhaote","base":"xlht","code":"439"},{"station":"xlx","name":"兴隆县","type":"EXP","simple":"xinglongxian","base":"xlx","code":"440"},{"station":"xmb","name":"厦门北","type":"XKS","simple":"xiamenbei","base":"xmb","code":"441"},{"station":"xme","name":"厦门","type":"XMS","simple":"xiamen","base":"xm","code":"442"},{"station":"xmq","name":"厦门高崎","type":"XBS","simple":"xiamengaoqi","base":"xmgq","code":"443"},{"station":"xsh","name":"小市","type":"XST","simple":"xiaoshi","base":"xs","code":"444"},{"station":"xsh","name":"秀山","type":"ETW","simple":"xiushan","base":"xs","code":"445"},{"station":"xta","name":"向塘","type":"XTG","simple":"xiangtang","base":"xt","code":"446"},{"station":"xwe","name":"宣威","type":"XWM","simple":"xuanwei","base":"xw","code":"447"},{"station":"xxi","name":"新乡","type":"XXF","simple":"xinxiang","base":"xx","code":"448"},{"station":"xya","name":"信阳","type":"XUN","simple":"xinyang","base":"xy","code":"449"},{"station":"xya","name":"咸阳","type":"XYY","simple":"xianyang","base":"xy","code":"450"},{"station":"xya","name":"襄阳","type":"XFN","simple":"xiangyang","base":"xy","code":"451"},{"station":"xyc","name":"熊岳城","type":"XYT","simple":"xiongyuecheng","base":"xyc","code":"452"},{"station":"xyi","name":"兴义","type":"XRZ","simple":"xingyi","base":"xy","code":"453"},{"station":"xyi","name":"新沂","type":"VIH","simple":"xinyi","base":"xy","code":"454"},{"station":"xyu","name":"新余","type":"XUG","simple":"xinyu","base":"xy","code":"455"},{"station":"xzh","name":"徐州","type":"XCH","simple":"xuzhou","base":"xz","code":"456"},{"station":"yan","name":"延安","type":"YWY","simple":"yanan","base":"ya","code":"457"},{"station":"ybi","name":"宜宾","type":"YBW","simple":"yibin","base":"yb","code":"458"},{"station":"ybn","name":"亚布力南","type":"YWB","simple":"yabulinan","base":"ybln","code":"459"},{"station":"ybs","name":"叶柏寿","type":"YBD","simple":"yebaishou","base":"ybs","code":"460"},{"station":"ycd","name":"宜昌东","type":"HAN","simple":"yichangdong","base":"ycd","code":"461"},{"station":"ych","name":"永川","type":"YCW","simple":"yongchuan","base":"yc","code":"462"},{"station":"ych","name":"宜昌","type":"YCN","simple":"yichang","base":"yc","code":"463"},{"station":"ych","name":"盐城","type":"AFH","simple":"yancheng","base":"yc","code":"464"},{"station":"ych","name":"运城","type":"YNV","simple":"yuncheng","base":"yc","code":"465"},{"station":"ych","name":"伊春","type":"YCB","simple":"yichun","base":"yc","code":"466"},{"station":"yci","name":"榆次","type":"YCV","simple":"yuci","base":"yc","code":"467"},{"station":"ycu","name":"杨村","type":"YBP","simple":"yangcun","base":"yc","code":"468"},{"station":"ycx","name":"宜春西","type":"YCG","simple":"yichunxi","base":"ycx","code":"469"},{"station":"yes","name":"伊尔施","type":"YET","simple":"yiershi","base":"yes","code":"470"},{"station":"yga","name":"燕岗","type":"YGW","simple":"yangang","base":"yg","code":"471"},{"station":"yji","name":"永济","type":"YIV","simple":"yongji","base":"yj","code":"472"},{"station":"yji","name":"延吉","type":"YJL","simple":"yanji","base":"yj","code":"473"},{"station":"yko","name":"营口","type":"YKT","simple":"yingkou","base":"yk","code":"474"},{"station":"yks","name":"牙克石","type":"YKX","simple":"yakeshi","base":"yks","code":"475"},{"station":"yli","name":"阎良","type":"YNY","simple":"yanliang","base":"yl","code":"476"},{"station":"yli","name":"玉林","type":"YLZ","simple":"yulin","base":"yl","code":"477"},{"station":"yli","name":"榆林","type":"ALY","simple":"yulin","base":"yl","code":"478"},{"station":"ylw","name":"亚龙湾","type":"TWQ","simple":"yalongwan","base":"ylw","code":"479"},{"station":"ymp","name":"一面坡","type":"YPB","simple":"yimianpo","base":"ymp","code":"480"},{"station":"yni","name":"伊宁","type":"YMR","simple":"yining","base":"yn","code":"481"},{"station":"ypg","name":"阳平关","type":"YAY","simple":"yangpingguan","base":"ypg","code":"482"},{"station":"ypi","name":"玉屏","type":"YZW","simple":"yuping","base":"yp","code":"483"},{"station":"ypi","name":"原平","type":"YPV","simple":"yuanping","base":"yp","code":"484"},{"station":"yqi","name":"延庆","type":"YNP","simple":"yanqing","base":"yq","code":"485"},{"station":"yqq","name":"阳泉曲","type":"YYV","simple":"yangquanqu","base":"yqq","code":"486"},{"station":"yqu","name":"玉泉","type":"YQB","simple":"yuquan","base":"yq","code":"487"},{"station":"yqu","name":"阳泉","type":"AQP","simple":"yangquan","base":"yq","code":"488"},{"station":"ysh","name":"营山","type":"NUW","simple":"yingshan","base":"ys","code":"489"},{"station":"ysh","name":"玉山","type":"YNG","simple":"yushan","base":"ys","code":"490"},{"station":"ysh","name":"燕山","type":"AOP","simple":"yanshan","base":"ys","code":"491"},{"station":"ysh","name":"榆树","type":"YRT","simple":"yushu","base":"ys","code":"492"},{"station":"yta","name":"鹰潭","type":"YTG","simple":"yingtan","base":"yt","code":"493"},{"station":"yta","name":"烟台","type":"YAK","simple":"yantai","base":"yt","code":"494"},{"station":"yth","name":"伊图里河","type":"YEX","simple":"yitulihe","base":"ytlh","code":"495"},{"station":"ytx","name":"玉田县","type":"ATP","simple":"yutianxian","base":"ytx","code":"496"},{"station":"ywu","name":"义乌","type":"YWH","simple":"yiwu","base":"yw","code":"497"},{"station":"yxi","name":"阳新","type":"YON","simple":"yangxin","base":"yx","code":"498"},{"station":"yxi","name":"义县","type":"YXD","simple":"yixian","base":"yx","code":"499"},{"station":"yya","name":"益阳","type":"AEQ","simple":"yiyang","base":"yy","code":"500"},{"station":"yya","name":"岳阳","type":"YYQ","simple":"yueyang","base":"yy","code":"501"},{"station":"yzh","name":"崖州","type":"YUQ","simple":"yazhou","base":"yz","code":"502"},{"station":"yzh","name":"永州","type":"AOQ","simple":"yongzhou","base":"yz","code":"503"},{"station":"yzh","name":"扬州","type":"YLH","simple":"yangzhou","base":"yz","code":"504"},{"station":"zbo","name":"淄博","type":"ZBK","simple":"zibo","base":"zb","code":"505"},{"station":"zcd","name":"镇城底","type":"ZDV","simple":"zhenchengdi","base":"zcd","code":"506"},{"station":"zgo","name":"自贡","type":"ZGW","simple":"zigong","base":"zg","code":"507"},{"station":"zha","name":"珠海","type":"ZHQ","simple":"zhuhai","base":"zh","code":"508"},{"station":"zhb","name":"珠海北","type":"ZIQ","simple":"zhuhaibei","base":"zhb","code":"509"},{"station":"zji","name":"湛江","type":"ZJZ","simple":"zhanjiang","base":"zj","code":"510"},{"station":"zji","name":"镇江","type":"ZJH","simple":"zhenjiang","base":"zj","code":"511"},{"station":"zjj","name":"张家界","type":"DIQ","simple":"zhangjiajie","base":"zjj","code":"512"},{"station":"zjk","name":"张家口","type":"ZKP","simple":"zhangjiakou","base":"zjk","code":"513"},{"station":"zjn","name":"张家口南","type":"ZMP","simple":"zhangjiakounan","base":"zjkn","code":"514"},{"station":"zko","name":"周口","type":"ZKN","simple":"zhoukou","base":"zk","code":"515"},{"station":"zlm","name":"哲里木","type":"ZLC","simple":"zhelimu","base":"zlm","code":"516"},{"station":"zlt","name":"扎兰屯","type":"ZTX","simple":"zhalantun","base":"zlt","code":"517"},{"station":"zmd","name":"驻马店","type":"ZDN","simple":"zhumadian","base":"zmd","code":"518"},{"station":"zqi","name":"肇庆","type":"ZVQ","simple":"zhaoqing","base":"zq","code":"519"},{"station":"zsz","name":"周水子","type":"ZIT","simple":"zhoushuizi","base":"zsz","code":"520"},{"station":"zto","name":"昭通","type":"ZDW","simple":"zhaotong","base":"zt","code":"521"},{"station":"zwe","name":"中卫","type":"ZWJ","simple":"zhongwei","base":"zw","code":"522"},{"station":"zya","name":"资阳","type":"ZYW","simple":"ziyang","base":"zy","code":"523"},{"station":"zyi","name":"遵义","type":"ZIW","simple":"zunyi","base":"zy","code":"524"},{"station":"zzh","name":"枣庄","type":"ZEK","simple":"zaozhuang","base":"zz","code":"525"},{"station":"zzh","name":"资中","type":"ZZW","simple":"zizhong","base":"zz","code":"526"},{"station":"zzh","name":"株洲","type":"ZZQ","simple":"zhuzhou","base":"zz","code":"527"},{"station":"zzx","name":"枣庄西","type":"ZFK","simple":"zaozhuangxi","base":"zzx","code":"528"},{"station":"aax","name":"昂昂溪","type":"AAX","simple":"angangxi","base":"aax","code":"529"},{"station":"ach","name":"阿城","type":"ACB","simple":"acheng","base":"ac","code":"530"},{"station":"ada","name":"安达","type":"ADX","simple":"anda","base":"ad","code":"531"},{"station":"ade","name":"安德","type":"ARW","simple":"ande","base":"ad","code":"532"},{"station":"adi","name":"安定","type":"ADP","simple":"anding","base":"ad","code":"533"},{"station":"agu","name":"安广","type":"AGT","simple":"anguang","base":"ag","code":"534"},{"station":"ahe","name":"艾河","type":"AHP","simple":"aihe","base":"ah","code":"535"},{"station":"ahu","name":"安化","type":"PKQ","simple":"anhua","base":"ah","code":"536"},{"station":"ajc","name":"艾家村","type":"AJJ","simple":"aijiacun","base":"ajc","code":"537"},{"station":"aji","name":"鳌江","type":"ARH","simple":"aojiang","base":"aj","code":"538"},{"station":"aji","name":"安家","type":"AJB","simple":"anjia","base":"aj","code":"539"},{"station":"aji","name":"阿金","type":"AJD","simple":"ajin","base":"aj","code":"540"},{"station":"akt","name":"阿克陶","type":"AER","simple":"aketao","base":"akt","code":"541"},{"station":"aky","name":"安口窑","type":"AYY","simple":"ankouyao","base":"aky","code":"542"},{"station":"alg","name":"敖力布告","type":"ALD","simple":"aolibugao","base":"albg","code":"543"},{"station":"alo","name":"安龙","type":"AUZ","simple":"anlong","base":"al","code":"544"},{"station":"als","name":"阿龙山","type":"ASX","simple":"alongshan","base":"als","code":"545"},{"station":"alu","name":"安陆","type":"ALN","simple":"anlu","base":"al","code":"546"},{"station":"ame","name":"阿木尔","type":"JTX","simple":"amuer","base":"ame","code":"547"},{"station":"anz","name":"阿南庄","type":"AZM","simple":"ananzhuang","base":"anz","code":"548"},{"station":"aqx","name":"安庆西","type":"APH","simple":"anqingxi","base":"aqx","code":"549"},{"station":"asx","name":"鞍山西","type":"AXT","simple":"anshanxi","base":"asx","code":"550"},{"station":"ata","name":"安塘","type":"ATV","simple":"antang","base":"at","code":"551"},{"station":"atb","name":"安亭北","type":"ASH","simple":"antingbei","base":"atb","code":"552"},{"station":"ats","name":"阿图什","type":"ATR","simple":"atushi","base":"ats","code":"553"},{"station":"atu","name":"安图","type":"ATL","simple":"antu","base":"at","code":"554"},{"station":"axi","name":"安溪","type":"AXS","simple":"anxi","base":"ax","code":"555"},{"station":"bao","name":"博鳌","type":"BWQ","simple":"boao","base":"ba","code":"556"},{"station":"bbe","name":"北碚","type":"BPW","simple":"beibei","base":"bb","code":"557"},{"station":"bbg","name":"白壁关","type":"BGV","simple":"baibiguan","base":"bbg","code":"558"},{"station":"bbn","name":"蚌埠南","type":"BMH","simple":"bengbunan","base":"bbn","code":"559"},{"station":"bch","name":"巴楚","type":"BCR","simple":"bachu","base":"bc","code":"560"},{"station":"bch","name":"板城","type":"BUP","simple":"bancheng","base":"bc","code":"561"},{"station":"bdh","name":"北戴河","type":"BEP","simple":"beidaihe","base":"bdh","code":"562"},{"station":"bdi","name":"保定","type":"BDP","simple":"baoding","base":"bd","code":"563"},{"station":"bdi","name":"宝坻","type":"BPP","simple":"baodi","base":"bd","code":"564"},{"station":"bdl","name":"八达岭","type":"ILP","simple":"badaling","base":"bdl","code":"565"},{"station":"bdo","name":"巴东","type":"BNN","simple":"badong","base":"bd","code":"566"},{"station":"bgu","name":"柏果","type":"BGM","simple":"baiguo","base":"bg","code":"567"},{"station":"bha","name":"布海","type":"BUT","simple":"buhai","base":"bh","code":"568"},{"station":"bhd","name":"白河东","type":"BIY","simple":"baihedong","base":"bhd","code":"569"},{"station":"bho","name":"贲红","type":"BVC","simple":"benhong","base":"bh","code":"570"},{"station":"bhs","name":"宝华山","type":"BWH","simple":"baohuashan","base":"bhs","code":"571"},{"station":"bhx","name":"白河县","type":"BEY","simple":"baihexian","base":"bhx","code":"572"},{"station":"bjg","name":"白芨沟","type":"BJJ","simple":"baijigou","base":"bjg","code":"573"},{"station":"bjg","name":"碧鸡关","type":"BJM","simple":"bijiguan","base":"bjg","code":"574"},{"station":"bji","name":"北滘","type":"IBQ","simple":"beijiao","base":"b","code":"575"},{"station":"bji","name":"碧江","type":"BLQ","simple":"bijiang","base":"bj","code":"576"},{"station":"bjp","name":"白鸡坡","type":"BBM","simple":"baijipo","base":"bjp","code":"577"},{"station":"bjs","name":"笔架山","type":"BSB","simple":"bijiashan","base":"bjs","code":"578"},{"station":"bjt","name":"八角台","type":"BTD","simple":"bajiaotai","base":"bjt","code":"579"},{"station":"bka","name":"保康","type":"BKD","simple":"baokang","base":"bk","code":"580"},{"station":"bkp","name":"白奎堡","type":"BKB","simple":"baikuipu","base":"bkb","code":"581"},{"station":"bla","name":"白狼","type":"BAT","simple":"bailang","base":"bl","code":"582"},{"station":"bla","name":"百浪","type":"BRZ","simple":"bailang","base":"bl","code":"583"},{"station":"ble","name":"博乐","type":"BOR","simple":"bole","base":"bl","code":"584"},{"station":"blg","name":"宝拉格","type":"BQC","simple":"baolage","base":"blg","code":"585"},{"station":"bli","name":"巴林","type":"BLX","simple":"balin","base":"bl","code":"586"},{"station":"bli","name":"宝林","type":"BNB","simple":"baolin","base":"bl","code":"587"},{"station":"bli","name":"北流","type":"BOZ","simple":"beiliu","base":"bl","code":"588"},{"station":"bli","name":"勃利","type":"BLB","simple":"boli","base":"bl","code":"589"},{"station":"blk","name":"布列开","type":"BLR","simple":"buliekai","base":"blk","code":"590"},{"station":"bls","name":"宝龙山","type":"BND","simple":"baolongshan","base":"bls","code":"591"},{"station":"blx","name":"百里峡","type":"AAP","simple":"bailixia","base":"blx","code":"592"},{"station":"bmc","name":"八面城","type":"BMD","simple":"bamiancheng","base":"bmc","code":"593"},{"station":"bmq","name":"班猫箐","type":"BNM","simple":"banmaoqing","base":"bmj","code":"594"},{"station":"bmt","name":"八面通","type":"BMB","simple":"bamiantong","base":"bmt","code":"595"},{"station":"bmz","name":"北马圈子","type":"BRP","simple":"beimaquanzi","base":"bmqz","code":"596"},{"station":"bpn","name":"北票南","type":"RPD","simple":"beipiaonan","base":"bpn","code":"597"},{"station":"bqi","name":"白旗","type":"BQP","simple":"baiqi","base":"bq","code":"598"},{"station":"bql","name":"宝泉岭","type":"BQB","simple":"baoquanling","base":"bql","code":"599"},{"station":"bqu","name":"白泉","type":"BQL","simple":"baiquan","base":"bq","code":"600"},{"station":"bsh","name":"巴山","type":"BAY","simple":"bashan","base":"bs","code":"601"},{"station":"bsh","name":"白沙","type":"BSW","simple":"baisha","base":"bs","code":"602"},{"station":"bsj","name":"白水江","type":"BSY","simple":"baishuijiang","base":"bsj","code":"603"},{"station":"bsp","name":"白沙坡","type":"BPM","simple":"baishapo","base":"bsp","code":"604"},{"station":"bss","name":"白石山","type":"BAL","simple":"baishishan","base":"bss","code":"605"},{"station":"bsz","name":"白水镇","type":"BUM","simple":"baishuizhen","base":"bsz","code":"606"},{"station":"btd","name":"包头 东","type":"FDC","simple":"baotoudong","base":"btd","code":"607"},{"station":"bti","name":"坂田","type":"BTQ","simple":"bantian","base":"bt","code":"608"},{"station":"bto","name":"泊头","type":"BZP","simple":"botou","base":"bt","code":"609"},{"station":"btu","name":"北屯","type":"BYP","simple":"beitun","base":"bt","code":"610"},{"station":"bxh","name":"本溪湖","type":"BHT","simple":"benxihu","base":"bxh","code":"611"},{"station":"bxi","name":"博兴","type":"BXK","simple":"boxing","base":"bx","code":"612"},{"station":"bxt","name":"八仙筒","type":"VXD","simple":"baxiantong","base":"bxt","code":"613"},{"station":"byg","name":"白音察干","type":"BYC","simple":"baiyinchagan","base":"bycg","code":"614"},{"station":"byh","name":"背荫河","type":"BYB","simple":"beiyinhe","base":"byh","code":"615"},{"station":"byi","name":"北营","type":"BIV","simple":"beiying","base":"by","code":"616"},{"station":"byl","name":"巴彦高勒","type":"BAC","simple":"bayangaole","base":"bygl","code":"617"},{"station":"byl","name":"白音他拉","type":"BID","simple":"baiyintala","base":"bytl","code":"618"},{"station":"byq","name":"鲅鱼圈","type":"BYT","simple":"bayuquan","base":"byq","code":"619"},{"station":"bys","name":"白银市","type":"BNJ","simple":"baiyinshi","base":"bys","code":"620"},{"station":"bys","name":"白音胡硕","type":"BCD","simple":"baiyinhushuo","base":"byhs","code":"621"},{"station":"bzh","name":"巴中","type":"IEW","simple":"bazhong","base":"bz","code":"622"},{"station":"bzh","name":"霸州","type":"RMP","simple":"bazhou","base":"bz","code":"623"},{"station":"bzh","name":"北宅","type":"BVP","simple":"beizhai","base":"bz","code":"624"},{"station":"cbb","name":"赤壁北","type":"CIN","simple":"chibibei","base":"cbb","code":"625"},{"station":"cbg","name":"查布嘎","type":"CBC","simple":"chabuga","base":"cbg","code":"626"},{"station":"cch","name":"长城","type":"CEJ","simple":"changcheng","base":"cc","code":"627"},{"station":"cch","name":"长冲","type":"CCM","simple":"changchong","base":"cc","code":"628"},{"station":"cdd","name":"承德东","type":"CCP","simple":"chengdedong","base":"cdd","code":"629"},{"station":"cfx","name":"赤峰西","type":"CID","simple":"chifengxi","base":"cfx","code":"630"},{"station":"cga","name":"嵯岗","type":"CAX","simple":"cuogang","base":"cg","code":"631"},{"station":"cga","name":"柴岗","type":"CGT","simple":"chaigang","base":"cg","code":"632"},{"station":"cge","name":"长葛","type":"CEF","simple":"changge","base":"cg","code":"633"},{"station":"cgp","name":"柴沟堡","type":"CGV","simple":"chaigoupu","base":"cgb","code":"634"},{"station":"cgu","name":"城固","type":"CGY","simple":"chenggu","base":"cg","code":"635"},{"station":"cgy","name":"陈官营","type":"CAJ","simple":"chenguanying","base":"cgy","code":"636"},{"station":"cgz","name":"成高子","type":"CZB","simple":"chenggaozi","base":"cgz","code":"637"},{"station":"cha","name":"草海","type":"WBW","simple":"caohai","base":"ch","code":"638"},{"station":"che","name":"柴河","type":"CHB","simple":"chaihe","base":"ch","code":"639"},{"station":"che","name":"册亨","type":"CHZ","simple":"ceheng","base":"ch","code":"640"},{"station":"chk","name":"草河口","type":"CKT","simple":"caohekou","base":"chk","code":"641"},{"station":"chk","name":"崔黄口","type":"CHP","simple":"cuihuangkou","base":"chk","code":"642"},{"station":"chu","name":"巢湖","type":"CIH","simple":"chaohu","base":"ch","code":"643"},{"station":"cjg","name":"蔡家沟","type":"CJT","simple":"caijiagou","base":"cjg","code":"644"},{"station":"cjh","name":"成吉思汗","type":"CJX","simple":"chengjisihan","base":"cjsh","code":"645"},{"station":"cji","name":"岔江","type":"CAM","simple":"chajiang","base":"cj","code":"646"},{"station":"cjp","name":"蔡家坡","type":"CJY","simple":"caijiapo","base":"cjp","code":"647"},{"station":"cle","name":"昌乐","type":"CLK","simple":"changle","base":"cl","code":"648"},{"station":"clg","name":"超梁沟","type":"CYP","simple":"chaolianggou","base":"clg","code":"649"},{"station":"cli","name":"慈利","type":"CUQ","simple":"cili","base":"cl","code":"650"},{"station":"cli","name":"昌黎","type":"CLP","simple":"changli","base":"cl","code":"651"},{"station":"clz","name":"长岭子","type":"CLT","simple":"changlingzi","base":"clz","code":"652"},{"station":"cmi","name":"晨明","type":"CMB","simple":"chenming","base":"cm","code":"653"},{"station":"cno","name":"长农","type":"CNJ","simple":"changnong","base":"cn","code":"654"},{"station":"cpb","name":"昌平北","type":"VBP","simple":"changpingbei","base":"cpb","code":"655"},{"station":"cpi","name":"常平","type":"DAQ","simple":"changping","base":"cp","code":"656"},{"station":"cpl","name":"长坡岭","type":"CPM","simple":"changpoling","base":"cpl","code":"657"},{"station":"cqi","name":"辰清","type":"CQB","simple":"chenqing","base":"cq","code":"658"},{"station":"csh","name":"蔡山","type":"CON","simple":"caishan","base":"cs","code":"659"},{"station":"csh","name":"楚山","type":"CSB","simple":"chushan","base":"cs","code":"660"},{"station":"csh","name":"长寿","type":"EFW","simple":"changshou","base":"cs","code":"661"},{"station":"csh","name":"磁山","type":"CSP","simple":"cishan","base":"cs","code":"662"},{"station":"csh","name":"苍石","type":"CST","simple":"cangshi","base":"cs","code":"663"},{"station":"csh","name":"草市","type":"CSL","simple":"caoshi","base":"cs","code":"664"},{"station":"csq","name":"察素齐","type":"CSC","simple":"chasuqi","base":"csq","code":"665"},{"station":"cst","name":"长山屯","type":"CVT","simple":"changshantun","base":"cst","code":"666"},{"station":"cti","name":"长汀","type":"CES","simple":"changting","base":"ct","code":"667"},{"station":"ctx","name":"昌图西","type":"CPT","simple":"changtuxi","base":"ctx","code":"668"},{"station":"cwa","name":"春湾","type":"CQQ","simple":"chunwan","base":"cw","code":"669"},{"station":"cxi","name":"磁县","type":"CIP","simple":"cixian","base":"cx","code":"670"},{"station":"cxi","name":"岑溪","type":"CNZ","simple":"cenxi","base":"cx","code":"671"},{"station":"cxi","name":"辰溪","type":"CXQ","simple":"chenxi","base":"cx","code":"672"},{"station":"cxi","name":"磁西","type":"CRP","simple":"cixi","base":"cx","code":"673"},{"station":"cxn","name":"长兴南","type":"CFH","simple":"changxingnan","base":"cxn","code":"674"},{"station":"cya","name":"磁窑","type":"CYK","simple":"ciyao","base":"cy","code":"675"},{"station":"cya","name":"朝阳","type":"CYD","simple":"chaoyang","base":"cy","code":"676"},{"station":"cya","name":"春阳","type":"CAL","simple":"chunyang","base":"cy","code":"677"},{"station":"cya","name":"城阳","type":"CEK","simple":"chengyang","base":"cy","code":"678"},{"station":"cyc","name":"创业村","type":"CEX","simple":"chuangyecun","base":"cyc","code":"679"},{"station":"cyc","name":"朝阳川","type":"CYL","simple":"chaoyangchuan","base":"cyc","code":"680"},{"station":"cyd","name":"朝阳地","type":"CDD","simple":"chaoyangdi","base":"cyd","code":"681"},{"station":"cyu","name":"长垣","type":"CYF","simple":"changyuan","base":"cy","code":"682"},{"station":"cyz","name":"朝阳镇","type":"CZL","simple":"chaoyangzhen","base":"cyz","code":"683"},{"station":"czb","name":"滁州北","type":"CUH","simple":"chuzhoubei","base":"czb","code":"684"},{"station":"czb","name":"常州北","type":"ESH","simple":"changzhoubei","base":"czb","code":"685"},{"station":"czh","name":"滁州","type":"CXH","simple":"chuzhou","base":"cz","code":"686"},{"station":"czh","name":"潮州","type":"CKQ","simple":"chaozhou","base":"cz","code":"687"},{"station":"czh","name":"常庄","type":"CVK","simple":"changzhuang","base":"cz","code":"688"},{"station":"czl","name":"曹子里","type":"CFP","simple":"caozili","base":"czl","code":"689"},{"station":"czw","name":"车转湾","type":"CWM","simple":"chezhuanwan","base":"czw","code":"690"},{"station":"czx","name":"郴州西","type":"ICQ","simple":"chenzhouxi","base":"czx","code":"691"},{"station":"czx","name":"沧州西","type":"CBP","simple":"cangzhouxi","base":"czx","code":"692"},{"station":"dan","name":"德安","type":"DAG","simple":"dean","base":"da","code":"693"},{"station":"dan","name":"大安","type":"RAT","simple":"daan","base":"da","code":"694"},{"station":"dba","name":"大坝","type":"DBJ","simple":"daba","base":"db","code":"695"},{"station":"dba","name":"大板","type":"DBC","simple":"daban","base":"db","code":"696"},{"station":"dba","name":"大巴","type":"DBD","simple":"daba","base":"db","code":"697"},{"station":"dba","name":"到保","type":"RBT","simple":"daobao","base":"db","code":"698"},{"station":"dbi","name":"定边","type":"DYJ","simple":"dingbian","base":"db","code":"699"},{"station":"dbj","name":"东边井","type":"DBB","simple":"dongbianjing","base":"dbj","code":"700"},{"station":"dbs","name":"德伯斯","type":"RDT","simple":"debosi","base":"dbs","code":"701"},{"station":"dcg","name":"打柴沟","type":"DGJ","simple":"dachaigou","base":"dcg","code":"702"},{"station":"dch","name":"德昌","type":"DVW","simple":"dechang","base":"dc","code":"703"},{"station":"dda","name":"滴道","type":"DDB","simple":"didao","base":"dd","code":"704"},{"station":"ddg","name":"大磴沟","type":"DKJ","simple":"dadenggou","base":"ddg","code":"705"},{"station":"ded","name":"刀尔登","type":"DRD","simple":"daoerdeng","base":"ded","code":"706"},{"station":"dee","name":"得耳布尔","type":"DRX","simple":"deerbuer","base":"debe","code":"707"},{"station":"dfa","name":"东方","type":"UFQ","simple":"dongfang","base":"df","code":"708"},{"station":"dfe","name":"丹凤","type":"DGY","simple":"danfeng","base":"df","code":"709"},{"station":"dfe","name":"东丰","type":"DIL","simple":"dongfeng","base":"df","code":"710"},{"station":"dge","name":"都格","type":"DMM","simple":"duge","base":"dg","code":"711"},{"station":"dgt","name":"大官屯","type":"DTT","simple":"daguantun","base":"dgt","code":"712"},{"station":"dgu","name":"大关","type":"RGW","simple":"daguan","base":"dg","code":"713"},{"station":"dgu","name":"东光","type":"DGP","simple":"dongguang","base":"dg","code":"714"},{"station":"dha","name":"东海","type":"DHB","simple":"donghai","base":"dh","code":"715"},{"station":"dhc","name":"大灰厂","type":"DHP","simple":"dahuichang","base":"dhc","code":"716"},{"station":"dhq","name":"大红旗","type":"DQD","simple":"dahongqi","base":"dhq","code":"717"},{"station":"dht","name":"大禾塘","type":"SOQ","simple":"shaodong","base":"sd","code":"718"},{"station":"dhx","name":"东海县","type":"DQH","simple":"donghaixian","base":"dhx","code":"719"},{"station":"dhx","name":"德惠西","type":"DXT","simple":"dehuixi","base":"dhx","code":"720"},{"station":"djg","name":"达家沟","type":"DJT","simple":"dajiagou","base":"djg","code":"721"},{"station":"dji","name":"东津","type":"DKB","simple":"dongjin","base":"dj","code":"722"},{"station":"dji","name":"杜家","type":"DJL","simple":"dujia","base":"dj","code":"723"},{"station":"dkt","name":"大口屯","type":"DKP","simple":"dakoutun","base":"dkt","code":"724"},{"station":"dla","name":"东来","type":"RVD","simple":"donglai","base":"dl","code":"725"},{"station":"dlh","name":"德令哈","type":"DHO","simple":"delingha","base":"dlh","code":"726"},{"station":"dlh","name":"大陆号","type":"DLC","simple":"daluhao","base":"dlh","code":"727"},{"station":"dli","name":"带岭","type":"DLB","simple":"dailing","base":"dl","code":"728"},{"station":"dli","name":"大林","type":"DLD","simple":"dalin","base":"dl","code":"729"},{"station":"dlq","name":"达拉特旗","type":"DIC","simple":"dalateqi","base":"dltq","code":"730"},{"station":"dlt","name":"独立屯","type":"DTX","simple":"dulitun","base":"dlt","code":"731"},{"station":"dlu","name":"豆罗","type":"DLV","simple":"douluo","base":"dl","code":"732"},{"station":"dlx","name":"达拉特西","type":"DNC","simple":"dalatexi","base":"dltx","code":"733"},{"station":"dmc","name":"东明村","type":"DMD","simple":"dongmingcun","base":"dmc","code":"734"},{"station":"dmh","name":"洞庙河","type":"DEP","simple":"dongmiaohe","base":"dmh","code":"735"},{"station":"dmx","name":"东明县","type":"DNF","simple":"dongmingxian","base":"dmx","code":"736"},{"station":"dni","name":"大拟","type":"DNZ","simple":"dani","base":"dn","code":"737"},{"station":"dpf","name":"大平房","type":"DPD","simple":"dapingfang","base":"dpf","code":"738"},{"station":"dps","name":"大盘石","type":"RPP","simple":"dapanshi","base":"dps","code":"739"},{"station":"dpu","name":"大埔","type":"DPI","simple":"dapu","base":"dp","code":"740"},{"station":"dpu","name":"大堡","type":"DVT","simple":"dapu","base":"db","code":"741"},{"station":"dqd","name":"大庆东","type":"LFX","simple":"daqingdong","base":"dqd","code":"742"},{"station":"dqh","name":"大其拉哈","type":"DQX","simple":"daqilaha","base":"dqlh","code":"743"},{"station":"dqi","name":"道清","type":"DML","simple":"daoqing","base":"dq","code":"744"},{"station":"dqs","name":"对青山","type":"DQB","simple":"duiqingshan","base":"dqs","code":"745"},{"station":"dqx","name":"德清西","type":"MOH","simple":"deqingxi","base":"dqx","code":"746"},{"station":"dqx","name":"大庆西","type":"RHX","simple":"daqingxi","base":"dqx","code":"747"},{"station":"dsh","name":"东升","type":"DRQ","simple":"dongsheng","base":"ds","code":"748"},{"station":"dsh","name":"独山","type":"RWW","simple":"dushan","base":"ds","code":"749"},{"station":"dsh","name":"砀山","type":"DKH","simple":"dangshan","base":"ds","code":"750"},{"station":"dsh","name":"登沙河","type":"DWT","simple":"dengshahe","base":"dsh","code":"751"},{"station":"dsp","name":"读书铺","type":"DPM","simple":"dushupu","base":"dsp","code":"752"},{"station":"dst","name":"大石头","type":"DSL","simple":"dashitou","base":"dst","code":"753"},{"station":"dsx","name":"东胜西","type":"DYC","simple":"dongshengxi","base":"dsx","code":"754"},{"station":"dsz","name":"大石寨","type":"RZT","simple":"dashizhai","base":"dsz","code":"755"},{"station":"dta","name":"东台","type":"DBH","simple":"dongtai","base":"dt","code":"756"},{"station":"dta","name":"定陶","type":"DQK","simple":"dingtao","base":"dt","code":"757"},{"station":"dta","name":"灯塔","type":"DGT","simple":"dengta","base":"dt","code":"758"},{"station":"dtb","name":"大田边","type":"DBM","simple":"datianbian","base":"dtb","code":"759"},{"station":"dth","name":"东通化","type":"DTL","simple":"dongtonghua","base":"dth","code":"760"},{"station":"dtu","name":"丹徒","type":"RUH","simple":"dantu","base":"dt","code":"761"},{"station":"dtu","name":"大屯","type":"DNT","simple":"datun","base":"dt","code":"762"},{"station":"dwa","name":"东湾","type":"DRJ","simple":"dongwan","base":"dw","code":"763"},{"station":"dwk","name":"大武口","type":"DFJ","simple":"dawukou","base":"dwk","code":"764"},{"station":"dwp","name":"低窝铺","type":"DWJ","simple":"diwopu","base":"dwp","code":"765"},{"station":"dwt","name":"大王滩","type":"DZZ","simple":"dawangtan","base":"dwt","code":"766"},{"station":"dwz","name":"大湾子","type":"DFM","simple":"dawanzi","base":"dwz","code":"767"},{"station":"dxg","name":"大兴沟","type":"DXL","simple":"daxinggou","base":"dxg","code":"768"},{"station":"dxi","name":"大兴","type":"DXX","simple":"daxing","base":"dx","code":"769"},{"station":"dxi","name":"定西","type":"DSJ","simple":"dingxi","base":"dx","code":"770"},{"station":"dxi","name":"甸心","type":"DXM","simple":"dianxin","base":"dx","code":"771"},{"station":"dxi","name":"东乡","type":"DXG","simple":"dongxiang","base":"dx","code":"772"},{"station":"dxi","name":"代县","type":"DKV","simple":"daixian","base":"dx","code":"773"},{"station":"dxi","name":"定襄","type":"DXV","simple":"dingxiang","base":"dx","code":"774"},{"station":"dxu","name":"东戌","type":"RXP","simple":"dongxu","base":"dx","code":"775"},{"station":"dxz","name":"东辛庄","type":"DXD","simple":"dongxinzhuang","base":"dxz","code":"776"},{"station":"dya","name":"德阳","type":"DYW","simple":"deyang","base":"dy","code":"777"},{"station":"dya","name":"丹阳","type":"DYH","simple":"danyang","base":"dy","code":"778"},{"station":"dya","name":"大雁","type":"DYX","simple":"dayan","base":"dy","code":"779"},{"station":"dya","name":"当阳","type":"DYN","simple":"dangyang","base":"dy","code":"780"},{"station":"dyb","name":"丹阳北","type":"EXH","simple":"danyangbei","base":"dyb","code":"781"},{"station":"dyd","name":"大英东","type":"IAW","simple":"dayingdong","base":"dyd","code":"782"},{"station":"dyd","name":"东淤地","type":"DBV","simple":"dongyudi","base":"dyd","code":"783"},{"station":"dyi","name":"大营","type":"DYV","simple":"daying","base":"dy","code":"784"},{"station":"dyu","name":"定远","type":"EWH","simple":"dingyuan","base":"dy","code":"785"},{"station":"dyu","name":"岱岳","type":"RYV","simple":"daiyue","base":"dy","code":"786"},{"station":"dyu","name":"大元","type":"DYZ","simple":"dayuan","base":"dy","code":"787"},{"station":"dyz","name":"大营镇","type":"DJP","simple":"dayingzhen","base":"dyz","code":"788"},{"station":"dyz","name":"大营子","type":"DZD","simple":"dayingzi","base":"dyz","code":"789"},{"station":"dzc","name":"大战场","type":"DTJ","simple":"dazhanchang","base":"dzc","code":"790"},{"station":"dzd","name":"德州东","type":"DIP","simple":"dezhoudong","base":"dzd","code":"791"},{"station":"dzh","name":"低庄","type":"DVQ","simple":"dizhuang","base":"dz","code":"792"},{"station":"dzh","name":"东镇","type":"DNV","simple":"dongzhen","base":"dz","code":"793"},{"station":"dzh","name":"道州","type":"DFZ","simple":"daozhou","base":"dz","code":"794"},{"station":"dzh","name":"东至","type":"DCH","simple":"dongzhi","base":"dz","code":"795"},{"station":"dzh","name":"东庄","type":"DZV","simple":"dongzhuang","base":"dz","code":"796"},{"station":"dzh","name":"兑镇","type":"DWV","simple":"duizhen","base":"dz","code":"797"},{"station":"dzh","name":"豆庄","type":"ROP","simple":"douzhuang","base":"dz","code":"798"},{"station":"dzh","name":"定州","type":"DXP","simple":"dingzhou","base":"dz","code":"799"},{"station":"dzy","name":"大竹园","type":"DZY","simple":"dazhuyuan","base":"dzy","code":"800"},{"station":"dzz","name":"大杖子","type":"DAP","simple":"dazhangzi","base":"dzz","code":"801"},{"station":"dzz","name":"豆张庄","type":"RZP","simple":"douzhangzhuang","base":"dzz","code":"802"},{"station":"ebi","name":"峨边","type":"EBW","simple":"ebian","base":"eb","code":"803"},{"station":"edm","name":"二道沟门","type":"RDP","simple":"erdaogoumen","base":"edgm","code":"804"},{"station":"edw","name":"二道湾","type":"RDX","simple":"erdaowan","base":"edw","code":"805"},{"station":"ees","name":"鄂尔多斯","type":"EEC","simple":"eerduosi","base":"eeds","code":"806"},{"station":"elo","name":"二龙","type":"RLD","simple":"erlong","base":"el","code":"807"},{"station":"elt","name":"二龙山屯","type":"ELA","simple":"erlongshantun","base":"elst","code":"808"},{"station":"eme","name":"峨眉","type":"EMW","simple":"emei","base":"em","code":"809"},{"station":"emh","name":"二密河","type":"RML","simple":"ermihe","base":"emh","code":"810"},{"station":"eyi","name":"二营","type":"RYJ","simple":"erying","base":"ey","code":"811"},{"station":"ezh","name":"鄂州","type":"ECN","simple":"ezhou","base":"ez","code":"812"},{"station":"fan","name":"福安","type":"FAS","simple":"fuan","base":"fa","code":"813"},{"station":"fch","name":"丰城","type":"FCG","simple":"fengcheng","base":"fc","code":"814"},{"station":"fcn","name":"丰城南","type":"FNG","simple":"fengchengnan","base":"fcn","code":"815"},{"station":"fdo","name":"肥东","type":"FIH","simple":"feidong","base":"fd","code":"816"},{"station":"fer","name":"发耳","type":"FEM","simple":"faer","base":"fe","code":"817"},{"station":"fha","name":"富海","type":"FHX","simple":"fuhai","base":"fh","code":"818"},{"station":"fha","name":"福海","type":"FHR","simple":"fuhai","base":"fh","code":"819"},{"station":"fhc","name":"凤凰城","type":"FHT","simple":"fenghuangcheng","base":"fhc","code":"820"},{"station":"fhe","name":"汾河","type":"FEV","simple":"fenhe","base":"fh","code":"821"},{"station":"fhu","name":"奉化","type":"FHH","simple":"fenghua","base":"fh","code":"822"},{"station":"fji","name":"富锦","type":"FIB","simple":"fujin","base":"fj","code":"823"},{"station":"fjt","name":"范家屯","type":"FTT","simple":"fanjiatun","base":"fjt","code":"824"},{"station":"flq","name":"福利区","type":"FLJ","simple":"fuliqu","base":"flq","code":"825"},{"station":"flt","name":"福利屯","type":"FTB","simple":"fulitun","base":"flt","code":"826"},{"station":"flz","name":"丰乐镇","type":"FZB","simple":"fenglezhen","base":"flz","code":"827"},{"station":"fna","name":"阜南","type":"FNH","simple":"funan","base":"fn","code":"828"},{"station":"fni","name":"阜宁","type":"AKH","simple":"funing","base":"fn","code":"829"},{"station":"fni","name":"抚宁","type":"FNP","simple":"funing","base":"fn","code":"830"},{"station":"fqi","name":"福清","type":"FQS","simple":"fuqing","base":"fq","code":"831"},{"station":"fqu","name":"福泉","type":"VMW","simple":"fuquan","base":"fq","code":"832"},{"station":"fsc","name":"丰水村","type":"FSJ","simple":"fengshuicun","base":"fsc","code":"833"},{"station":"fsh","name":"丰顺","type":"FUQ","simple":"fengshun","base":"fs","code":"834"},{"station":"fsh","name":"繁峙","type":"FSV","simple":"fanshi","base":"fs","code":"835"},{"station":"fsh","name":"抚顺","type":"FST","simple":"fushun","base":"fs","code":"836"},{"station":"fsk","name":"福山口","type":"FKP","simple":"fushankou","base":"fsk","code":"837"},{"station":"fsu","name":"扶绥","type":"FSZ","simple":"fusui","base":"fs","code":"838"},{"station":"ftu","name":"冯屯","type":"FTX","simple":"fengtun","base":"ft","code":"839"},{"station":"fty","name":"浮图峪","type":"FYP","simple":"futuyu","base":"fty","code":"840"},{"station":"fxd","name":"富县东","type":"FDY","simple":"fuxiandong","base":"fxd","code":"841"},{"station":"fxi","name":"凤县","type":"FXY","simple":"fengxian","base":"fx","code":"842"},{"station":"fxi","name":"富县","type":"FEY","simple":"fuxian","base":"fx","code":"843"},{"station":"fxi","name":"费县","type":"FXK","simple":"feixian","base":"fx","code":"844"},{"station":"fya","name":"凤阳","type":"FUH","simple":"fengyang","base":"fy","code":"845"},{"station":"fya","name":"汾阳","type":"FAV","simple":"fenyang","base":"fy","code":"846"},{"station":"fyb","name":"扶余北","type":"FBT","simple":"fuyubei","base":"fyb","code":"847"},{"station":"fyi","name":"分宜","type":"FYG","simple":"fenyi","base":"fy","code":"848"},{"station":"fyu","name":"富源","type":"FYM","simple":"fuyuan","base":"fy","code":"849"},{"station":"fyu","name":"扶余","type":"FYT","simple":"fuyu","base":"fy","code":"850"},{"station":"fyu","name":"富裕","type":"FYX","simple":"fuyu","base":"fy","code":"851"},{"station":"fzb","name":"抚州北","type":"FBG","simple":"fuzhoubei","base":"fzb","code":"852"},{"station":"fzh","name":"凤州","type":"FZY","simple":"fengzhou","base":"fz","code":"853"},{"station":"fzh","name":"丰镇","type":"FZC","simple":"fengzhen","base":"fz","code":"854"},{"station":"fzh","name":"范镇","type":"VZK","simple":"fanzhen","base":"fz","code":"855"},{"station":"gan","name":"固安","type":"GFP","simple":"guan","base":"ga","code":"856"},{"station":"gan","name":"广安","type":"VJW","simple":"guangan","base":"ga","code":"857"},{"station":"gbd","name":"高碑店","type":"GBP","simple":"gaobeidian","base":"gbd","code":"858"},{"station":"gbz","name":"沟帮子","type":"GBD","simple":"goubangzi","base":"gbz","code":"859"},{"station":"gcd","name":"甘草店","type":"GDJ","simple":"gancaodian","base":"gcd","code":"860"},{"station":"gch","name":"谷城","type":"GCN","simple":"gucheng","base":"gc","code":"861"},{"station":"gch","name":"藁城","type":"GEP","simple":"gaocheng","base":"gc","code":"862"},{"station":"gcu","name":"高村","type":"GCV","simple":"gaocun","base":"gc","code":"863"},{"station":"gcz","name":"古城镇","type":"GZB","simple":"guchengzhen","base":"gcz","code":"864"},{"station":"gde","name":"广德","type":"GRH","simple":"guangde","base":"gd","code":"865"},{"station":"gdi","name":"贵定","type":"GTW","simple":"guiding","base":"gd","code":"866"},{"station":"gdn","name":"贵定南","type":"IDW","simple":"guidingnan","base":"gdn","code":"867"},{"station":"gdo","name":"古东","type":"GDV","simple":"gudong","base":"gd","code":"868"},{"station":"gga","name":"贵港","type":"GGZ","simple":"guigang","base":"gg","code":"869"},{"station":"gga","name":"官高","type":"GVP","simple":"guangao","base":"gg","code":"870"},{"station":"ggm","name":"葛根庙","type":"GGT","simple":"gegenmiao","base":"ggm","code":"871"},{"station":"ggo","name":"干沟","type":"GGL","simple":"gangou","base":"gg","code":"872"},{"station":"ggu","name":"甘谷","type":"GGJ","simple":"gangu","base":"gg","code":"873"},{"station":"ggz","name":"高各庄","type":"GGP","simple":"gaogezhuang","base":"ggz","code":"874"},{"station":"ghe","name":"甘河","type":"GAX","simple":"ganhe","base":"gh","code":"875"},{"station":"ghe","name":"根河","type":"GEX","simple":"genhe","base":"gh","code":"876"},{"station":"gjd","name":"郭家店","type":"GDT","simple":"guojiadian","base":"gjd","code":"877"},{"station":"gjz","name":"孤家子","type":"GKT","simple":"gujiazi","base":"gjz","code":"878"},{"station":"gla","name":"古浪","type":"GLJ","simple":"gulang","base":"gl","code":"879"},{"station":"gla","name":"皋兰","type":"GEJ","simple":"gaolan","base":"gl","code":"880"},{"station":"glf","name":"高楼房","type":"GFM","simple":"gaoloufang","base":"glf","code":"881"},{"station":"glh","name":"归流河","type":"GHT","simple":"guiliuhe","base":"glh","code":"882"},{"station":"gli","name":"关林","type":"GLF","simple":"guanlin","base":"gl","code":"883"},{"station":"glu","name":"甘洛","type":"VOW","simple":"ganluo","base":"gl","code":"884"},{"station":"glz","name":"郭磊庄","type":"GLP","simple":"guoleizhuang","base":"glz","code":"885"},{"station":"gmi","name":"高密","type":"GMK","simple":"gaomi","base":"gm","code":"886"},{"station":"gmz","name":"公庙子","type":"GMC","simple":"gongmiaozi","base":"gmz","code":"887"},{"station":"gnh","name":"工农湖","type":"GRT","simple":"gongnonghu","base":"gnh","code":"888"},{"station":"gnn","name":"广宁寺南","type":"GNT","simple":"guangningsinan","base":"gns","code":"889"},{"station":"gnw","name":"广南卫","type":"GNM","simple":"guangnanwei","base":"gnw","code":"890"},{"station":"gpi","name":"高平","type":"GPF","simple":"gaoping","base":"gp","code":"891"},{"station":"gqb","name":"甘泉北","type":"GEY","simple":"ganquanbei","base":"gqb","code":"892"},{"station":"gqc","name":"共青城","type":"GAG","simple":"gongqingcheng","base":"gqc","code":"893"},{"station":"gqk","name":"甘旗卡","type":"GQD","simple":"ganqika","base":"gqk","code":"894"},{"station":"gqu","name":"甘泉","type":"GQY","simple":"ganquan","base":"gq","code":"895"},{"station":"gqz","name":"高桥镇","type":"GZD","simple":"gaoqiaozhen","base":"gqz","code":"896"},{"station":"gsh","name":"灌水","type":"GST","simple":"guanshui","base":"gs","code":"897"},{"station":"gsh","name":"赶水","type":"GSW","simple":"ganshui","base":"gs","code":"898"},{"station":"gsk","name":"孤山口","type":"GSP","simple":"gushankou","base":"gsk","code":"899"},{"station":"gso","name":"果松","type":"GSL","simple":"guosong","base":"gs","code":"900"},{"station":"gsz","name":"高山子","type":"GSD","simple":"gaoshanzi","base":"gsz","code":"901"},{"station":"gsz","name":"嘎什甸子","type":"GXD","simple":"gashidianzi","base":"gsdz","code":"902"},{"station":"gta","name":"高台","type":"GTJ","simple":"gaotai","base":"gt","code":"903"},{"station":"gta","name":"高滩","type":"GAY","simple":"gaotan","base":"gt","code":"904"},{"station":"gti","name":"古田","type":"GTS","simple":"gutian","base":"gt","code":"905"},{"station":"gti","name":"官厅","type":"GTP","simple":"guanting","base":"gt","code":"906"},{"station":"gtx","name":"官厅西","type":"KEP","simple":"guantingxi","base":"gtx","code":"907"},{"station":"gxi","name":"贵溪","type":"GXG","simple":"guixi","base":"gx","code":"908"},{"station":"gya","name":"涡阳","type":"GYH","simple":"guoyang","base":"gy","code":"909"},{"station":"gyi","name":"巩义","type":"GXF","simple":"gongyi","base":"gy","code":"910"},{"station":"gyi","name":"高邑","type":"GIP","simple":"gaoyi","base":"gy","code":"911"},{"station":"gyn","name":"巩义南","type":"GYF","simple":"gongyinan","base":"gyn","code":"912"},{"station":"gyn","name":"广元南","type":"GAW","simple":"guangyuannan","base":"gyn","code":"913"},{"station":"gyu","name":"固原","type":"GUJ","simple":"guyuan","base":"gy","code":"914"},{"station":"gyu","name":"菇园","type":"GYL","simple":"guyuan","base":"gy","code":"915"},{"station":"gyz","name":"公营子","type":"GYD","simple":"gongyingzi","base":"gyz","code":"916"},{"station":"gze","name":"光泽","type":"GZS","simple":"guangze","base":"gz","code":"917"},{"station":"gzh","name":"古镇","type":"GNQ","simple":"guzhen","base":"gz","code":"918"},{"station":"gzh","name":"虢镇","type":"GZY","simple":"guozhen","base":"gz","code":"919"},{"station":"gzh","name":"瓜州","type":"GZJ","simple":"guazhou","base":"gz","code":"920"},{"station":"gzh","name":"高州","type":"GSQ","simple":"gaozhou","base":"gz","code":"921"},{"station":"gzh","name":"固镇","type":"GEH","simple":"guzhen","base":"gz","code":"922"},{"station":"gzh","name":"盖州","type":"GXT","simple":"gaizhou","base":"gz","code":"923"},{"station":"gzj","name":"官字井","type":"GOT","simple":"guanzijing","base":"gzj","code":"924"},{"station":"gzp","name":"革镇堡","type":"GZT","simple":"gezhenpu","base":"gzb","code":"925"},{"station":"gzs","name":"冠豸山","type":"GSS","simple":"guanzhaishan","base":"gzs","code":"926"},{"station":"gzx","name":"盖州西","type":"GAT","simple":"gaizhouxi","base":"gzx","code":"927"},{"station":"han","name":"红安","type":"HWN","simple":"hongan","base":"ha","code":"928"},{"station":"han","name":"淮安南","type":"AMH","simple":"huaiannan","base":"han","code":"929"},{"station":"hax","name":"红安西","type":"VXN","simple":"honganxi","base":"hax","code":"930"},{"station":"hax","name":"海安县","type":"HIH","simple":"haianxian","base":"hax","code":"931"},{"station":"hba","name":"黄柏","type":"HBL","simple":"huangbai","base":"hb","code":"932"},{"station":"hbe","name":"海北","type":"HEB","simple":"haibei","base":"hb","code":"933"},{"station":"hbi","name":"鹤壁","type":"HAF","simple":"hebi","base":"hb","code":"934"},{"station":"hcb","name":"会昌北","type":"XEG","simple":"huichangbei","base":"hcb","code":"935"},{"station":"hch","name":"华城","type":"VCQ","simple":"huacheng","base":"hc","code":"936"},{"station":"hch","name":"河唇","type":"HCZ","simple":"hechun","base":"hc","code":"937"},{"station":"hch","name":"汉川","type":"HCN","simple":"hanchuan","base":"hc","code":"938"},{"station":"hch","name":"海城","type":"HCT","simple":"haicheng","base":"hc","code":"939"},{"station":"hch","name":"合川","type":"WKW","simple":"hechuan","base":"hc","code":"940"},{"station":"hct","name":"黑冲滩","type":"HCJ","simple":"heichongtan","base":"hct","code":"941"},{"station":"hcu","name":"黄村","type":"HCP","simple":"huangcun","base":"hc","code":"942"},{"station":"hcx","name":"海城西","type":"HXT","simple":"haichengxi","base":"hcx","code":"943"},{"station":"hde","name":"化德","type":"HGC","simple":"huade","base":"hd","code":"944"},{"station":"hdo","name":"洪洞","type":"HDV","simple":"hongtong","base":"hd","code":"945"},{"station":"hes","name":"霍尔果斯","type":"HFR","simple":"huoerguosi","base":"hegs","code":"946"},{"station":"hfe","name":"横峰","type":"HFG","simple":"hengfeng","base":"hf","code":"947"},{"station":"hfw","name":"韩府湾","type":"HXJ","simple":"hanfuwan","base":"hfw","code":"948"},{"station":"hgu","name":"汉沽","type":"HGP","simple":"hangu","base":"hg","code":"949"},{"station":"hgy","name":"黄瓜园","type":"HYM","simple":"huangguayuan","base":"hgy","code":"950"},{"station":"hgz","name":"红光镇","type":"IGW","simple":"hongguangzhen","base":"hgz","code":"951"},{"station":"hhe","name":"浑河","type":"HHT","simple":"hunhe","base":"hh","code":"952"},{"station":"hhg","name":"红花沟","type":"VHD","simple":"honghuagou","base":"hhg","code":"953"},{"station":"hht","name":"黄花筒","type":"HUD","simple":"huanghuatong","base":"hht","code":"954"},{"station":"hjd","name":"贺家店","type":"HJJ","simple":"hejiadian","base":"hjd","code":"955"},{"station":"hji","name":"和静","type":"HJR","simple":"hejing","base":"hj","code":"956"},{"station":"hji","name":"红江","type":"HFM","simple":"hongjiang","base":"hj","code":"957"},{"station":"hji","name":"黑井","type":"HIM","simple":"heijing","base":"hj","code":"958"},{"station":"hji","name":"获嘉","type":"HJF","simple":"huojia","base":"hj","code":"959"},{"station":"hji","name":"河津","type":"HJV","simple":"hejin","base":"hj","code":"960"},{"station":"hji","name":"涵江","type":"HJS","simple":"hanjiang","base":"hj","code":"961"},{"station":"hji","name":"华家","type":"HJT","simple":"huajia","base":"hj","code":"962"},{"station":"hjq","name":"杭锦后旗","type":"HDC","simple":"hangjinhouqi","base":"hjhq","code":"963"},{"station":"hjx","name":"河间西","type":"HXP","simple":"hejianxi","base":"hjx","code":"964"},{"station":"hjz","name":"花家庄","type":"HJM","simple":"huajiazhuang","base":"hjz","code":"965"},{"station":"hkn","name":"河口南","type":"HKJ","simple":"hekounan","base":"hkn","code":"966"},{"station":"hko","name":"黄口","type":"KOH","simple":"huangkou","base":"hk","code":"967"},{"station":"hko","name":"湖口","type":"HKG","simple":"hukou","base":"hk","code":"968"},{"station":"hla","name":"呼兰","type":"HUB","simple":"hulan","base":"hl","code":"969"},{"station":"hlb","name":"葫芦岛北","type":"HPD","simple":"huludaobei","base":"hldb","code":"970"},{"station":"hlh","name":"浩良河","type":"HHB","simple":"haolianghe","base":"hlh","code":"971"},{"station":"hlh","name":"哈拉海","type":"HIT","simple":"halahai","base":"hlh","code":"972"},{"station":"hli","name":"鹤立","type":"HOB","simple":"heli","base":"hl","code":"973"},{"station":"hli","name":"桦林","type":"HIB","simple":"hualin","base":"hl","code":"974"},{"station":"hli","name":"黄陵","type":"ULY","simple":"huangling","base":"hl","code":"975"},{"station":"hli","name":"海林","type":"HRB","simple":"hailin","base":"hl","code":"976"},{"station":"hli","name":"虎林","type":"VLB","simple":"hulin","base":"hl","code":"977"},{"station":"hli","name":"寒岭","type":"HAT","simple":"hanling","base":"hl","code":"978"},{"station":"hlo","name":"和龙","type":"HLL","simple":"helong","base":"hl","code":"979"},{"station":"hlo","name":"海龙","type":"HIL","simple":"hailong","base":"hl","code":"980"},{"station":"hls","name":"哈拉苏","type":"HAX","simple":"halasu","base":"hls","code":"981"},{"station":"hlt","name":"呼鲁斯太","type":"VTJ","simple":"hulusitai","base":"hlst","code":"982"},{"station":"hlz","name":"火连寨","type":"HLT","simple":"huolianzhai","base":"hlz","code":"983"},{"station":"hme","name":"黄梅","type":"VEH","simple":"huangmei","base":"hm","code":"984"},{"station":"hmy","name":"韩麻营","type":"HYP","simple":"hanmaying","base":"hmy","code":"985"},{"station":"hnh","name":"黄泥河","type":"HHL","simple":"huangnihe","base":"hnh","code":"986"},{"station":"hni","name":"海宁","type":"HNH","simple":"haining","base":"hn","code":"987"},{"station":"hno","name":"惠农","type":"HMJ","simple":"huinong","base":"hn","code":"988"},{"station":"hpi","name":"和平","type":"VAQ","simple":"heping","base":"hp","code":"989"},{"station":"hpz","name":"花棚子","type":"HZM","simple":"huapengzi","base":"hpz","code":"990"},{"station":"hqi","name":"花桥","type":"VQH","simple":"huaqiao","base":"hq","code":"991"},{"station":"hqi","name":"宏庆","type":"HEY","simple":"hongqing","base":"hq","code":"992"},{"station":"hre","name":"怀仁","type":"HRV","simple":"huairen","base":"hr","code":"993"},{"station":"hro","name":"华容","type":"HRN","simple":"huarong","base":"hr","code":"994"},{"station":"hsb","name":"华山北","type":"HDY","simple":"huashanbei","base":"hsb","code":"995"},{"station":"hsd","name":"黄松甸","type":"HDL","simple":"huangsongdian","base":"hsd","code":"996"},{"station":"hsg","name":"和什托洛盖","type":"VSR","simple":"heshituoluogai","base":"hstlg","code":"997"},{"station":"hsh","name":"红山","type":"VSB","simple":"hongshan","base":"hs","code":"998"},{"station":"hsh","name":"汉寿","type":"VSQ","simple":"hanshou","base":"hs","code":"999"},{"station":"hsh","name":"衡山","type":"HSQ","simple":"hengshan","base":"hs","code":"1000"},{"station":"hsh","name":"黑水","type":"HOT","simple":"heishui","base":"hs","code":"1001"},{"station":"hsh","name":"惠山","type":"VCH","simple":"huishan","base":"hs","code":"1002"},{"station":"hsh","name":"虎什哈","type":"HHP","simple":"hushiha","base":"hsh","code":"1003"},{"station":"hsp","name":"红寺堡","type":"HSJ","simple":"hongsipu","base":"hsb","code":"1004"},{"station":"hst","name":"虎石台","type":"HUT","simple":"hushitai","base":"hst","code":"1005"},{"station":"hsw","name":"海石湾","type":"HSO","simple":"haishiwan","base":"hsw","code":"1006"},{"station":"hsx","name":"衡山西","type":"HEQ","simple":"hengshanxi","base":"hsx","code":"1007"},{"station":"hsx","name":"红砂岘","type":"VSJ","simple":"hongshaxian","base":"hsj","code":"1008"},{"station":"hta","name":"黑台","type":"HQB","simple":"heitai","base":"ht","code":"1009"},{"station":"hta","name":"桓台","type":"VTK","simple":"huantai","base":"ht","code":"1010"},{"station":"hti","name":"和田","type":"VTR","simple":"hetian","base":"ht","code":"1011"},{"station":"hto","name":"会同","type":"VTQ","simple":"huitong","base":"ht","code":"1012"},{"station":"htz","name":"海坨子","type":"HZT","simple":"haituozi","base":"htz","code":"1013"},{"station":"hwa","name":"黑旺","type":"HWK","simple":"heiwang","base":"hw","code":"1014"},{"station":"hwa","name":"海湾","type":"RWH","simple":"haiwan","base":"hw","code":"1015"},{"station":"hxi","name":"红星","type":"VXB","simple":"hongxing","base":"hx","code":"1016"},{"station":"hxi","name":"徽县","type":"HYY","simple":"huixian","base":"hx","code":"1017"},{"station":"hxl","name":"红兴隆","type":"VHB","simple":"hongxinglong","base":"hxl","code":"1018"},{"station":"hxt","name":"换新天","type":"VTB","simple":"huanxintian","base":"hxt","code":"1019"},{"station":"hxt","name":"红岘台","type":"HTJ","simple":"hongxiantai","base":"hxt","code":"1020"},{"station":"hya","name":"红彦","type":"VIX","simple":"hongyan","base":"hy","code":"1021"},{"station":"hya","name":"合阳","type":"HAY","simple":"heyang","base":"hy","code":"1022"},{"station":"hya","name":"海阳","type":"HYK","simple":"haiyang","base":"hy","code":"1023"},{"station":"hyd","name":"衡阳东","type":"HVQ","simple":"hengyangdong","base":"hyd","code":"1024"},{"station":"hyi","name":"华蓥","type":"HUW","simple":"huaying","base":"hy","code":"1025"},{"station":"hyi","name":"汉阴","type":"HQY","simple":"hanyin","base":"hy","code":"1026"},{"station":"hyt","name":"黄羊滩","type":"HGJ","simple":"huangyangtan","base":"hyt","code":"1027"},{"station":"hyu","name":"汉源","type":"WHW","simple":"hanyuan","base":"hy","code":"1028"},{"station":"hyu","name":"河源","type":"VIQ","simple":"heyuan","base":"hy","code":"1029"},{"station":"hyu","name":"花园","type":"HUN","simple":"huayuan","base":"hy","code":"1030"},{"station":"hyu","name":"湟源","type":"HNO","simple":"huangyuan","base":"hy","code":"1031"},{"station":"hyz","name":"黄羊镇","type":"HYJ","simple":"huangyangzhen","base":"hyz","code":"1032"},{"station":"hzh","name":"湖州","type":"VZH","simple":"huzhou","base":"hz","code":"1033"},{"station":"hzh","name":"化州","type":"HZZ","simple":"huazhou","base":"hz","code":"1034"},{"station":"hzh","name":"黄州","type":"VON","simple":"huangzhou","base":"hz","code":"1035"},{"station":"hzh","name":"霍州","type":"HZV","simple":"huozhou","base":"hz","code":"1036"},{"station":"hzx","name":"惠州西","type":"VXQ","simple":"huizhouxi","base":"hzx","code":"1037"},{"station":"jba","name":"巨宝","type":"JRT","simple":"jubao","base":"jb","code":"1038"},{"station":"jbi","name":"靖边","type":"JIY","simple":"jingbian","base":"jb","code":"1039"},{"station":"jbt","name":"金宝屯","type":"JBD","simple":"jinbaotun","base":"jbt","code":"1040"},{"station":"jcb","name":"晋城北","type":"JEF","simple":"jinchengbei","base":"jcb","code":"1041"},{"station":"jch","name":"金昌","type":"JCJ","simple":"jinchang","base":"jc","code":"1042"},{"station":"jch","name":"鄄城","type":"JCK","simple":"juancheng","base":"jc","code":"1043"},{"station":"jch","name":"交城","type":"JNV","simple":"jiaocheng","base":"jc","code":"1044"},{"station":"jch","name":"建昌","type":"JFD","simple":"jianchang","base":"jc","code":"1045"},{"station":"jde","name":"峻德","type":"JDB","simple":"junde","base":"jd","code":"1046"},{"station":"jdi","name":"井店","type":"JFP","simple":"jingdian","base":"jd","code":"1047"},{"station":"jdo","name":"鸡东","type":"JOB","simple":"jidong","base":"jd","code":"1048"},{"station":"jdu","name":"江都","type":"UDH","simple":"jiangdu","base":"jd","code":"1049"},{"station":"jgs","name":"鸡冠山","type":"JST","simple":"jiguanshan","base":"jgs","code":"1050"},{"station":"jgt","name":"金沟屯","type":"VGP","simple":"jingoutun","base":"jgt","code":"1051"},{"station":"jha","name":"静海","type":"JHP","simple":"jinghai","base":"jh","code":"1052"},{"station":"jhe","name":"金河","type":"JHX","simple":"jinhe","base":"jh","code":"1053"},{"station":"jhe","name":"锦河","type":"JHB","simple":"jinhe","base":"jh","code":"1054"},{"station":"jhe","name":"精河","type":"JHR","simple":"jinghe","base":"jh","code":"1055"},{"station":"jhn","name":"精河南","type":"JIR","simple":"jinghenan","base":"jhn","code":"1056"},{"station":"jhu","name":"江华","type":"JHZ","simple":"jianghua","base":"jh","code":"1057"},{"station":"jhu","name":"建湖","type":"AJH","simple":"jianhu","base":"jh","code":"1058"},{"station":"jjg","name":"纪家沟","type":"VJD","simple":"jijiagou","base":"jjg","code":"1059"},{"station":"jji","name":"晋江","type":"JJS","simple":"jinjiang","base":"jj","code":"1060"},{"station":"jji","name":"姜家","type":"JJB","simple":"jiangjia","base":"jj","code":"1061"},{"station":"jji","name":"江津","type":"JJW","simple":"jiangjin","base":"jj","code":"1062"},{"station":"jke","name":"金坑","type":"JKT","simple":"jinkeng","base":"jk","code":"1063"},{"station":"jli","name":"芨岭","type":"JLJ","simple":"jiling","base":"jl","code":"1064"},{"station":"jmc","name":"金马村","type":"JMM","simple":"jinmacun","base":"jmc","code":"1065"},{"station":"jme","name":"江门","type":"JWQ","simple":"jiangmen","base":"jm","code":"1066"},{"station":"jme","name":"角美","type":"JES","simple":"jiaomei","base":"jm","code":"1067"},{"station":"jna","name":"莒南","type":"JOK","simple":"junan","base":"jn","code":"1068"},{"station":"jna","name":"井南","type":"JNP","simple":"jingnan","base":"jn","code":"1069"},{"station":"jou","name":"建瓯","type":"JVS","simple":"jianou","base":"jo","code":"1070"},{"station":"jpe","name":"经棚","type":"JPC","simple":"jingpeng","base":"jp","code":"1071"},{"station":"jqi","name":"江桥","type":"JQX","simple":"jiangqiao","base":"jq","code":"1072"},{"station":"jsa","name":"九三","type":"SSX","simple":"jiusan","base":"js","code":"1073"},{"station":"jsb","name":"金山北","type":"EGH","simple":"jinshanbei","base":"jsb","code":"1074"},{"station":"jsh","name":"京山","type":"JCN","simple":"jingshan","base":"js","code":"1075"},{"station":"jsh","name":"建始","type":"JRN","simple":"jianshi","base":"js","code":"1076"},{"station":"jsh","name":"嘉善","type":"JSH","simple":"jiashan","base":"js","code":"1077"},{"station":"jsh","name":"稷山","type":"JVV","simple":"jishan","base":"js","code":"1078"},{"station":"jsh","name":"吉舒","type":"JSL","simple":"jishu","base":"js","code":"1079"},{"station":"jsh","name":"建设","type":"JET","simple":"jianshe","base":"js","code":"1080"},{"station":"jsh","name":"甲山","type":"JOP","simple":"jiashan","base":"js","code":"1081"},{"station":"jsj","name":"建三江","type":"JIB","simple":"jiansanjiang","base":"jsj","code":"1082"},{"station":"jsn","name":"嘉善南","type":"EAH","simple":"jiashannan","base":"jsn","code":"1083"},{"station":"jst","name":"金山屯","type":"JTB","simple":"jinshantun","base":"jst","code":"1084"},{"station":"jst","name":"江所田","type":"JOM","simple":"jiangsuotian","base":"jst","code":"1085"},{"station":"jta","name":"景泰","type":"JTJ","simple":"jingtai","base":"jt","code":"1086"},{"station":"jtn","name":"九台南","type":"JNL","simple":"jiutainan","base":"jtn","code":"1087"},{"station":"jwe","name":"吉文","type":"JWX","simple":"jiwen","base":"jw","code":"1088"},{"station":"jxi","name":"进贤","type":"JUG","simple":"jinxian","base":"jx","code":"1089"},{"station":"jxi","name":"莒县","type":"JKK","simple":"juxian","base":"jx","code":"1090"},{"station":"jxi","name":"嘉祥","type":"JUK","simple":"jiaxiang","base":"jx","code":"1091"},{"station":"jxi","name":"介休","type":"JXV","simple":"jiexiu","base":"jx","code":"1092"},{"station":"jxi","name":"嘉兴","type":"JXH","simple":"jiaxing","base":"jx","code":"1093"},{"station":"jxi","name":"井陉","type":"JJP","simple":"jingxing","base":"jx","code":"1094"},{"station":"jxn","name":"嘉兴南","type":"EPH","simple":"jiaxingnan","base":"jxn","code":"1095"},{"station":"jxz","name":"夹心子","type":"JXT","simple":"jiaxinzi","base":"jxz","code":"1096"},{"station":"jya","name":"揭阳","type":"JRQ","simple":"jieyang","base":"jy","code":"1097"},{"station":"jya","name":"建阳","type":"JYS","simple":"jianyang","base":"jy","code":"1098"},{"station":"jya","name":"姜堰","type":"UEH","simple":"jiangyan","base":"jy","code":"1099"},{"station":"jya","name":"简阳","type":"JYW","simple":"jianyang","base":"jy","code":"1100"},{"station":"jye","name":"巨野","type":"JYK","simple":"juye","base":"jy","code":"1101"},{"station":"jyo","name":"江永","type":"JYZ","simple":"jiangyong","base":"jy","code":"1102"},{"station":"jyu","name":"靖远","type":"JYJ","simple":"jingyuan","base":"jy","code":"1103"},{"station":"jyu","name":"缙云","type":"JYH","simple":"jinyun","base":"jy","code":"1104"},{"station":"jyu","name":"江源","type":"SZL","simple":"jiangyuan","base":"jy","code":"1105"},{"station":"jyu","name":"济源","type":"JYF","simple":"jiyuan","base":"jy","code":"1106"},{"station":"jyx","name":"靖远西","type":"JXJ","simple":"jingyuanxi","base":"jyx","code":"1107"},{"station":"jzb","name":"胶州北","type":"JZK","simple":"jiaozhoubei","base":"jzb","code":"1108"},{"station":"jzd","name":"焦作东","type":"WEF","simple":"jiaozuodong","base":"jzd","code":"1109"},{"station":"jzh","name":"靖州","type":"JEQ","simple":"jingzhou","base":"jz","code":"1110"},{"station":"jzh","name":"荆州","type":"JBN","simple":"jingzhou","base":"jz","code":"1111"},{"station":"jzh","name":"金寨","type":"JZH","simple":"jinzhai","base":"jz","code":"1112"},{"station":"jzh","name":"胶州","type":"JXK","simple":"jiaozhou","base":"jz","code":"1113"},{"station":"jzh","name":"晋州","type":"JXP","simple":"jinzhou","base":"jz","code":"1114"},{"station":"jzn","name":"锦州南","type":"JOD","simple":"jinzhounan","base":"jzn","code":"1115"},{"station":"jzu","name":"焦作","type":"JOF","simple":"jiaozuo","base":"jz","code":"1116"},{"station":"jzw","name":"旧庄窝","type":"JVP","simple":"jiuzhuangwo","base":"jzw","code":"1117"},{"station":"jzz","name":"金杖子","type":"JYD","simple":"jinzhangzi","base":"jzz","code":"1118"},{"station":"kan","name":"开安","type":"KAT","simple":"kaian","base":"ka","code":"1119"},{"station":"kch","name":"库车","type":"KCR","simple":"kuche","base":"kc","code":"1120"},{"station":"kch","name":"康城","type":"KCP","simple":"kangcheng","base":"kc","code":"1121"},{"station":"kde","name":"库都尔","type":"KDX","simple":"kuduer","base":"kde","code":"1122"},{"station":"kdi","name":"宽甸","type":"KDT","simple":"kuandian","base":"kd","code":"1123"},{"station":"kdo","name":"克东","type":"KOB","simple":"kedong","base":"kd","code":"1124"},{"station":"kdz","name":"昆独仑召","type":"KDC","simple":"kundulunzhao","base":"kdlz","code":"1125"},{"station":"kji","name":"开江","type":"KAW","simple":"kaijiang","base":"kj","code":"1126"},{"station":"kjj","name":"康金井","type":"KJB","simple":"kangjinjing","base":"kjj","code":"1127"},{"station":"klq","name":"喀喇其","type":"KQX","simple":"kalaqi","base":"klq","code":"1128"},{"station":"klu","name":"开鲁","type":"KLC","simple":"kailu","base":"kl","code":"1129"},{"station":"kly","name":"克拉玛依","type":"KHR","simple":"kelamayi","base":"klmy","code":"1130"},{"station":"kqi","name":"口前","type":"KQL","simple":"kouqian","base":"kq","code":"1131"},{"station":"ksh","name":"奎山","type":"KAB","simple":"kuishan","base":"ks","code":"1132"},{"station":"ksh","name":"昆山","type":"KSH","simple":"kunshan","base":"ks","code":"1133"},{"station":"ksh","name":"克山","type":"KSB","simple":"keshan","base":"ks","code":"1134"},{"station":"kto","name":"开通","type":"KTT","simple":"kaitong","base":"kt","code":"1135"},{"station":"kxl","name":"康熙岭","type":"KXZ","simple":"kangxiling","base":"kxl","code":"1136"},{"station":"kya","name":"昆阳","type":"KAM","simple":"kunyang","base":"ky","code":"1137"},{"station":"kyh","name":"克一河","type":"KHX","simple":"keyihe","base":"kyh","code":"1138"},{"station":"kyx","name":"开原西","type":"KXT","simple":"kaiyuanxi","base":"kyx","code":"1139"},{"station":"kzh","name":"康庄","type":"KZP","simple":"kangzhuang","base":"kz","code":"1140"},{"station":"lbi","name":"来宾","type":"UBZ","simple":"laibin","base":"lb","code":"1141"},{"station":"lbi","name":"老边","type":"LLT","simple":"laobian","base":"lb","code":"1142"},{"station":"lbx","name":"灵宝西","type":"LPF","simple":"lingbaoxi","base":"lbx","code":"1143"},{"station":"lch","name":"龙川","type":"LUQ","simple":"longchuan","base":"lc","code":"1144"},{"station":"lch","name":"乐昌","type":"LCQ","simple":"lechang","base":"lc","code":"1145"},{"station":"lch","name":"黎城","type":"UCP","simple":"licheng","base":"lc","code":"1146"},{"station":"lch","name":"聊城","type":"UCK","simple":"liaocheng","base":"lc","code":"1147"},{"station":"lcu","name":"蓝村","type":"LCK","simple":"lancun","base":"lc","code":"1148"},{"station":"lda","name":"两当","type":"LDY","simple":"liangdang","base":"ld","code":"1149"},{"station":"ldo","name":"林东","type":"LRC","simple":"lindong","base":"ld","code":"1150"},{"station":"ldu","name":"乐都","type":"LDO","simple":"ledu","base":"ld","code":"1151"},{"station":"ldx","name":"梁底下","type":"LDP","simple":"liangdixia","base":"ldx","code":"1152"},{"station":"ldz","name":"六道河子","type":"LVP","simple":"liudaohezi","base":"ldhz","code":"1153"},{"station":"lfa","name":"鲁番","type":"LVM","simple":"lufan","base":"lf","code":"1154"},{"station":"lfa","name":"廊坊","type":"LJP","simple":"langfang","base":"lf","code":"1155"},{"station":"lfa","name":"落垡","type":"LOP","simple":"luofa","base":"lf","code":"1156"},{"station":"lfb","name":"廊坊北","type":"LFP","simple":"langfangbei","base":"lfb","code":"1157"},{"station":"lfu","name":"老府","type":"UFD","simple":"laofu","base":"lf","code":"1158"},{"station":"lga","name":"兰岗","type":"LNB","simple":"langang","base":"lg","code":"1159"},{"station":"lgd","name":"龙骨甸","type":"LGM","simple":"longgudian","base":"lgd","code":"1160"},{"station":"lgo","name":"芦沟","type":"LOM","simple":"lugou","base":"lg","code":"1161"},{"station":"lgo","name":"龙沟","type":"LGJ","simple":"longgou","base":"lg","code":"1162"},{"station":"lgu","name":"拉古","type":"LGB","simple":"lagu","base":"lg","code":"1163"},{"station":"lha","name":"临海","type":"UFH","simple":"linhai","base":"lh","code":"1164"},{"station":"lha","name":"林海","type":"LXX","simple":"linhai","base":"lh","code":"1165"},{"station":"lha","name":"拉哈","type":"LHX","simple":"laha","base":"lh","code":"1166"},{"station":"lha","name":"凌海","type":"JID","simple":"linghai","base":"lh","code":"1167"},{"station":"lhe","name":"柳河","type":"LNL","simple":"liuhe","base":"lh","code":"1168"},{"station":"lhe","name":"六合","type":"KLH","simple":"liuhe","base":"lh","code":"1169"},{"station":"lhu","name":"龙华","type":"LHP","simple":"longhua","base":"lh","code":"1170"},{"station":"lhy","name":"滦河沿","type":"UNP","simple":"luanheyan","base":"lhy","code":"1171"},{"station":"lhz","name":"六合镇","type":"LEX","simple":"liuhezhen","base":"lhz","code":"1172"},{"station":"ljd","name":"亮甲店","type":"LRT","simple":"liangjiadian","base":"ljd","code":"1173"},{"station":"ljd","name":"刘家店","type":"UDT","simple":"liujiadian","base":"ljd","code":"1174"},{"station":"ljh","name":"刘家河","type":"LVT","simple":"liujiahe","base":"ljh","code":"1175"},{"station":"lji","name":"连江","type":"LKS","simple":"lianjiang","base":"lj","code":"1176"},{"station":"lji","name":"李家","type":"LJB","simple":"lijia","base":"lj","code":"1177"},{"station":"lji","name":"罗江","type":"LJW","simple":"luojiang","base":"lj","code":"1178"},{"station":"lji","name":"廉江","type":"LJZ","simple":"lianjiang","base":"lj","code":"1179"},{"station":"lji","name":"庐江","type":"UJH","simple":"lujiang","base":"lj","code":"1180"},{"station":"lji","name":"两家","type":"UJT","simple":"liangjia","base":"lj","code":"1181"},{"station":"lji","name":"龙江","type":"LJX","simple":"longjiang","base":"lj","code":"1182"},{"station":"lji","name":"龙嘉","type":"UJL","simple":"longjia","base":"lj","code":"1183"},{"station":"ljk","name":"莲江口","type":"LHB","simple":"lianjiangkou","base":"ljk","code":"1184"},{"station":"ljl","name":"蔺家楼","type":"ULK","simple":"linjialou","base":"ljl","code":"1185"},{"station":"ljp","name":"李家坪","type":"LIJ","simple":"lijiaping","base":"ljp","code":"1186"},{"station":"lka","name":"兰考","type":"LKF","simple":"lankao","base":"lk","code":"1187"},{"station":"lko","name":"林口","type":"LKB","simple":"linkou","base":"lk","code":"1188"},{"station":"lkp","name":"路口铺","type":"LKQ","simple":"lukoupu","base":"lkp","code":"1189"},{"station":"lla","name":"老莱","type":"LAX","simple":"laolai","base":"ll","code":"1190"},{"station":"lli","name":"拉林","type":"LAB","simple":"lalin","base":"ll","code":"1191"},{"station":"lli","name":"陆良","type":"LRM","simple":"luliang","base":"ll","code":"1192"},{"station":"lli","name":"龙里","type":"LLW","simple":"longli","base":"ll","code":"1193"},{"station":"lli","name":"临澧","type":"LWQ","simple":"linli","base":"ll","code":"1194"},{"station":"lli","name":"兰棱","type":"LLB","simple":"lanling","base":"ll","code":"1195"},{"station":"lli","name":"零陵","type":"UWZ","simple":"lingling","base":"ll","code":"1196"},{"station":"llo","name":"卢龙","type":"UAP","simple":"lulong","base":"ll","code":"1197"},{"station":"lmd","name":"喇嘛甸","type":"LMX","simple":"lamadian","base":"lmd","code":"1198"},{"station":"lmd","name":"里木店","type":"LMB","simple":"limudian","base":"lmd","code":"1199"},{"station":"lme","name":"洛门","type":"LMJ","simple":"luomen","base":"lm","code":"1200"},{"station":"lna","name":"龙南","type":"UNG","simple":"longnan","base":"ln","code":"1201"},{"station":"lpi","name":"梁平","type":"UQW","simple":"liangping","base":"lp","code":"1202"},{"station":"lpi","name":"罗平","type":"LPM","simple":"luoping","base":"lp","code":"1203"},{"station":"lpl","name":"落坡岭","type":"LPP","simple":"luopoling","base":"lpl","code":"1204"},{"station":"lps","name":"六盘山","type":"UPJ","simple":"liupanshan","base":"lps","code":"1205"},{"station":"lps","name":"乐平市","type":"LPG","simple":"lepingshi","base":"lps","code":"1206"},{"station":"lqi","name":"临清","type":"UQK","simple":"linqing","base":"lq","code":"1207"},{"station":"lqs","name":"龙泉寺","type":"UQJ","simple":"longquansi","base":"lqs","code":"1208"},{"station":"lsb","name":"乐山北","type":"UTW","simple":"leshanbei","base":"ls","code":"1209"},{"station":"lsc","name":"乐善村","type":"LUM","simple":"leshancun","base":"lsc","code":"1210"},{"station":"lsd","name":"冷水江东","type":"UDQ","simple":"lengshuijiangdong","base":"lsjd","code":"1211"},{"station":"lsg","name":"连山关","type":"LGT","simple":"lianshanguan","base":"lsg","code":"1212"},{"station":"lsg","name":"流水沟","type":"USP","simple":"liushuigou","base":"lsg","code":"1213"},{"station":"lsh","name":"陵水","type":"LIQ","simple":"lingshui","base":"ls","code":"1214"},{"station":"lsh","name":"罗山","type":"LRN","simple":"luoshan","base":"ls","code":"1215"},{"station":"lsh","name":"鲁山","type":"LAF","simple":"lushan","base":"ls","code":"1216"},{"station":"lsh","name":"丽水","type":"USH","simple":"lishui","base":"ls","code":"1217"},{"station":"lsh","name":"梁山","type":"LMK","simple":"liangshan","base":"ls","code":"1218"},{"station":"lsh","name":"灵石","type":"LSV","simple":"lingshi","base":"ls","code":"1219"},{"station":"lsh","name":"露水河","type":"LUL","simple":"lushuihe","base":"lsh","code":"1220"},{"station":"lsh","name":"庐山","type":"LSG","simple":"lushan","base":"ls","code":"1221"},{"station":"lsp","name":"林盛堡","type":"LBT","simple":"linshengpu","base":"lsp","code":"1222"},{"station":"lst","name":"柳树屯","type":"LSD","simple":"liushutun","base":"lst","code":"1223"},{"station":"lsz","name":"龙山镇","type":"LAS","simple":"longshanzhen","base":"lsz","code":"1224"},{"station":"lsz","name":"梨树镇","type":"LSB","simple":"lishuzhen","base":"lsz","code":"1225"},{"station":"lsz","name":"李石寨","type":"LET","simple":"lishizhai","base":"lsz","code":"1226"},{"station":"lta","name":"黎塘","type":"LTZ","simple":"litang","base":"lt","code":"1227"},{"station":"lta","name":"轮台","type":"LAR","simple":"luntai","base":"lt","code":"1228"},{"station":"lta","name":"芦台","type":"LTP","simple":"lutai","base":"lt","code":"1229"},{"station":"ltb","name":"龙塘坝","type":"LBM","simple":"longtangba","base":"ltb","code":"1230"},{"station":"ltu","name":"濑湍","type":"LVZ","simple":"laituan","base":"lt","code":"1231"},{"station":"ltx","name":"骆驼巷","type":"LTJ","simple":"luotuoxiang","base":"ltx","code":"1232"},{"station":"lwa","name":"李旺","type":"VLJ","simple":"liwang","base":"lw","code":"1233"},{"station":"lwd","name":"莱芜东","type":"LWK","simple":"laiwudong","base":"lwd","code":"1234"},{"station":"lws","name":"狼尾山","type":"LRJ","simple":"langweishan","base":"lws","code":"1235"},{"station":"lwu","name":"灵武","type":"LNJ","simple":"lingwu","base":"lw","code":"1236"},{"station":"lwx","name":"莱芜西","type":"UXK","simple":"laiwuxi","base":"lwx","code":"1237"},{"station":"lxi","name":"朗乡","type":"LXB","simple":"langxiang","base":"lx","code":"1238"},{"station":"lxi","name":"陇县","type":"LXY","simple":"longxian","base":"lx","code":"1239"},{"station":"lxi","name":"临湘","type":"LXQ","simple":"linxiang","base":"lx","code":"1240"},{"station":"lxi","name":"芦溪","type":"LUG","simple":"luxi","base":"lx","code":"1241"},{"station":"lxi","name":"莱西","type":"LXK","simple":"laixi","base":"lx","code":"1242"},{"station":"lxi","name":"林西","type":"LXC","simple":"linxi","base":"lx","code":"1243"},{"station":"lxi","name":"滦县","type":"UXP","simple":"luanxian","base":"lx","code":"1244"},{"station":"lya","name":"略阳","type":"LYY","simple":"lueyang","base":"ly","code":"1245"},{"station":"lya","name":"莱阳","type":"LYK","simple":"laiyang","base":"ly","code":"1246"},{"station":"lya","name":"辽阳","type":"LYT","simple":"liaoyang","base":"ly","code":"1247"},{"station":"lyb","name":"临沂北","type":"UYK","simple":"linyibei","base":"lyb","code":"1248"},{"station":"lyd","name":"凌源东","type":"LDD","simple":"lingyuandong","base":"lyd","code":"1249"},{"station":"lyg","name":"连云港","type":"UIH","simple":"lianyungang","base":"lyg","code":"1250"},{"station":"lyi","name":"临颍","type":"LNF","simple":"linying","base":"ly","code":"1251"},{"station":"lyi","name":"老营","type":"LXL","simple":"laoying","base":"ly","code":"1252"},{"station":"lyo","name":"龙游","type":"LMH","simple":"longyou","base":"ly","code":"1253"},{"station":"lyu","name":"罗源","type":"LVS","simple":"luoyuan","base":"ly","code":"1254"},{"station":"lyu","name":"林源","type":"LYX","simple":"linyuan","base":"ly","code":"1255"},{"station":"lyu","name":"涟源","type":"LAQ","simple":"lianyuan","base":"ly","code":"1256"},{"station":"lyu","name":"涞源","type":"LYP","simple":"laiyuan","base":"ly","code":"1257"},{"station":"lyx","name":"耒阳西","type":"LPQ","simple":"leiyangxi","base":"lyx","code":"1258"},{"station":"lze","name":"临泽","type":"LEJ","simple":"linze","base":"lz","code":"1259"},{"station":"lzg","name":"龙爪沟","type":"LZT","simple":"longzhuagou","base":"lzg","code":"1260"},{"station":"lzh","name":"雷州","type":"UAQ","simple":"leizhou","base":"lz","code":"1261"},{"station":"lzh","name":"六枝","type":"LIW","simple":"liuzhi","base":"lz","code":"1262"},{"station":"lzh","name":"鹿寨","type":"LIZ","simple":"luzhai","base":"lz","code":"1263"},{"station":"lzh","name":"来舟","type":"LZS","simple":"laizhou","base":"lz","code":"1264"},{"station":"lzh","name":"龙镇","type":"LZA","simple":"longzhen","base":"lz","code":"1265"},{"station":"lzh","name":"拉鲊","type":"LEM","simple":"lazha","base":"lz","code":"1266"},{"station":"lzq","name":"兰州新区","type":"LQJ","simple":"lanzhouxinqu","base":"lzxq","code":"1267"},{"station":"mas","name":"马鞍山","type":"MAH","simple":"maanshan","base":"mas","code":"1268"},{"station":"mba","name":"毛坝","type":"MBY","simple":"maoba","base":"mb","code":"1269"},{"station":"mbg","name":"毛坝关","type":"MGY","simple":"maobaguan","base":"mbg","code":"1270"},{"station":"mcb","name":"麻城北","type":"MBN","simple":"machengbei","base":"mcb","code":"1271"},{"station":"mch","name":"渑池","type":"MCF","simple":"mianchi","base":"mc","code":"1272"},{"station":"mch","name":"明城","type":"MCL","simple":"mingcheng","base":"mc","code":"1273"},{"station":"mch","name":"庙城","type":"MAP","simple":"miaocheng","base":"mc","code":"1274"},{"station":"mcn","name":"渑池南","type":"MNF","simple":"mianchinan","base":"mcn","code":"1275"},{"station":"mcp","name":"茅草坪","type":"KPM","simple":"maocaoping","base":"mcp","code":"1276"},{"station":"mdh","name":"猛洞河","type":"MUQ","simple":"mengdonghe","base":"mdh","code":"1277"},{"station":"mds","name":"磨刀石","type":"MOB","simple":"modaoshi","base":"mds","code":"1278"},{"station":"mdu","name":"弥渡","type":"MDF","simple":"midu","base":"md","code":"1279"},{"station":"mes","name":"帽儿山","type":"MRB","simple":"maoershan","base":"mes","code":"1280"},{"station":"mga","name":"明港","type":"MGN","simple":"minggang","base":"mg","code":"1281"},{"station":"mhk","name":"梅河口","type":"MHL","simple":"meihekou","base":"mhk","code":"1282"},{"station":"mhu","name":"马皇","type":"MHZ","simple":"mahuang","base":"mh","code":"1283"},{"station":"mjg","name":"孟家岗","type":"MGB","simple":"mengjiagang","base":"mjg","code":"1284"},{"station":"mla","name":"美兰","type":"MHQ","simple":"meilan","base":"ml","code":"1285"},{"station":"mld","name":"汨罗东","type":"MQQ","simple":"miluodong","base":"mld","code":"1286"},{"station":"mlh","name":"马莲河","type":"MHB","simple":"malianhe","base":"mlh","code":"1287"},{"station":"mli","name":"茅岭","type":"MLZ","simple":"maoling","base":"ml","code":"1288"},{"station":"mli","name":"庙岭","type":"MLL","simple":"miaoling","base":"ml","code":"1289"},{"station":"mli","name":"茂林","type":"MLD","simple":"maolin","base":"ml","code":"1290"},{"station":"mli","name":"穆棱","type":"MLB","simple":"muling","base":"ml","code":"1291"},{"station":"mli","name":"马林","type":"MID","simple":"malin","base":"ml","code":"1292"},{"station":"mlo","name":"马龙","type":"MGM","simple":"malong","base":"ml","code":"1293"},{"station":"mlt","name":"木里图","type":"MUD","simple":"mulitu","base":"mlt","code":"1294"},{"station":"mlu","name":"汨罗","type":"MLQ","simple":"miluo","base":"ml","code":"1295"},{"station":"mnh","name":"玛纳斯湖","type":"MNR","simple":"manasihu","base":"mnsh","code":"1296"},{"station":"mni","name":"冕宁","type":"UGW","simple":"mianning","base":"mn","code":"1297"},{"station":"mpa","name":"沐滂","type":"MPQ","simple":"mupang","base":"mp","code":"1298"},{"station":"mqh","name":"马桥河","type":"MQB","simple":"maqiaohe","base":"mqh","code":"1299"},{"station":"mqi","name":"闽清","type":"MQS","simple":"minqing","base":"mq","code":"1300"},{"station":"mqu","name":"民权","type":"MQF","simple":"minquan","base":"mq","code":"1301"},{"station":"msh","name":"明水河","type":"MUT","simple":"mingshuihe","base":"msh","code":"1302"},{"station":"msh","name":"麻山","type":"MAB","simple":"mashan","base":"ms","code":"1303"},{"station":"msh","name":"眉山","type":"MSW","simple":"meishan","base":"ms","code":"1304"},{"station":"msw","name":"漫水湾","type":"MKW","simple":"manshuiwan","base":"msw","code":"1305"},{"station":"msz","name":"茂舍祖","type":"MOM","simple":"maoshezu","base":"msz","code":"1306"},{"station":"msz","name":"米沙子","type":"MST","simple":"mishazi","base":"msz","code":"1307"},{"station":"mxi","name":"美溪","type":"MEB","simple":"meixi","base":"mx","code":"1308"},{"station":"mxi","name":"勉县","type":"MVY","simple":"mianxian","base":"mx","code":"1309"},{"station":"mya","name":"麻阳","type":"MVQ","simple":"mayang","base":"my","code":"1310"},{"station":"myb","name":"密云北","type":"MUP","simple":"miyunbei","base":"myb","code":"1311"},{"station":"myi","name":"米易","type":"MMW","simple":"miyi","base":"my","code":"1312"},{"station":"myu","name":"麦园","type":"MYS","simple":"maiyuan","base":"my","code":"1313"},{"station":"myu","name":"墨玉","type":"MUR","simple":"moyu","base":"my","code":"1314"},{"station":"mzh","name":"庙庄","type":"MZJ","simple":"miaozhuang","base":"mz","code":"1315"},{"station":"mzh","name":"米脂","type":"MEY","simple":"mizhi","base":"mz","code":"1316"},{"station":"mzh","name":"明珠","type":"MFQ","simple":"mingzhu","base":"mz","code":"1317"},{"station":"nan","name":"宁安","type":"NAB","simple":"ningan","base":"na","code":"1318"},{"station":"nan","name":"农安","type":"NAT","simple":"nongan","base":"na","code":"1319"},{"station":"nbs","name":"南博山","type":"NBK","simple":"nanboshan","base":"nbs","code":"1320"},{"station":"nch","name":"南仇","type":"NCK","simple":"nanqiu","base":"nc","code":"1321"},{"station":"ncs","name":"南城司","type":"NSP","simple":"nanchengsi","base":"ncs","code":"1322"},{"station":"ncu","name":"宁村","type":"NCZ","simple":"ningcun","base":"nc","code":"1323"},{"station":"nde","name":"宁德","type":"NES","simple":"ningde","base":"nd","code":"1324"},{"station":"ngc","name":"南观村","type":"NGP","simple":"nanguancun","base":"ngc","code":"1325"},{"station":"ngd","name":"南宫东","type":"NFP","simple":"nangongdong","base":"ngd","code":"1326"},{"station":"ngl","name":"南关岭","type":"NLT","simple":"nanguanling","base":"ngl","code":"1327"},{"station":"ngu","name":"宁国","type":"NNH","simple":"ningguo","base":"ng","code":"1328"},{"station":"nha","name":"宁海","type":"NHH","simple":"ninghai","base":"nh","code":"1329"},{"station":"nhc","name":"南河川","type":"NHJ","simple":"nanhechuan","base":"nhc","code":"1330"},{"station":"nhu","name":"南华","type":"NHS","simple":"nanhua","base":"nh","code":"1331"},{"station":"nhz","name":"泥河子","type":"NHD","simple":"nihezi","base":"nhz","code":"1332"},{"station":"nji","name":"宁家","type":"NVT","simple":"ningjia","base":"nj","code":"1333"},{"station":"nji","name":"南靖","type":"NJS","simple":"nanjing","base":"nj","code":"1334"},{"station":"nji","name":"牛家","type":"NJB","simple":"niujia","base":"nj","code":"1335"},{"station":"nji","name":"能家","type":"NJD","simple":"nengjia","base":"nj","code":"1336"},{"station":"nko","name":"南口","type":"NKP","simple":"nankou","base":"nk","code":"1337"},{"station":"nkq","name":"南口前","type":"NKT","simple":"nankouqian","base":"nkq","code":"1338"},{"station":"nla","name":"南朗","type":"NNQ","simple":"nanlang","base":"nl","code":"1339"},{"station":"nli","name":"乃林","type":"NLD","simple":"nailin","base":"nl","code":"1340"},{"station":"nlk","name":"尼勒克","type":"NIR","simple":"nileke","base":"nlk","code":"1341"},{"station":"nlu","name":"那罗","type":"ULZ","simple":"naluo","base":"nl","code":"1342"},{"station":"nlx","name":"宁陵县","type":"NLF","simple":"ninglingxian","base":"nlx","code":"1343"},{"station":"nma","name":"奈曼","type":"NMD","simple":"naiman","base":"nm","code":"1344"},{"station":"nmi","name":"宁明","type":"NMZ","simple":"ningming","base":"nm","code":"1345"},{"station":"nmu","name":"南木","type":"NMX","simple":"nanmu","base":"nm","code":"1346"},{"station":"npn","name":"南平南","type":"NNS","simple":"nanpingnan","base":"npn","code":"1347"},{"station":"npu","name":"那铺","type":"NPZ","simple":"napu","base":"np","code":"1348"},{"station":"nqi","name":"南桥","type":"NQD","simple":"nanqiao","base":"nq","code":"1349"},{"station":"nqu","name":"那曲","type":"NQO","simple":"naqu","base":"nq","code":"1350"},{"station":"nqu","name":"暖泉","type":"NQJ","simple":"nuanquan","base":"nq","code":"1351"},{"station":"nta","name":"南台","type":"NTT","simple":"nantai","base":"nt","code":"1352"},{"station":"nto","name":"南头","type":"NOQ","simple":"nantou","base":"nt","code":"1353"},{"station":"nwu","name":"宁武","type":"NWV","simple":"ningwu","base":"nw","code":"1354"},{"station":"nwz","name":"南湾子","type":"NWP","simple":"nanwanzi","base":"nwz","code":"1355"},{"station":"nxb","name":"南翔北","type":"NEH","simple":"nanxiangbei","base":"nxb","code":"1356"},{"station":"nxi","name":"宁乡","type":"NXQ","simple":"ningxiang","base":"nx","code":"1357"},{"station":"nxi","name":"内乡","type":"NXF","simple":"neixiang","base":"nx","code":"1358"},{"station":"nxt","name":"牛心台","type":"NXT","simple":"niuxintai","base":"nxt","code":"1359"},{"station":"nyu","name":"南峪","type":"NUP","simple":"nanyu","base":"ny","code":"1360"},{"station":"nzg","name":"娘子关","type":"NIP","simple":"niangziguan","base":"nzg","code":"1361"},{"station":"nzh","name":"南召","type":"NAF","simple":"nanzhao","base":"nz","code":"1362"},{"station":"nzm","name":"南杂木","type":"NZT","simple":"nanzamu","base":"nzm","code":"1363"},{"station":"pan","name":"蓬安","type":"PAW","simple":"pengan","base":"pa","code":"1364"},{"station":"pan","name":"平安","type":"PAL","simple":"pingan","base":"pa","code":"1365"},{"station":"pay","name":"平安驿","type":"PNO","simple":"pinganyi","base":"pay","code":"1366"},{"station":"paz","name":"磐安镇","type":"PAJ","simple":"pananzhen","base":"paz","code":"1367"},{"station":"paz","name":"平安镇","type":"PZT","simple":"pinganzhen","base":"paz","code":"1368"},{"station":"pcd","name":"蒲城东","type":"PEY","simple":"puchengdong","base":"pcd","code":"1369"},{"station":"pch","name":"蒲城","type":"PCY","simple":"pucheng","base":"pc","code":"1370"},{"station":"pde","name":"裴德","type":"PDB","simple":"peide","base":"pd","code":"1371"},{"station":"pdi","name":"偏店","type":"PRP","simple":"piandian","base":"pd","code":"1372"},{"station":"pdx","name":"平顶山西","type":"BFF","simple":"pingdingshanxi","base":"pdsx","code":"1373"},{"station":"pdx","name":"坡底下","type":"PXJ","simple":"podixia","base":"pdx","code":"1374"},{"station":"pet","name":"瓢儿屯","type":"PRT","simple":"piaoertun","base":"pet","code":"1375"},{"station":"pfa","name":"平房","type":"PFB","simple":"pingfang","base":"pf","code":"1376"},{"station":"pga","name":"平岗","type":"PGL","simple":"pinggang","base":"pg","code":"1377"},{"station":"pgu","name":"平关","type":"PGM","simple":"pingguan","base":"pg","code":"1378"},{"station":"pgu","name":"盘关","type":"PAM","simple":"panguan","base":"pg","code":"1379"},{"station":"pgu","name":"平果","type":"PGZ","simple":"pingguo","base":"pg","code":"1380"},{"station":"phb","name":"徘徊北","type":"PHP","simple":"paihuaibei","base":"phb","code":"1381"},{"station":"phk","name":"平河口","type":"PHM","simple":"pinghekou","base":"phk","code":"1382"},{"station":"phu","name":"平湖","type":"PHQ","simple":"pinghu","base":"ph","code":"1383"},{"station":"pjb","name":"盘锦北","type":"PBD","simple":"panjinbei","base":"pjb","code":"1384"},{"station":"pjd","name":"潘家店","type":"PDP","simple":"panjiadian","base":"pjd","code":"1385"},{"station":"pkn","name":"皮口南","type":"PKT","simple":"pikounan","base":"pk","code":"1386"},{"station":"pld","name":"普兰店","type":"PLT","simple":"pulandian","base":"pld","code":"1387"},{"station":"pli","name":"偏岭","type":"PNT","simple":"pianling","base":"pl","code":"1388"},{"station":"psh","name":"平山","type":"PSB","simple":"pingshan","base":"ps","code":"1389"},{"station":"psh","name":"彭山","type":"PSW","simple":"pengshan","base":"ps","code":"1390"},{"station":"psh","name":"皮山","type":"PSR","simple":"pishan","base":"ps","code":"1391"},{"station":"psh","name":"磐石","type":"PSL","simple":"panshi","base":"ps","code":"1392"},{"station":"psh","name":"平社","type":"PSV","simple":"pingshe","base":"ps","code":"1393"},{"station":"psh","name":"彭水","type":"PHW","simple":"pengshui","base":"ps","code":"1394"},{"station":"pta","name":"平台","type":"PVT","simple":"pingtai","base":"pt","code":"1395"},{"station":"pti","name":"平田","type":"PTM","simple":"pingtian","base":"pt","code":"1396"},{"station":"pti","name":"莆田","type":"PTS","simple":"putian","base":"pt","code":"1397"},{"station":"ptq","name":"葡萄菁","type":"PTW","simple":"putaojing","base":"ptj","code":"1398"},{"station":"pwa","name":"普湾","type":"PWT","simple":"puwan","base":"pw","code":"1399"},{"station":"pwa","name":"平旺","type":"PWV","simple":"pingwang","base":"pw","code":"1400"},{"station":"pxg","name":"平型关","type":"PGV","simple":"pingxingguan","base":"pxg","code":"1401"},{"station":"pxi","name":"普雄","type":"POW","simple":"puxiong","base":"px","code":"1402"},{"station":"pxi","name":"郫县","type":"PWW","simple":"pixian","base":"px","code":"1403"},{"station":"pya","name":"平洋","type":"PYX","simple":"pingyang","base":"py","code":"1404"},{"station":"pya","name":"彭阳","type":"PYJ","simple":"pengyang","base":"py","code":"1405"},{"station":"pya","name":"平遥","type":"PYV","simple":"pingyao","base":"py","code":"1406"},{"station":"pyi","name":"平邑","type":"PIK","simple":"pingyi","base":"py","code":"1407"},{"station":"pyp","name":"平原堡","type":"PPJ","simple":"pingyuanpu","base":"pyp","code":"1408"},{"station":"pyu","name":"平原","type":"PYK","simple":"pingyuan","base":"py","code":"1409"},{"station":"pyu","name":"平峪","type":"PYP","simple":"pingyu","base":"py","code":"1410"},{"station":"pze","name":"彭泽","type":"PZG","simple":"pengze","base":"pz","code":"1411"},{"station":"pzh","name":"邳州","type":"PJH","simple":"pizhou","base":"pz","code":"1412"},{"station":"pzh","name":"平庄","type":"PZD","simple":"pingzhuang","base":"pz","code":"1413"},{"station":"pzi","name":"泡子","type":"POD","simple":"paozi","base":"pz","code":"1414"},{"station":"pzn","name":"平庄南","type":"PND","simple":"pingzhuangnan","base":"pzn","code":"1415"},{"station":"qan","name":"乾安","type":"QOT","simple":"qianan","base":"qa","code":"1416"},{"station":"qan","name":"庆安","type":"QAB","simple":"qingan","base":"qa","code":"1417"},{"station":"qan","name":"迁安","type":"QQP","simple":"qianan","base":"qa","code":"1418"},{"station":"qdb","name":"祁东北","type":"QRQ","simple":"qidongbei","base":"qd","code":"1419"},{"station":"qdi","name":"七甸","type":"QDM","simple":"qidian","base":"qd","code":"1420"},{"station":"qfd","name":"曲阜东","type":"QAK","simple":"qufudong","base":"qfd","code":"1421"},{"station":"qfe","name":"庆丰","type":"QFT","simple":"qingfeng","base":"qf","code":"1422"},{"station":"qft","name":"奇峰塔","type":"QVP","simple":"qifengta","base":"qft","code":"1423"},{"station":"qfu","name":"曲阜","type":"QFK","simple":"qufu","base":"qf","code":"1424"},{"station":"qha","name":"琼海","type":"QYQ","simple":"qionghai","base":"qh","code":"1425"},{"station":"qhd","name":"秦皇岛","type":"QTP","simple":"qinhuangdao","base":"qhd","code":"1426"},{"station":"qhe","name":"千河","type":"QUY","simple":"qianhe","base":"qh","code":"1427"},{"station":"qhe","name":"清河","type":"QIP","simple":"qinghe","base":"qh","code":"1428"},{"station":"qhm","name":"清河门","type":"QHD","simple":"qinghemen","base":"qhm","code":"1429"},{"station":"qhy","name":"清华园","type":"QHP","simple":"qinghuayuan","base":"qhy","code":"1430"},{"station":"qji","name":"渠旧","type":"QJZ","simple":"qujiu","base":"qj","code":"1431"},{"station":"qji","name":"潜江","type":"QJN","simple":"qianjiang","base":"qj","code":"1432"},{"station":"qji","name":"全椒","type":"INH","simple":"quanjiao","base":"qj","code":"1433"},{"station":"qji","name":"秦家","type":"QJB","simple":"qinjia","base":"qj","code":"1434"},{"station":"qji","name":"綦江","type":"QJW","simple":"qijiang","base":"qj","code":"1435"},{"station":"qjp","name":"祁家堡","type":"QBT","simple":"qijiapu","base":"qjb","code":"1436"},{"station":"qjx","name":"清涧县","type":"QNY","simple":"qingjianxian","base":"qjx","code":"1437"},{"station":"qjz","name":"秦家庄","type":"QZV","simple":"qinjiazhuang","base":"qjz","code":"1438"},{"station":"qlh","name":"七里河","type":"QLD","simple":"qilihe","base":"qlh","code":"1439"},{"station":"qli","name":"秦岭","type":"QLY","simple":"qinling","base":"ql","code":"1440"},{"station":"qli","name":"渠黎","type":"QLZ","simple":"quli","base":"ql","code":"1441"},{"station":"qlo","name":"青龙","type":"QIB","simple":"qinglong","base":"ql","code":"1442"},{"station":"qls","name":"青龙山","type":"QGH","simple":"qinglongshan","base":"qls","code":"1443"},{"station":"qme","name":"祁门","type":"QIH","simple":"qimen","base":"qm","code":"1444"},{"station":"qmt","name":"前磨头","type":"QMP","simple":"qianmotou","base":"qmt","code":"1445"},{"station":"qsh","name":"青山","type":"QSB","simple":"qingshan","base":"qs","code":"1446"},{"station":"qsh","name":"确山","type":"QSN","simple":"queshan","base":"qs","code":"1447"},{"station":"qsh","name":"前山","type":"QXQ","simple":"qianshan","base":"qs","code":"1448"},{"station":"qsh","name":"清水","type":"QUJ","simple":"qingshui","base":"qs","code":"1449"},{"station":"qsy","name":"戚墅堰","type":"QYH","simple":"qishuyan","base":"qsy","code":"1450"},{"station":"qti","name":"青田","type":"QVH","simple":"qingtian","base":"qt","code":"1451"},{"station":"qto","name":"桥头","type":"QAT","simple":"qiaotou","base":"qt","code":"1452"},{"station":"qtx","name":"青铜峡","type":"QTJ","simple":"qingtongxia","base":"qtx","code":"1453"},{"station":"qwe","name":"前卫","type":"QWD","simple":"qianwei","base":"qw","code":"1454"},{"station":"qwt","name":"前苇塘","type":"QWP","simple":"qianweitang","base":"qwt","code":"1455"},{"station":"qxi","name":"渠县","type":"QRW","simple":"quxian","base":"qx","code":"1456"},{"station":"qxi","name":"祁县","type":"QXV","simple":"qixian","base":"qx","code":"1457"},{"station":"qxi","name":"青县","type":"QXP","simple":"qingxian","base":"qx","code":"1458"},{"station":"qxi","name":"桥西","type":"QXJ","simple":"qiaoxi","base":"qx","code":"1459"},{"station":"qxu","name":"清徐","type":"QUV","simple":"qingxu","base":"qx","code":"1460"},{"station":"qxy","name":"旗下营","type":"QXC","simple":"qixiaying","base":"qxy","code":"1461"},{"station":"qya","name":"千阳","type":"QOY","simple":"qianyang","base":"qy","code":"1462"},{"station":"qya","name":"沁阳","type":"QYF","simple":"qinyang","base":"qy","code":"1463"},{"station":"qya","name":"泉阳","type":"QYL","simple":"quanyang","base":"qy","code":"1464"},{"station":"qyb","name":"祁阳北","type":"QVQ","simple":"qiyangbei","base":"qy","code":"1465"},{"station":"qyi","name":"七营","type":"QYJ","simple":"qiying","base":"qy","code":"1466"},{"station":"qys","name":"庆阳山","type":"QSJ","simple":"qingyangshan","base":"qys","code":"1467"},{"station":"qyu","name":"清远","type":"QBQ","simple":"qingyuan","base":"qy","code":"1468"},{"station":"qyu","name":"清原","type":"QYT","simple":"qingyuan","base":"qy","code":"1469"},{"station":"qzd","name":"钦州东","type":"QDZ","simple":"qinzhoudong","base":"qzd","code":"1470"},{"station":"qzh","name":"钦州","type":"QRZ","simple":"qinzhou","base":"qz","code":"1471"},{"station":"qzs","name":"青州市","type":"QZK","simple":"qingzhoushi","base":"qzs","code":"1472"},{"station":"ran","name":"瑞安","type":"RAH","simple":"ruian","base":"ra","code":"1473"},{"station":"rch","name":"荣昌","type":"RCW","simple":"rongchang","base":"rc","code":"1474"},{"station":"rch","name":"瑞昌","type":"RCG","simple":"ruichang","base":"rc","code":"1475"},{"station":"rga","name":"如皋","type":"RBH","simple":"rugao","base":"rg","code":"1476"},{"station":"rgu","name":"容桂","type":"RUQ","simple":"ronggui","base":"rg","code":"1477"},{"station":"rqi","name":"任丘","type":"RQP","simple":"renqiu","base":"rq","code":"1478"},{"station":"rsh","name":"乳山","type":"ROK","simple":"rushan","base":"rs","code":"1479"},{"station":"rsh","name":"融水","type":"RSZ","simple":"rongshui","base":"rs","code":"1480"},{"station":"rsh","name":"热水","type":"RSD","simple":"reshui","base":"rs","code":"1481"},{"station":"rxi","name":"容县","type":"RXZ","simple":"rongxian","base":"rx","code":"1482"},{"station":"rya","name":"饶阳","type":"RVP","simple":"raoyang","base":"ry","code":"1483"},{"station":"rya","name":"汝阳","type":"RYF","simple":"ruyang","base":"ry","code":"1484"},{"station":"ryh","name":"绕阳河","type":"RHD","simple":"raoyanghe","base":"ryh","code":"1485"},{"station":"rzh","name":"汝州","type":"ROF","simple":"ruzhou","base":"rz","code":"1486"},{"station":"sba","name":"石坝","type":"OBJ","simple":"shiba","base":"sb","code":"1487"},{"station":"sbc","name":"上板城","type":"SBP","simple":"shangbancheng","base":"sbc","code":"1488"},{"station":"sbi","name":"施秉","type":"AQW","simple":"shibing","base":"sb","code":"1489"},{"station":"sbn","name":"上板城南","type":"OBP","simple":"shangbanchengnan","base":"sbcn","code":"1490"},{"station":"sby","name":"世博园","type":"ZWT","simple":"shiboyuan","base":"sby","code":"1491"},{"station":"scb","name":"双城北","type":"SBB","simple":"shuangchengbei","base":"scb","code":"1492"},{"station":"sch","name":"商城","type":"SWN","simple":"shangcheng","base":"sc","code":"1493"},{"station":"sch","name":"莎车","type":"SCR","simple":"shache","base":"sc","code":"1494"},{"station":"sch","name":"顺昌","type":"SCS","simple":"shunchang","base":"sc","code":"1495"},{"station":"sch","name":"舒城","type":"OCH","simple":"shucheng","base":"sc","code":"1496"},{"station":"sch","name":"神池","type":"SMV","simple":"shenchi","base":"sc","code":"1497"},{"station":"sch","name":"沙城","type":"SCP","simple":"shacheng","base":"sc","code":"1498"},{"station":"sch","name":"石城","type":"SCT","simple":"shicheng","base":"sc","code":"1499"},{"station":"scz","name":"山城镇","type":"SCL","simple":"shanchengzhen","base":"scz","code":"1500"},{"station":"sda","name":"山丹","type":"SDJ","simple":"shandan","base":"sd","code":"1501"},{"station":"sde","name":"顺德","type":"ORQ","simple":"shunde","base":"sd","code":"1502"},{"station":"sde","name":"绥德","type":"ODY","simple":"suide","base":"sd","code":"1503"},{"station":"sdo","name":"水洞","type":"SIL","simple":"shuidong","base":"sd","code":"1504"},{"station":"sdu","name":"商都","type":"SXC","simple":"shangdu","base":"sd","code":"1505"},{"station":"sdu","name":"十渡","type":"SEP","simple":"shidu","base":"sd","code":"1506"},{"station":"sdw","name":"四道湾","type":"OUD","simple":"sidaowan","base":"sdw","code":"1507"},{"station":"sdy","name":"顺德学院","type":"OJQ","simple":"shundexueyuan","base":"sdxy","code":"1508"},{"station":"sfa","name":"绅坊","type":"OLH","simple":"shenfang","base":"sf","code":"1509"},{"station":"sfe","name":"双丰","type":"OFB","simple":"shuangfeng","base":"sf","code":"1510"},{"station":"sft","name":"四方台","type":"STB","simple":"sifangtai","base":"sft","code":"1511"},{"station":"sfu","name":"水富","type":"OTW","simple":"shuifu","base":"sf","code":"1512"},{"station":"sgk","name":"三关口","type":"OKJ","simple":"sanguankou","base":"sgk","code":"1513"},{"station":"sgl","name":"桑根达来","type":"OGC","simple":"sanggendalai","base":"sgdl","code":"1514"},{"station":"sgu","name":"韶关","type":"SNQ","simple":"shaoguan","base":"sg","code":"1515"},{"station":"sgz","name":"上高镇","type":"SVK","simple":"shanggaozhen","base":"sgz","code":"1516"},{"station":"sha","name":"上杭","type":"JBS","simple":"shanghang","base":"sh","code":"1517"},{"station":"sha","name":"沙海","type":"SED","simple":"shahai","base":"sh","code":"1518"},{"station":"she","name":"松河","type":"SBM","simple":"songhe","base":"sh","code":"1519"},{"station":"she","name":"沙河","type":"SHP","simple":"shahe","base":"sh","code":"1520"},{"station":"shk","name":"沙河口","type":"SKT","simple":"shahekou","base":"shk","code":"1521"},{"station":"shl","name":"赛汗塔拉","type":"SHC","simple":"saihantala","base":"shtl","code":"1522"},{"station":"shs","name":"沙河市","type":"VOP","simple":"shaheshi","base":"shs","code":"1523"},{"station":"shs","name":"沙后所","type":"SSD","simple":"shahousuo","base":"shs","code":"1524"},{"station":"sht","name":"山河屯","type":"SHL","simple":"shanhetun","base":"sht","code":"1525"},{"station":"shx","name":"三河县","type":"OXP","simple":"sanhexian","base":"shx","code":"1526"},{"station":"shy","name":"四合永","type":"OHD","simple":"siheyong","base":"shy","code":"1527"},{"station":"shz","name":"三汇镇","type":"OZW","simple":"sanhuizhen","base":"shz","code":"1528"},{"station":"shz","name":"双河镇","type":"SEL","simple":"shuanghezhen","base":"shz","code":"1529"},{"station":"shz","name":"石河子","type":"SZR","simple":"shihezi","base":"shz","code":"1530"},{"station":"shz","name":"三合庄","type":"SVP","simple":"sanhezhuang","base":"shz","code":"1531"},{"station":"sjd","name":"三家店","type":"ODP","simple":"sanjiadian","base":"sjd","code":"1532"},{"station":"sjh","name":"水家湖","type":"SQH","simple":"shuijiahu","base":"sjh","code":"1533"},{"station":"sjh","name":"沈家河","type":"OJJ","simple":"shenjiahe","base":"sjh","code":"1534"},{"station":"sjh","name":"松江河","type":"SJL","simple":"songjianghe","base":"sjh","code":"1535"},{"station":"sji","name":"尚家","type":"SJB","simple":"shangjia","base":"sj","code":"1536"},{"station":"sji","name":"孙家","type":"SUB","simple":"sunjia","base":"sj","code":"1537"},{"station":"sji","name":"沈家","type":"OJB","simple":"shenjia","base":"sj","code":"1538"},{"station":"sji","name":"双吉","type":"SML","simple":"shuangji","base":"sj","code":"1539"},{"station":"sji","name":"松江","type":"SAH","simple":"songjiang","base":"sj","code":"1540"},{"station":"sjk","name":"三江口","type":"SKD","simple":"sanjiangkou","base":"sjk","code":"1541"},{"station":"sjl","name":"司家岭","type":"OLK","simple":"sijialing","base":"sjl","code":"1542"},{"station":"sjn","name":"松江南","type":"IMH","simple":"songjiangnan","base":"sjn","code":"1543"},{"station":"sjn","name":"石景山南","type":"SRP","simple":"shijingshannan","base":"sjsn","code":"1544"},{"station":"sjt","name":"邵家堂","type":"SJJ","simple":"shaojiatang","base":"sjt","code":"1545"},{"station":"sjx","name":"三江县","type":"SOZ","simple":"sanjiangxian","base":"sjx","code":"1546"},{"station":"sjz","name":"三家寨","type":"SMM","simple":"sanjiazhai","base":"sjz","code":"1547"},{"station":"sjz","name":"十家子","type":"SJD","simple":"shijiazi","base":"sjz","code":"1548"},{"station":"sjz","name":"松江镇","type":"OZL","simple":"songjiangzhen","base":"sjz","code":"1549"},{"station":"sjz","name":"施家嘴","type":"SHM","simple":"shijiazui","base":"sjz","code":"1550"},{"station":"sjz","name":"深井子","type":"SWT","simple":"shenjingzi","base":"sjz","code":"1551"},{"station":"sld","name":"什里店","type":"OMP","simple":"shilidian","base":"sld","code":"1552"},{"station":"sle","name":"疏勒","type":"SUR","simple":"shule","base":"sl","code":"1553"},{"station":"slh","name":"疏勒河","type":"SHJ","simple":"shulehe","base":"slh","code":"1554"},{"station":"slh","name":"舍力虎","type":"VLD","simple":"shelihu","base":"slh","code":"1555"},{"station":"sli","name":"石磷","type":"SPB","simple":"shilin","base":"sl","code":"1556"},{"station":"sli","name":"双辽","type":"ZJD","simple":"shuangliao","base":"sl","code":"1557"},{"station":"sli","name":"绥棱","type":"SIB","simple":"suiling","base":"sl","code":"1558"},{"station":"sli","name":"石岭","type":"SOL","simple":"shiling","base":"sl","code":"1559"},{"station":"sli","name":"石林","type":"SLM","simple":"shilin","base":"sl","code":"1560"},{"station":"sln","name":"石林南","type":"LNM","simple":"shilinnan","base":"sln","code":"1561"},{"station":"slo","name":"石龙","type":"SLQ","simple":"shilong","base":"sl","code":"1562"},{"station":"slq","name":"萨拉齐","type":"SLC","simple":"salaqi","base":"slq","code":"1563"},{"station":"slu","name":"索伦","type":"SNT","simple":"suolun","base":"sl","code":"1564"},{"station":"slu","name":"商洛","type":"OLY","simple":"shangluo","base":"sl","code":"1565"},{"station":"slz","name":"沙岭子","type":"SLP","simple":"shalingzi","base":"slz","code":"1566"},{"station":"smb","name":"石门县北","type":"VFQ","simple":"shimenxianbei","base":"smxb","code":"1567"},{"station":"smn","name":"三门峡南","type":"SCF","simple":"sanmenxianan","base":"smxn","code":"1568"},{"station":"smx","name":"三门县","type":"OQH","simple":"sanmenxian","base":"smx","code":"1569"},{"station":"smx","name":"石门县","type":"OMQ","simple":"shimenxian","base":"smx","code":"1570"},{"station":"smx","name":"三门峡西","type":"SXF","simple":"sanmenxiaxi","base":"smxx","code":"1571"},{"station":"sni","name":"肃宁","type":"SYP","simple":"suning","base":"sn","code":"1572"},{"station":"son","name":"宋","type":"SOB","simple":"song","base":"s","code":"1573"},{"station":"spa","name":"双牌","type":"SBZ","simple":"shuangpai","base":"sp","code":"1574"},{"station":"spd","name":"四平东","type":"PPT","simple":"sipingdong","base":"spd","code":"1575"},{"station":"spi","name":"遂平","type":"SON","simple":"suiping","base":"sp","code":"1576"},{"station":"spt","name":"沙坡头","type":"SFJ","simple":"shapotou","base":"spt","code":"1577"},{"station":"sqi","name":"沙桥","type":"SQM","simple":"shaqiao","base":"sq","code":"1578"},{"station":"sqn","name":"商丘南","type":"SPF","simple":"shangqiunan","base":"sqn","code":"1579"},{"station":"squ","name":"水泉","type":"SID","simple":"shuiquan","base":"sq","code":"1580"},{"station":"sqx","name":"石泉县","type":"SXY","simple":"shiquanxian","base":"sqx","code":"1581"},{"station":"sqz","name":"石桥子","type":"SQT","simple":"shiqiaozi","base":"sqz","code":"1582"},{"station":"src","name":"石人城","type":"SRB","simple":"shirencheng","base":"src","code":"1583"},{"station":"sre","name":"石人","type":"SRL","simple":"shiren","base":"sr","code":"1584"},{"station":"ssh","name":"山市","type":"SQB","simple":"shanshi","base":"ss","code":"1585"},{"station":"ssh","name":"神树","type":"SWB","simple":"shenshu","base":"ss","code":"1586"},{"station":"ssh","name":"鄯善","type":"SSR","simple":"shanshan","base":"ss","code":"1587"},{"station":"ssh","name":"三水","type":"SJQ","simple":"sanshui","base":"ss","code":"1588"},{"station":"ssh","name":"泗水","type":"OSK","simple":"sishui","base":"ss","code":"1589"},{"station":"ssh","name":"石山","type":"SAD","simple":"shishan","base":"ss","code":"1590"},{"station":"ssh","name":"松树","type":"SFT","simple":"songshu","base":"ss","code":"1591"},{"station":"ssh","name":"首山","type":"SAT","simple":"shoushan","base":"ss","code":"1592"},{"station":"ssj","name":"三十家","type":"SRD","simple":"sanshijia","base":"ssj","code":"1593"},{"station":"ssp","name":"三十里堡","type":"SST","simple":"sanshilipu","base":"sslb","code":"1594"},{"station":"ssz","name":"松树镇","type":"SSL","simple":"songshuzhen","base":"ssz","code":"1595"},{"station":"sta","name":"松桃","type":"MZQ","simple":"songtao","base":"st","code":"1596"},{"station":"sth","name":"索图罕","type":"SHX","simple":"suotuhan","base":"sth","code":"1597"},{"station":"stj","name":"三堂集","type":"SDH","simple":"santangji","base":"stj","code":"1598"},{"station":"sto","name":"石头","type":"OTB","simple":"shitou","base":"st","code":"1599"},{"station":"sto","name":"神头","type":"SEV","simple":"shentou","base":"st","code":"1600"},{"station":"stu","name":"沙沱","type":"SFM","simple":"shatuo","base":"st","code":"1601"},{"station":"swa","name":"上万","type":"SWP","simple":"shangwan","base":"sw","code":"1602"},{"station":"swu","name":"孙吴","type":"SKB","simple":"sunwu","base":"sw","code":"1603"},{"station":"swx","name":"沙湾县","type":"SXR","simple":"shawanxian","base":"swx","code":"1604"},{"station":"sxi","name":"遂溪","type":"SXZ","simple":"suixi","base":"sx","code":"1605"},{"station":"sxi","name":"沙县","type":"SAS","simple":"shaxian","base":"sx","code":"1606"},{"station":"sxi","name":"歙县","type":"OVH","simple":"shexian","base":"sx","code":"1607"},{"station":"sxi","name":"绍兴","type":"SOH","simple":"shaoxing","base":"sx","code":"1608"},{"station":"sxi","name":"石岘","type":"SXL","simple":"shixian","base":"sj","code":"1609"},{"station":"sxp","name":"上西铺","type":"SXM","simple":"shangxipu","base":"sxp","code":"1610"},{"station":"sxz","name":"石峡子","type":"SXJ","simple":"shixiazi","base":"sxz","code":"1611"},{"station":"sya","name":"绥阳","type":"SYB","simple":"suiyang","base":"sy","code":"1612"},{"station":"sya","name":"沭阳","type":"FMH","simple":"shuyang","base":"sy","code":"1613"},{"station":"sya","name":"寿阳","type":"SYV","simple":"shouyang","base":"sy","code":"1614"},{"station":"sya","name":"水洋","type":"OYP","simple":"shuiyang","base":"sy","code":"1615"},{"station":"syc","name":"三阳川","type":"SYJ","simple":"sanyangchuan","base":"syc","code":"1616"},{"station":"syd","name":"上腰墩","type":"SPJ","simple":"shangyaodun","base":"syd","code":"1617"},{"station":"syi","name":"三营","type":"OEJ","simple":"sanying","base":"sy","code":"1618"},{"station":"syi","name":"顺义","type":"SOP","simple":"shunyi","base":"sy","code":"1619"},{"station":"syj","name":"三义井","type":"OYD","simple":"sanyijing","base":"syj","code":"1620"},{"station":"syp","name":"三源浦","type":"SYL","simple":"sanyuanpu","base":"syp","code":"1621"},{"station":"syu","name":"三原","type":"SAY","simple":"sanyuan","base":"sy","code":"1622"},{"station":"syu","name":"上虞","type":"BDH","simple":"shangyu","base":"sy","code":"1623"},{"station":"syu","name":"上园","type":"SUD","simple":"shangyuan","base":"sy","code":"1624"},{"station":"syu","name":"水源","type":"OYJ","simple":"shuiyuan","base":"sy","code":"1625"},{"station":"syz","name":"桑园子","type":"SAJ","simple":"sangyuanzi","base":"syz","code":"1626"},{"station":"szb","name":"绥中北","type":"SND","simple":"suizhongbei","base":"szb","code":"1627"},{"station":"szb","name":"苏州北","type":"OHH","simple":"suzhoubei","base":"szb","code":"1628"},{"station":"szd","name":"宿州东","type":"SRH","simple":"suzhoudong","base":"szd","code":"1629"},{"station":"szd","name":"深圳东","type":"BJQ","simple":"shenzhendong","base":"szd","code":"1630"},{"station":"szh","name":"深州","type":"OZP","simple":"shenzhou","base":"sz","code":"1631"},{"station":"szh","name":"孙镇","type":"OZY","simple":"sunzhen","base":"sz","code":"1632"},{"station":"szh","name":"绥中","type":"SZD","simple":"suizhong","base":"sz","code":"1633"},{"station":"szh","name":"尚志","type":"SZB","simple":"shangzhi","base":"sz","code":"1634"},{"station":"szh","name":"师庄","type":"SNM","simple":"shizhuang","base":"sz","code":"1635"},{"station":"szi","name":"松滋","type":"SIN","simple":"songzi","base":"sz","code":"1636"},{"station":"szo","name":"师宗","type":"SEM","simple":"shizong","base":"sz","code":"1637"},{"station":"szq","name":"苏州园区","type":"KAH","simple":"suzhouyuanqu","base":"szyq","code":"1638"},{"station":"szq","name":"苏州新区","type":"ITH","simple":"suzhouxinqu","base":"szxq","code":"1639"},{"station":"tan","name":"泰安","type":"TMK","simple":"taian","base":"ta","code":"1640"},{"station":"tan","name":"台安","type":"TID","simple":"taian","base":"ta","code":"1641"},{"station":"tay","name":"通安驿","type":"TAJ","simple":"tonganyi","base":"tay","code":"1642"},{"station":"tba","name":"桐柏","type":"TBF","simple":"tongbai","base":"tb","code":"1643"},{"station":"tbe","name":"通北","type":"TBB","simple":"tongbei","base":"tb","code":"1644"},{"station":"tch","name":"汤池","type":"TCX","simple":"tangchi","base":"tc","code":"1645"},{"station":"tch","name":"桐城","type":"TTH","simple":"tongcheng","base":"tc","code":"1646"},{"station":"tch","name":"郯城","type":"TZK","simple":"tancheng","base":"tc","code":"1647"},{"station":"tch","name":"铁厂","type":"TCL","simple":"tiechang","base":"tc","code":"1648"},{"station":"tcu","name":"桃村","type":"TCK","simple":"taocun","base":"tc","code":"1649"},{"station":"tda","name":"通道","type":"TRQ","simple":"tongdao","base":"td","code":"1650"},{"station":"tdo","name":"田东","type":"TDZ","simple":"tiandong","base":"td","code":"1651"},{"station":"tga","name":"天岗","type":"TGL","simple":"tiangang","base":"tg","code":"1652"},{"station":"tgl","name":"土贵乌拉","type":"TGC","simple":"tuguiwula","base":"tgwl","code":"1653"},{"station":"tgo","name":"通沟","type":"TOL","simple":"tonggou","base":"tg","code":"1654"},{"station":"tgu","name":"太谷","type":"TGV","simple":"taigu","base":"tg","code":"1655"},{"station":"tha","name":"塔哈","type":"THX","simple":"taha","base":"th","code":"1656"},{"station":"tha","name":"棠海","type":"THM","simple":"tanghai","base":"th","code":"1657"},{"station":"the","name":"唐河","type":"THF","simple":"tanghe","base":"th","code":"1658"},{"station":"the","name":"泰和","type":"THG","simple":"taihe","base":"th","code":"1659"},{"station":"thu","name":"太湖","type":"TKH","simple":"taihu","base":"th","code":"1660"},{"station":"tji","name":"团结","type":"TIX","simple":"tuanjie","base":"tj","code":"1661"},{"station":"tjj","name":"谭家井","type":"TNJ","simple":"tanjiajing","base":"tjj","code":"1662"},{"station":"tjt","name":"陶家屯","type":"TOT","simple":"taojiatun","base":"tjt","code":"1663"},{"station":"tjw","name":"唐家湾","type":"PDQ","simple":"tangjiawan","base":"tjw","code":"1664"},{"station":"tjz","name":"统军庄","type":"TZP","simple":"tongjunzhuang","base":"tjz","code":"1665"},{"station":"tka","name":"泰康","type":"TKX","simple":"taikang","base":"tk","code":"1666"},{"station":"tld","name":"吐列毛杜","type":"TMD","simple":"tuliemaodu","base":"tlmd","code":"1667"},{"station":"tlh","name":"图里河","type":"TEX","simple":"tulihe","base":"tlh","code":"1668"},{"station":"tli","name":"铜陵","type":"TJH","simple":"tongling","base":"tl","code":"1669"},{"station":"tli","name":"田林","type":"TFZ","simple":"tianlin","base":"tl","code":"1670"},{"station":"tli","name":"亭亮","type":"TIZ","simple":"tingliang","base":"tl","code":"1671"},{"station":"tli","name":"铁力","type":"TLB","simple":"tieli","base":"tl","code":"1672"},{"station":"tlx","name":"铁岭西","type":"PXT","simple":"tielingxi","base":"tlx","code":"1673"},{"station":"tmb","name":"图们北","type":"QSL","simple":"tumenbei","base":"tmb","code":"1674"},{"station":"tme","name":"天门","type":"TMN","simple":"tianmen","base":"tm","code":"1675"},{"station":"tmn","name":"天门南","type":"TNN","simple":"tianmennan","base":"tmn","code":"1676"},{"station":"tms","name":"太姥山","type":"TLS","simple":"taimushan","base":"tms","code":"1677"},{"station":"tmt","name":"土牧尔台","type":"TRC","simple":"tumuertai","base":"tmet","code":"1678"},{"station":"tmz","name":"土门子","type":"TCJ","simple":"tumenzi","base":"tmz","code":"1679"},{"station":"tna","name":"洮南","type":"TVT","simple":"taonan","base":"tn","code":"1680"},{"station":"tna","name":"潼南","type":"TVW","simple":"tongnan","base":"tn","code":"1681"},{"station":"tpc","name":"太平川","type":"TIT","simple":"taipingchuan","base":"tpc","code":"1682"},{"station":"tpz","name":"太平镇","type":"TEB","simple":"taipingzhen","base":"tpz","code":"1683"},{"station":"tqi","name":"图强","type":"TQX","simple":"tuqiang","base":"tq","code":"1684"},{"station":"tqi","name":"台前","type":"TTK","simple":"taiqian","base":"tq","code":"1685"},{"station":"tql","name":"天桥岭","type":"TQL","simple":"tianqiaoling","base":"tql","code":"1686"},{"station":"tqz","name":"土桥子","type":"TQJ","simple":"tuqiaozi","base":"tqz","code":"1687"},{"station":"tsc","name":"汤山城","type":"TCT","simple":"tangshancheng","base":"tsc","code":"1688"},{"station":"tsh","name":"桃山","type":"TAB","simple":"taoshan","base":"ts","code":"1689"},{"station":"tsz","name":"塔石嘴","type":"TIM","simple":"tashizui","base":"tsz","code":"1690"},{"station":"ttu","name":"通途","type":"TUT","simple":"tongtu","base":"tt","code":"1691"},{"station":"twh","name":"汤旺河","type":"THB","simple":"tangwanghe","base":"twh","code":"1692"},{"station":"txi","name":"同心","type":"TXJ","simple":"tongxin","base":"tx","code":"1693"},{"station":"txi","name":"土溪","type":"TSW","simple":"tuxi","base":"tx","code":"1694"},{"station":"txi","name":"桐乡","type":"TCH","simple":"tongxiang","base":"tx","code":"1695"},{"station":"tya","name":"田阳","type":"TRZ","simple":"tianyang","base":"ty","code":"1696"},{"station":"tyi","name":"天义","type":"TND","simple":"tianyi","base":"ty","code":"1697"},{"station":"tyi","name":"汤阴","type":"TYF","simple":"tangyin","base":"ty","code":"1698"},{"station":"tyl","name":"驼腰岭","type":"TIL","simple":"tuoyaoling","base":"tyl","code":"1699"},{"station":"tys","name":"太阳山","type":"TYJ","simple":"taiyangshan","base":"tys","code":"1700"},{"station":"tyu","name":"汤原","type":"TYB","simple":"tangyuan","base":"ty","code":"1701"},{"station":"tyy","name":"塔崖驿","type":"TYP","simple":"tayayi","base":"tyy","code":"1702"},{"station":"tzd","name":"滕州东","type":"TEK","simple":"tengzhoudong","base":"tzd","code":"1703"},{"station":"tzh","name":"台州","type":"TZH","simple":"taizhou","base":"tz","code":"1704"},{"station":"tzh","name":"天祝","type":"TZJ","simple":"tianzhu","base":"tz","code":"1705"},{"station":"tzh","name":"滕州","type":"TXK","simple":"tengzhou","base":"tz","code":"1706"},{"station":"tzh","name":"天镇","type":"TZV","simple":"tianzhen","base":"tz","code":"1707"},{"station":"tzl","name":"桐子林","type":"TEW","simple":"tongzilin","base":"tzl","code":"1708"},{"station":"tzs","name":"天柱山","type":"QWH","simple":"tianzhushan","base":"tzs","code":"1709"},{"station":"wan","name":"文安","type":"WBP","simple":"wenan","base":"wa","code":"1710"},{"station":"wan","name":"武安","type":"WAP","simple":"wuan","base":"wa","code":"1711"},{"station":"waz","name":"王安镇","type":"WVP","simple":"wanganzhen","base":"waz","code":"1712"},{"station":"wca","name":"旺苍","type":"WEW","simple":"wangcang","base":"wc","code":"1713"},{"station":"wcg","name":"五叉沟","type":"WCT","simple":"wuchagou","base":"wcg","code":"1714"},{"station":"wch","name":"文昌","type":"WEQ","simple":"wenchang","base":"wc","code":"1715"},{"station":"wch","name":"温春","type":"WDB","simple":"wenchun","base":"wc","code":"1716"},{"station":"wdc","name":"五大连池","type":"WRB","simple":"wudalianchi","base":"wdlc","code":"1717"},{"station":"wde","name":"文登","type":"WBK","simple":"wendeng","base":"wd","code":"1718"},{"station":"wdg","name":"五道沟","type":"WDL","simple":"wudaogou","base":"wdg","code":"1719"},{"station":"wdh","name":"五道河","type":"WHP","simple":"wudaohe","base":"wdh","code":"1720"},{"station":"wdi","name":"文地","type":"WNZ","simple":"wendi","base":"wd","code":"1721"},{"station":"wdo","name":"卫东","type":"WVT","simple":"weidong","base":"wd","code":"1722"},{"station":"wds","name":"武当山","type":"WRN","simple":"wudangshan","base":"wds","code":"1723"},{"station":"wdu","name":"望都","type":"WDP","simple":"wangdu","base":"wd","code":"1724"},{"station":"weh","name":"乌尔旗汗","type":"WHX","simple":"wuerqihan","base":"weqh","code":"1725"},{"station":"wfa","name":"潍坊","type":"WFK","simple":"weifang","base":"wf","code":"1726"},{"station":"wft","name":"万发屯","type":"WFB","simple":"wanfatun","base":"wft","code":"1727"},{"station":"wfu","name":"王府","type":"WUT","simple":"wangfu","base":"wf","code":"1728"},{"station":"wfx","name":"瓦房店西","type":"WXT","simple":"wafangdianxi","base":"wfdx","code":"1729"},{"station":"wga","name":"王岗","type":"WGB","simple":"wanggang","base":"wg","code":"1730"},{"station":"wgo","name":"武功","type":"WGY","simple":"wugong","base":"wg","code":"1731"},{"station":"wgo","name":"湾沟","type":"WGL","simple":"wangou","base":"wg","code":"1732"},{"station":"wgt","name":"吴官田","type":"WGM","simple":"wuguantian","base":"wgt","code":"1733"},{"station":"wha","name":"乌海","type":"WVC","simple":"wuhai","base":"wh","code":"1734"},{"station":"whe","name":"苇河","type":"WHB","simple":"weihe","base":"wh","code":"1735"},{"station":"whu","name":"卫辉","type":"WHF","simple":"weihui","base":"wh","code":"1736"},{"station":"wjc","name":"吴家川","type":"WCJ","simple":"wujiachuan","base":"wjc","code":"1737"},{"station":"wji","name":"五家","type":"WUB","simple":"wujia","base":"wj","code":"1738"},{"station":"wji","name":"威箐","type":"WAM","simple":"weiqing","base":"wq","code":"1739"},{"station":"wji","name":"午汲","type":"WJP","simple":"wuji","base":"wj","code":"1740"},{"station":"wji","name":"渭津","type":"WJL","simple":"weijin","base":"wj","code":"1741"},{"station":"wjw","name":"王家湾","type":"WJJ","simple":"wangjiawan","base":"wjw","code":"1742"},{"station":"wke","name":"倭肯","type":"WQB","simple":"woken","base":"wk","code":"1743"},{"station":"wks","name":"五棵树","type":"WKT","simple":"wukeshu","base":"wks","code":"1744"},{"station":"wlb","name":"五龙背","type":"WBT","simple":"wulongbei","base":"wlb","code":"1745"},{"station":"wld","name":"乌兰哈达","type":"WLC","simple":"wulanhada","base":"wlhd","code":"1746"},{"station":"wle","name":"万乐","type":"WEB","simple":"wanle","base":"wl","code":"1747"},{"station":"wlg","name":"瓦拉干","type":"WVX","simple":"walagan","base":"wlg","code":"1748"},{"station":"wli","name":"温岭","type":"VHH","simple":"wenling","base":"wl","code":"1749"},{"station":"wli","name":"五莲","type":"WLK","simple":"wulian","base":"wl","code":"1750"},{"station":"wlq","name":"乌拉特前旗","type":"WQC","simple":"wulateqianqi","base":"wltqq","code":"1751"},{"station":"wls","name":"乌拉山","type":"WSC","simple":"wulashan","base":"wls","code":"1752"},{"station":"wlt","name":"卧里屯","type":"WLX","simple":"wolitun","base":"wlt","code":"1753"},{"station":"wnb","name":"渭南北","type":"WBY","simple":"weinanbei","base":"wnb","code":"1754"},{"station":"wne","name":"乌奴耳","type":"WRX","simple":"wunuer","base":"wne","code":"1755"},{"station":"wni","name":"万宁","type":"WNQ","simple":"wanning","base":"wn","code":"1756"},{"station":"wni","name":"万年","type":"WWG","simple":"wannian","base":"wn","code":"1757"},{"station":"wnn","name":"渭南南","type":"WVY","simple":"weinannan","base":"wnn","code":"1758"},{"station":"wnz","name":"渭南镇","type":"WNJ","simple":"weinanzhen","base":"wnz","code":"1759"},{"station":"wpi","name":"沃皮","type":"WPT","simple":"wopi","base":"wp","code":"1760"},{"station":"wpu","name":"吴堡","type":"WUY","simple":"wupu","base":"wb","code":"1761"},{"station":"wqi","name":"吴桥","type":"WUP","simple":"wuqiao","base":"wq","code":"1762"},{"station":"wqi","name":"汪清","type":"WQL","simple":"wangqing","base":"wq","code":"1763"},{"station":"wqi","name":"武清","type":"WWP","simple":"wuqing","base":"wq","code":"1764"},{"station":"wsh","name":"武山","type":"WSJ","simple":"wushan","base":"ws","code":"1765"},{"station":"wsh","name":"文水","type":"WEV","simple":"wenshui","base":"ws","code":"1766"},{"station":"wsz","name":"魏善庄","type":"WSP","simple":"weishanzhuang","base":"wsz","code":"1767"},{"station":"wto","name":"王瞳","type":"WTP","simple":"wangtong","base":"wt","code":"1768"},{"station":"wts","name":"五台山","type":"WSV","simple":"wutaishan","base":"wts","code":"1769"},{"station":"wtz","name":"王团庄","type":"WZJ","simple":"wangtuanzhuang","base":"wtz","code":"1770"},{"station":"wwu","name":"五五","type":"WVR","simple":"wuwu","base":"ww","code":"1771"},{"station":"wxd","name":"无锡东","type":"WGH","simple":"wuxidong","base":"wxd","code":"1772"},{"station":"wxi","name":"卫星","type":"WVB","simple":"weixing","base":"wx","code":"1773"},{"station":"wxi","name":"闻喜","type":"WXV","simple":"wenxi","base":"wx","code":"1774"},{"station":"wxi","name":"武乡","type":"WVV","simple":"wuxiang","base":"wx","code":"1775"},{"station":"wxq","name":"无锡新区","type":"IFH","simple":"wuxixinqu","base":"wxxq","code":"1776"},{"station":"wxu","name":"武穴","type":"WXN","simple":"wuxue","base":"wx","code":"1777"},{"station":"wxu","name":"吴圩","type":"WYZ","simple":"wuxu","base":"wy","code":"1778"},{"station":"wya","name":"王杨","type":"WYB","simple":"wangyang","base":"wy","code":"1779"},{"station":"wyi","name":"五营","type":"WWB","simple":"wuying","base":"wy","code":"1780"},{"station":"wyi","name":"武义","type":"RYH","simple":"wuyi","base":"wy","code":"1781"},{"station":"wyt","name":"瓦窑田","type":"WIM","simple":"wayaotian","base":"wjt","code":"1782"},{"station":"wyu","name":"五原","type":"WYC","simple":"wuyuan","base":"wy","code":"1783"},{"station":"wzg","name":"苇子沟","type":"WZL","simple":"weizigou","base":"wzg","code":"1784"},{"station":"wzh","name":"韦庄","type":"WZY","simple":"weizhuang","base":"wz","code":"1785"},{"station":"wzh","name":"五寨","type":"WZV","simple":"wuzhai","base":"wz","code":"1786"},{"station":"wzt","name":"王兆屯","type":"WZB","simple":"wangzhaotun","base":"wzt","code":"1787"},{"station":"wzz","name":"微子镇","type":"WQP","simple":"weizizhen","base":"wzz","code":"1788"},{"station":"wzz","name":"魏杖子","type":"WKD","simple":"weizhangzi","base":"wzz","code":"1789"},{"station":"xan","name":"新安","type":"EAM","simple":"xinan","base":"xa","code":"1790"},{"station":"xan","name":"兴安","type":"XAZ","simple":"xingan","base":"xa","code":"1791"},{"station":"xax","name":"新安县","type":"XAF","simple":"xinanxian","base":"xax","code":"1792"},{"station":"xba","name":"新保安","type":"XAP","simple":"xinbaoan","base":"xba","code":"1793"},{"station":"xbc","name":"下板城","type":"EBP","simple":"xiabancheng","base":"xbc","code":"1794"},{"station":"xbl","name":"西八里","type":"XLP","simple":"xibali","base":"xbl","code":"1795"},{"station":"xch","name":"宣城","type":"ECH","simple":"xuancheng","base":"xc","code":"1796"},{"station":"xch","name":"兴城","type":"XCD","simple":"xingcheng","base":"xc","code":"1797"},{"station":"xcu","name":"小村","type":"XEM","simple":"xiaocun","base":"xc","code":"1798"},{"station":"xcy","name":"新绰源","type":"XRX","simple":"xinchuoyuan","base":"xcy","code":"1799"},{"station":"xcz","name":"下城子","type":"XCB","simple":"xiachengzi","base":"xcz","code":"1800"},{"station":"xcz","name":"新城子","type":"XCT","simple":"xinchengzi","base":"xcz","code":"1801"},{"station":"xde","name":"喜德","type":"EDW","simple":"xide","base":"xd","code":"1802"},{"station":"xdj","name":"小得江","type":"EJM","simple":"xiaodejiang","base":"xdj","code":"1803"},{"station":"xdm","name":"西大庙","type":"XMP","simple":"xidamiao","base":"xdm","code":"1804"},{"station":"xdo","name":"小董","type":"XEZ","simple":"xiaodong","base":"xd","code":"1805"},{"station":"xdo","name":"小东","type":"XOD","simple":"xiaodong","base":"xdo","code":"1806"},{"station":"xfe","name":"信丰","type":"EFG","simple":"xinfeng","base":"xf","code":"1807"},{"station":"xfe","name":"襄汾","type":"XFV","simple":"xiangfen","base":"xf","code":"1808"},{"station":"xfe","name":"息烽","type":"XFW","simple":"xifeng","base":"xf","code":"1809"},{"station":"xga","name":"新干","type":"EGG","simple":"xingan","base":"xg","code":"1810"},{"station":"xga","name":"孝感","type":"XGN","simple":"xiaogan","base":"xg","code":"1811"},{"station":"xgc","name":"西固城","type":"XUJ","simple":"xigucheng","base":"xgc","code":"1812"},{"station":"xgu","name":"西固","type":"XIJ","simple":"xigu","base":"xg","code":"1813"},{"station":"xgy","name":"夏官营","type":"XGJ","simple":"xiaguanying","base":"xgy","code":"1814"},{"station":"xgz","name":"西岗子","type":"NBB","simple":"xigangzi","base":"xgz","code":"1815"},{"station":"xhe","name":"襄河","type":"XXB","simple":"xianghe","base":"xh","code":"1816"},{"station":"xhe","name":"新和","type":"XIR","simple":"xinhe","base":"xh","code":"1817"},{"station":"xhe","name":"宣和","type":"XWJ","simple":"xuanhe","base":"xh","code":"1818"},{"station":"xhj","name":"斜河涧","type":"EEP","simple":"xiehejian","base":"xhj","code":"1819"},{"station":"xht","name":"新华屯","type":"XAX","simple":"xinhuatun","base":"xht","code":"1820"},{"station":"xhu","name":"新华","type":"XHB","simple":"xinhua","base":"xh","code":"1821"},{"station":"xhu","name":"新化","type":"EHQ","simple":"xinhua","base":"xh","code":"1822"},{"station":"xhu","name":"宣化","type":"XHP","simple":"xuanhua","base":"xh","code":"1823"},{"station":"xhx","name":"兴和西","type":"XEC","simple":"xinghexi","base":"xhx","code":"1824"},{"station":"xhy","name":"小河沿","type":"XYD","simple":"xiaoheyan","base":"xhy","code":"1825"},{"station":"xhy","name":"下花园","type":"XYP","simple":"xiahuayuan","base":"xhy","code":"1826"},{"station":"xhz","name":"小河镇","type":"EKY","simple":"xiaohezhen","base":"xhz","code":"1827"},{"station":"xji","name":"徐家","type":"XJB","simple":"xujia","base":"xj","code":"1828"},{"station":"xji","name":"峡江","type":"EJG","simple":"xiajiang","base":"xj","code":"1829"},{"station":"xji","name":"新绛","type":"XJV","simple":"xinjiang","base":"xj","code":"1830"},{"station":"xji","name":"辛集","type":"ENP","simple":"xinji","base":"xj","code":"1831"},{"station":"xji","name":"新江","type":"XJM","simple":"xinjiang","base":"xj","code":"1832"},{"station":"xjk","name":"西街口","type":"EKM","simple":"xijiekou","base":"xjk","code":"1833"},{"station":"xjt","name":"许家屯","type":"XJT","simple":"xujiatun","base":"xjt","code":"1834"},{"station":"xjt","name":"许家台","type":"XTJ","simple":"xujiatai","base":"xjt","code":"1835"},{"station":"xjz","name":"谢家镇","type":"XMT","simple":"xiejiazhen","base":"xjz","code":"1836"},{"station":"xka","name":"兴凯","type":"EKB","simple":"xingkai","base":"xk","code":"1837"},{"station":"xla","name":"小榄","type":"EAQ","simple":"xiaolan","base":"xl","code":"1838"},{"station":"xla","name":"香兰","type":"XNB","simple":"xianglan","base":"xl","code":"1839"},{"station":"xld","name":"兴隆店","type":"XDD","simple":"xinglongdian","base":"xld","code":"1840"},{"station":"xle","name":"新乐","type":"ELP","simple":"xinle","base":"xl","code":"1841"},{"station":"xli","name":"新林","type":"XPX","simple":"xinlin","base":"xl","code":"1842"},{"station":"xli","name":"小岭","type":"XLB","simple":"xiaoling","base":"xl","code":"1843"},{"station":"xli","name":"新李","type":"XLJ","simple":"xinli","base":"xl","code":"1844"},{"station":"xli","name":"西林","type":"XYB","simple":"xilin","base":"xl","code":"1845"},{"station":"xli","name":"西柳","type":"GCT","simple":"xiliu","base":"xl","code":"1846"},{"station":"xli","name":"仙林","type":"XPH","simple":"xianlin","base":"xl","code":"1847"},{"station":"xlt","name":"新立屯","type":"XLD","simple":"xinlitun","base":"xlt","code":"1848"},{"station":"xlz","name":"兴隆镇","type":"XZB","simple":"xinglongzhen","base":"xlz","code":"1849"},{"station":"xlz","name":"新立镇","type":"XGT","simple":"xinlizhen","base":"xlz","code":"1850"},{"station":"xmi","name":"新民","type":"XMD","simple":"xinmin","base":"xm","code":"1851"},{"station":"xms","name":"西麻山","type":"XMB","simple":"ximashan","base":"xms","code":"1852"},{"station":"xmt","name":"下马塘","type":"XAT","simple":"xiamatang","base":"xmt","code":"1853"},{"station":"xna","name":"孝南","type":"XNV","simple":"xiaonan","base":"xn","code":"1854"},{"station":"xnb","name":"咸宁北","type":"XRN","simple":"xianningbei","base":"xnb","code":"1855"},{"station":"xni","name":"兴宁","type":"ENQ","simple":"xingning","base":"xn","code":"1856"},{"station":"xni","name":"咸宁","type":"XNN","simple":"xianning","base":"xn","code":"1857"},{"station":"xpd","name":"犀浦东","type":"XAW","simple":"xipudong","base":"xpd","code":"1858"},{"station":"xpi","name":"西平","type":"XPN","simple":"xiping","base":"xp","code":"1859"},{"station":"xpi","name":"兴平","type":"XPY","simple":"xingping","base":"xp","code":"1860"},{"station":"xpt","name":"新坪田","type":"XPM","simple":"xinpingtian","base":"xpt","code":"1861"},{"station":"xpu","name":"霞浦","type":"XOS","simple":"xiapu","base":"xp","code":"1862"},{"station":"xpu","name":"溆浦","type":"EPQ","simple":"xupu","base":"xp","code":"1863"},{"station":"xpu","name":"犀浦","type":"XIW","simple":"xipu","base":"xp","code":"1864"},{"station":"xqi","name":"新青","type":"XQB","simple":"xinqing","base":"xq","code":"1865"},{"station":"xqi","name":"新邱","type":"XQD","simple":"xinqiu","base":"xq","code":"1866"},{"station":"xqp","name":"兴泉堡","type":"XQJ","simple":"xingquanbu","base":"xqp","code":"1867"},{"station":"xrq","name":"仙人桥","type":"XRL","simple":"xianrenqiao","base":"xrq","code":"1868"},{"station":"xsg","name":"小寺沟","type":"ESP","simple":"xiaosigou","base":"xsg","code":"1869"},{"station":"xsh","name":"杏树","type":"XSB","simple":"xingshu","base":"xs","code":"1870"},{"station":"xsh","name":"浠水","type":"XZN","simple":"xishui","base":"xs","code":"1871"},{"station":"xsh","name":"下社","type":"XSV","simple":"xiashe","base":"xs","code":"1872"},{"station":"xsh","name":"徐水","type":"XSP","simple":"xushui","base":"xs","code":"1873"},{"station":"xsh","name":"夏石","type":"XIZ","simple":"xiashi","base":"xs","code":"1874"},{"station":"xsh","name":"小哨","type":"XAM","simple":"xiaoshao","base":"xs","code":"1875"},{"station":"xsp","name":"新松浦","type":"XOB","simple":"xinsongpu","base":"xsp","code":"1876"},{"station":"xst","name":"杏树屯","type":"XDT","simple":"xingshutun","base":"xst","code":"1877"},{"station":"xsw","name":"许三湾","type":"XSJ","simple":"xusanwan","base":"xsw","code":"1878"},{"station":"xta","name":"湘潭","type":"XTQ","simple":"xiangtan","base":"xt","code":"1879"},{"station":"xta","name":"邢台","type":"XTP","simple":"xingtai","base":"xt","code":"1880"},{"station":"xtx","name":"仙桃西","type":"XAN","simple":"xiantaoxi","base":"xtx","code":"1881"},{"station":"xtz","name":"下台子","type":"EIP","simple":"xiataizi","base":"xtz","code":"1882"},{"station":"xwe","name":"徐闻","type":"XJQ","simple":"xuwen","base":"xw","code":"1883"},{"station":"xwp","name":"新窝铺","type":"EPD","simple":"xinwopu","base":"xwp","code":"1884"},{"station":"xwu","name":"修武","type":"XWF","simple":"xiuwu","base":"xw","code":"1885"},{"station":"xxi","name":"新县","type":"XSN","simple":"xinxian","base":"xx","code":"1886"},{"station":"xxi","name":"息县","type":"ENN","simple":"xixian","base":"xx","code":"1887"},{"station":"xxi","name":"西乡","type":"XQY","simple":"xixiang","base":"xx","code":"1888"},{"station":"xxi","name":"湘乡","type":"XXQ","simple":"xiangxiang","base":"xx","code":"1889"},{"station":"xxi","name":"西峡","type":"XIF","simple":"xixia","base":"xx","code":"1890"},{"station":"xxi","name":"孝西","type":"XOV","simple":"xiaoxi","base":"xx","code":"1891"},{"station":"xxj","name":"小新街","type":"XXM","simple":"xiaoxinjie","base":"xxj","code":"1892"},{"station":"xxx","name":"新兴县","type":"XGQ","simple":"xinxingxian","base":"xxx","code":"1893"},{"station":"xxz","name":"西小召","type":"XZC","simple":"xixiaozhao","base":"xxz","code":"1894"},{"station":"xxz","name":"小西庄","type":"XXP","simple":"xiaoxizhuang","base":"xxz","code":"1895"},{"station":"xya","name":"向阳","type":"XDB","simple":"xiangyang","base":"xy","code":"1896"},{"station":"xya","name":"旬阳","type":"XUY","simple":"xunyang","base":"xy","code":"1897"},{"station":"xyb","name":"旬阳北","type":"XBY","simple":"xunyangbei","base":"xyb","code":"1898"},{"station":"xyd","name":"襄阳东","type":"XWN","simple":"xiangyangdong","base":"xyd","code":"1899"},{"station":"xye","name":"兴业","type":"SNZ","simple":"xingye","base":"xy","code":"1900"},{"station":"xyg","name":"小雨谷","type":"XHM","simple":"xiaoyugu","base":"xyg","code":"1901"},{"station":"xyi","name":"信宜","type":"EEQ","simple":"xinyi","base":"xy","code":"1902"},{"station":"xyj","name":"小月旧","type":"XFM","simple":"xiaoyuejiu","base":"xyj","code":"1903"},{"station":"xyq","name":"小扬气","type":"XYX","simple":"xiaoyangqi","base":"xyq","code":"1904"},{"station":"xyu","name":"祥云","type":"EXM","simple":"xiangyun","base":"xy","code":"1905"},{"station":"xyu","name":"襄垣","type":"EIF","simple":"xiangyuan","base":"xy","code":"1906"},{"station":"xyx","name":"夏邑县","type":"EJH","simple":"xiayixian","base":"xyx","code":"1907"},{"station":"xyy","name":"新友谊","type":"EYB","simple":"xinyouyi","base":"xyy","code":"1908"},{"station":"xyz","name":"新阳镇","type":"XZJ","simple":"xinyangzhen","base":"xyz","code":"1909"},{"station":"xzd","name":"徐州东","type":"UUH","simple":"xuzhoudong","base":"xzd","code":"1910"},{"station":"xzf","name":"新帐房","type":"XZX","simple":"xinzhangfang","base":"xzf","code":"1911"},{"station":"xzh","name":"悬钟","type":"XRP","simple":"xuanzhong","base":"xz","code":"1912"},{"station":"xzh","name":"新肇","type":"XZT","simple":"xinzhao","base":"xz","code":"1913"},{"station":"xzh","name":"忻州","type":"XXV","simple":"xinzhou","base":"xz","code":"1914"},{"station":"xzi","name":"汐子","type":"XZD","simple":"xizi","base":"xz","code":"1915"},{"station":"xzm","name":"西哲里木","type":"XRD","simple":"xizhelimu","base":"xzlm","code":"1916"},{"station":"xzz","name":"新杖子","type":"ERP","simple":"xinzhangzi","base":"xzz","code":"1917"},{"station":"yan","name":"姚安","type":"YAC","simple":"yaoan","base":"ya","code":"1918"},{"station":"yan","name":"依安","type":"YAX","simple":"yian","base":"ya","code":"1919"},{"station":"yan","name":"永安","type":"YAS","simple":"yongan","base":"ya","code":"1920"},{"station":"yax","name":"永安乡","type":"YNB","simple":"yonganxiang","base":"yax","code":"1921"},{"station":"ybl","name":"亚布力","type":"YBB","simple":"yabuli","base":"ybl","code":"1922"},{"station":"ybs","name":"元宝山","type":"YUD","simple":"yuanbaoshan","base":"ybs","code":"1923"},{"station":"yca","name":"羊草","type":"YAB","simple":"yangcao","base":"yc","code":"1924"},{"station":"ycd","name":"秧草地","type":"YKM","simple":"yangcaodi","base":"ycd","code":"1925"},{"station":"ych","name":"阳澄湖","type":"AIH","simple":"yangchenghu","base":"ych","code":"1926"},{"station":"ych","name":"迎春","type":"YYB","simple":"yingchun","base":"yc","code":"1927"},{"station":"ych","name":"叶城","type":"YER","simple":"yecheng","base":"yc","code":"1928"},{"station":"ych","name":"盐池","type":"YKJ","simple":"yanchi","base":"yc","code":"1929"},{"station":"ych","name":"砚川","type":"YYY","simple":"yanchuan","base":"yc","code":"1930"},{"station":"ych","name":"阳春","type":"YQQ","simple":"yangchun","base":"yc","code":"1931"},{"station":"ych","name":"宜城","type":"YIN","simple":"yicheng","base":"yc","code":"1932"},{"station":"ych","name":"应城","type":"YHN","simple":"yingcheng","base":"yc","code":"1933"},{"station":"ych","name":"禹城","type":"YCK","simple":"yucheng","base":"yc","code":"1934"},{"station":"ych","name":"晏城","type":"YEK","simple":"yancheng","base":"yc","code":"1935"},{"station":"ych","name":"羊场","type":"YED","simple":"yangchang","base":"yc","code":"1936"},{"station":"ych","name":"阳城","type":"YNF","simple":"yangcheng","base":"yc","code":"1937"},{"station":"ych","name":"阳岔","type":"YAL","simple":"yangcha","base":"yc","code":"1938"},{"station":"ych","name":"郓城","type":"YPK","simple":"yuncheng","base":"yc","code":"1939"},{"station":"ych","name":"雁翅","type":"YAP","simple":"yanchi","base":"yc","code":"1940"},{"station":"ycl","name":"云彩岭","type":"ACP","simple":"yuncailing","base":"ycl","code":"1941"},{"station":"ycx","name":"虞城县","type":"IXH","simple":"yuchengxian","base":"ycx","code":"1942"},{"station":"ycz","name":"营城子","type":"YCT","simple":"yingchengzi","base":"ycz","code":"1943"},{"station":"yde","name":"英德","type":"YDQ","simple":"yingde","base":"yd","code":"1944"},{"station":"yde","name":"永登","type":"YDJ","simple":"yongdeng","base":"yd","code":"1945"},{"station":"ydi","name":"尹地","type":"YDM","simple":"yindi","base":"yd","code":"1946"},{"station":"ydi","name":"永定","type":"YGS","simple":"yongding","base":"yd","code":"1947"},{"station":"yds","name":"雁荡山","type":"YGH","simple":"yandangshan","base":"yds","code":"1948"},{"station":"ydu","name":"于都","type":"YDG","simple":"yudu","base":"yd","code":"1949"},{"station":"ydu","name":"园墩","type":"YAJ","simple":"yuandun","base":"yd","code":"1950"},{"station":"ydx","name":"英德西","type":"IIQ","simple":"yingdexi","base":"ydx","code":"1951"},{"station":"yfy","name":"永丰营","type":"YYM","simple":"yongfengying","base":"yfy","code":"1952"},{"station":"yga","name":"杨岗","type":"YRB","simple":"yanggang","base":"yg","code":"1953"},{"station":"yga","name":"阳高","type":"YOV","simple":"yanggao","base":"yg","code":"1954"},{"station":"ygu","name":"阳谷","type":"YIK","simple":"yanggu","base":"yg","code":"1955"},{"station":"yha","name":"友好","type":"YOB","simple":"youhao","base":"yh","code":"1956"},{"station":"yha","name":"余杭","type":"EVH","simple":"yuhang","base":"yh","code":"1957"},{"station":"yhc","name":"沿河城","type":"YHP","simple":"yanhecheng","base":"yhc","code":"1958"},{"station":"yhu","name":"岩会","type":"AEP","simple":"yanhui","base":"yh","code":"1959"},{"station":"yjh","name":"羊臼河","type":"YHM","simple":"yangjiuhe","base":"yjh","code":"1960"},{"station":"yji","name":"永嘉","type":"URH","simple":"yongjia","base":"yj","code":"1961"},{"station":"yji","name":"营街","type":"YAM","simple":"yingjie","base":"yj","code":"1962"},{"station":"yji","name":"盐津","type":"AEW","simple":"yanjin","base":"yj","code":"1963"},{"station":"yji","name":"余江","type":"YHG","simple":"yujiang","base":"yj","code":"1964"},{"station":"yji","name":"燕郊","type":"AJP","simple":"yanjiao","base":"yj","code":"1965"},{"station":"yji","name":"姚家","type":"YAT","simple":"yaojia","base":"yj","code":"1966"},{"station":"yjj","name":"岳家井","type":"YGJ","simple":"yuejiajing","base":"yjj","code":"1967"},{"station":"yjp","name":"一间堡","type":"YJT","simple":"yijianpu","base":"yjb","code":"1968"},{"station":"yjs","name":"英吉沙","type":"YIR","simple":"yingjisha","base":"yjs","code":"1969"},{"station":"yjs","name":"云居寺","type":"AFP","simple":"yunjusi","base":"yjs","code":"1970"},{"station":"yjz","name":"燕家庄","type":"AZK","simple":"yanjiazhuang","base":"yjz","code":"1971"},{"station":"yka","name":"永康","type":"RFH","simple":"yongkang","base":"yk","code":"1972"},{"station":"ykd","name":"营口东","type":"YGT","simple":"yingkoudong","base":"ykd","code":"1973"},{"station":"yla","name":"银浪","type":"YJX","simple":"yinlang","base":"yl","code":"1974"},{"station":"yla","name":"永郎","type":"YLW","simple":"yonglang","base":"yl","code":"1975"},{"station":"ylb","name":"宜良北","type":"YSM","simple":"yiliangbei","base":"ylb","code":"1976"},{"station":"yld","name":"永乐店","type":"YDY","simple":"yongledian","base":"yld","code":"1977"},{"station":"ylh","name":"伊拉哈","type":"YLX","simple":"yilaha","base":"ylh","code":"1978"},{"station":"yli","name":"伊林","type":"YLB","simple":"yilin","base":"yl","code":"1979"},{"station":"yli","name":"杨陵","type":"YSY","simple":"yangling","base":"yl","code":"1980"},{"station":"yli","name":"彝良","type":"ALW","simple":"yiliang","base":"yl","code":"1981"},{"station":"yli","name":"杨林","type":"YLM","simple":"yanglin","base":"yl","code":"1982"},{"station":"ylp","name":"余粮堡","type":"YLD","simple":"yuliangpu","base":"ylb","code":"1983"},{"station":"ylq","name":"杨柳青","type":"YQP","simple":"yangliuqing","base":"ylq","code":"1984"},{"station":"ylt","name":"月亮田","type":"YUM","simple":"yueliangtian","base":"ylt","code":"1985"},{"station":"yma","name":"义马","type":"YMF","simple":"yima","base":"ym","code":"1986"},{"station":"yme","name":"玉门","type":"YXJ","simple":"yumen","base":"ym","code":"1987"},{"station":"yme","name":"云梦","type":"YMN","simple":"yunmeng","base":"ym","code":"1988"},{"station":"ymo","name":"元谋","type":"YMM","simple":"yuanmou","base":"ym","code":"1989"},{"station":"ymp","name":"阳明堡","type":"YVV","simple":"yangmingbu","base":"ymp","code":"1990"},{"station":"yms","name":"一面山","type":"YST","simple":"yimianshan","base":"yms","code":"1991"},{"station":"yna","name":"沂南","type":"YNK","simple":"yinan","base":"yn","code":"1992"},{"station":"yna","name":"宜耐","type":"YVM","simple":"yinai","base":"yn","code":"1993"},{"station":"ynd","name":"伊宁东","type":"YNR","simple":"yiningdong","base":"ynd","code":"1994"},{"station":"yps","name":"营盘水","type":"YZJ","simple":"yingpanshui","base":"yps","code":"1995"},{"station":"ypu","name":"羊堡","type":"ABM","simple":"yangpu","base":"yp","code":"1996"},{"station":"yqb","name":"阳泉北","type":"YPP","simple":"yangquanbei","base":"yqb","code":"1997"},{"station":"yqi","name":"乐清","type":"UPH","simple":"yueqing","base":"yq","code":"1998"},{"station":"yqi","name":"焉耆","type":"YSR","simple":"yanqi","base":"yq","code":"1999"},{"station":"yqi","name":"源迁","type":"AQK","simple":"yuanqian","base":"yq","code":"2000"},{"station":"yqt","name":"姚千户屯","type":"YQT","simple":"yaoqianhutun","base":"yqht","code":"2001"},{"station":"yqu","name":"阳曲","type":"YQV","simple":"yangqu","base":"yq","code":"2002"},{"station":"ysg","name":"榆树沟","type":"YGP","simple":"yushugou","base":"ysg","code":"2003"},{"station":"ysh","name":"月山","type":"YBF","simple":"yueshan","base":"ys","code":"2004"},{"station":"ysh","name":"玉石","type":"YSJ","simple":"yushi","base":"ys","code":"2005"},{"station":"ysh","name":"玉舍","type":"AUM","simple":"yushe","base":"ys","code":"2006"},{"station":"ysh","name":"偃师","type":"YSF","simple":"yanshi","base":"ys","code":"2007"},{"station":"ysh","name":"沂水","type":"YUK","simple":"yishui","base":"ys","code":"2008"},{"station":"ysh","name":"榆社","type":"YSV","simple":"yushe","base":"ys","code":"2009"},{"station":"ysh","name":"窑上","type":"ASP","simple":"yaoshang","base":"ys","code":"2010"},{"station":"ysh","name":"元氏","type":"YSP","simple":"yuanshi","base":"ys","code":"2011"},{"station":"ysl","name":"杨树岭","type":"YAD","simple":"yangshuling","base":"ysl","code":"2012"},{"station":"ysp","name":"野三坡","type":"AIP","simple":"yesanpo","base":"ysp","code":"2013"},{"station":"yst","name":"榆树屯","type":"YSX","simple":"yushutun","base":"yst","code":"2014"},{"station":"yst","name":"榆树台","type":"YUT","simple":"yushutai","base":"yst","code":"2015"},{"station":"ysz","name":"鹰手营子","type":"YIP","simple":"yingshouyingzi","base":"ysyz","code":"2016"},{"station":"yta","name":"源潭","type":"YTQ","simple":"yuantan","base":"yt","code":"2017"},{"station":"ytp","name":"牙屯堡","type":"YTZ","simple":"yatunpu","base":"ytb","code":"2018"},{"station":"yts","name":"烟筒山","type":"YSL","simple":"yantongshan","base":"yts","code":"2019"},{"station":"ytt","name":"烟筒屯","type":"YUX","simple":"yantongtun","base":"ytt","code":"2020"},{"station":"yws","name":"羊尾哨","type":"YWM","simple":"yangweishao","base":"yws","code":"2021"},{"station":"yxi","name":"越西","type":"YHW","simple":"yuexi","base":"yx","code":"2022"},{"station":"yxi","name":"攸县","type":"YOG","simple":"youxian","base":"yx","code":"2023"},{"station":"yxi","name":"永修","type":"ACG","simple":"yongxiu","base":"yx","code":"2024"},{"station":"yxx","name":"玉溪西","type":"YXM","simple":"yuxixi","base":"yxx","code":"2025"},{"station":"yya","name":"弋阳","type":"YIG","simple":"yiyang","base":"yy","code":"2026"},{"station":"yya","name":"余姚","type":"YYH","simple":"yuyao","base":"yy","code":"2027"},{"station":"yya","name":"酉阳","type":"AFW","simple":"youyang","base":"yy","code":"2028"},{"station":"yyd","name":"岳阳东","type":"YIQ","simple":"yueyangdong","base":"yyd","code":"2029"},{"station":"yyi","name":"阳邑","type":"ARP","simple":"yangyi","base":"yy","code":"2030"},{"station":"yyu","name":"鸭园","type":"YYL","simple":"yayuan","base":"yy","code":"2031"},{"station":"yyz","name":"鸳鸯镇","type":"YYJ","simple":"yuanyangzhen","base":"yyz","code":"2032"},{"station":"yzb","name":"燕子砭","type":"YZY","simple":"yanzibian","base":"yzb","code":"2033"},{"station":"yzh","name":"宜州","type":"YSZ","simple":"yizhou","base":"yz","code":"2034"},{"station":"yzh","name":"仪征","type":"UZH","simple":"yizheng","base":"yz","code":"2035"},{"station":"yzh","name":"兖州","type":"YZK","simple":"yanzhou","base":"yz","code":"2036"},{"station":"yzi","name":"迤资","type":"YQM","simple":"yizi","base":"yz","code":"2037"},{"station":"yzw","name":"羊者窝","type":"AEM","simple":"yangzhewo","base":"wzw","code":"2038"},{"station":"yzz","name":"杨杖子","type":"YZD","simple":"yangzhangzi","base":"yzz","code":"2039"},{"station":"zan","name":"镇安","type":"ZEY","simple":"zhenan","base":"za","code":"2040"},{"station":"zan","name":"治安","type":"ZAD","simple":"zhian","base":"za","code":"2041"},{"station":"zba","name":"招柏","type":"ZBP","simple":"zhaobai","base":"zb","code":"2042"},{"station":"zbw","name":"张百湾","type":"ZUP","simple":"zhangbaiwan","base":"zbw","code":"2043"},{"station":"zcc","name":"中川机场","type":"ZJJ","simple":"zhongchuanjichang","base":"zcjc","code":"2044"},{"station":"zch","name":"枝城","type":"ZCN","simple":"zhicheng","base":"zc","code":"2045"},{"station":"zch","name":"子长","type":"ZHY","simple":"zichang","base":"zc","code":"2046"},{"station":"zch","name":"诸城","type":"ZQK","simple":"zhucheng","base":"zc","code":"2047"},{"station":"zch","name":"邹城","type":"ZIK","simple":"zoucheng","base":"zc","code":"2048"},{"station":"zch","name":"赵城","type":"ZCV","simple":"zhaocheng","base":"zc","code":"2049"},{"station":"zda","name":"章党","type":"ZHT","simple":"zhangdang","base":"zd","code":"2050"},{"station":"zdi","name":"正定","type":"ZDP","simple":"zhengding","base":"zd","code":"2051"},{"station":"zdo","name":"肇东","type":"ZDB","simple":"zhaodong","base":"zd","code":"2052"},{"station":"zfp","name":"照福铺","type":"ZFM","simple":"zhaofupu","base":"zfp","code":"2053"},{"station":"zgt","name":"章古台","type":"ZGD","simple":"zhanggutai","base":"zgt","code":"2054"},{"station":"zgu","name":"赵光","type":"ZGB","simple":"zhaoguang","base":"zg","code":"2055"},{"station":"zhe","name":"中和","type":"ZHX","simple":"zhonghe","base":"zh","code":"2056"},{"station":"zhm","name":"中华门","type":"VNH","simple":"zhonghuamen","base":"zhm","code":"2057"},{"station":"zjb","name":"枝江北","type":"ZIN","simple":"zhijiangbei","base":"zjb","code":"2058"},{"station":"zjc","name":"钟家村","type":"ZJY","simple":"zhongjiacun","base":"zjc","code":"2059"},{"station":"zjg","name":"朱家沟","type":"ZUB","simple":"zhujiagou","base":"zjg","code":"2060"},{"station":"zjg","name":"紫荆关","type":"ZYP","simple":"zijingguan","base":"zjg","code":"2061"},{"station":"zji","name":"周家","type":"ZOB","simple":"zhoujia","base":"zj","code":"2062"},{"station":"zji","name":"诸暨","type":"ZDH","simple":"zhuji","base":"zj","code":"2063"},{"station":"zjn","name":"镇江南","type":"ZEH","simple":"zhenjiangnan","base":"zjn","code":"2064"},{"station":"zjt","name":"周家屯","type":"ZOD","simple":"zhoujiatun","base":"zjt","code":"2065"},{"station":"zjw","name":"褚家湾","type":"CWJ","simple":"zhujiawan","base":"cjw","code":"2066"},{"station":"zjx","name":"湛江西","type":"ZWQ","simple":"zhanjiangxi","base":"zjx","code":"2067"},{"station":"zjy","name":"朱家窑","type":"ZUJ","simple":"zhujiayao","base":"zjy","code":"2068"},{"station":"zjz","name":"曾家坪子","type":"ZBW","simple":"zengjiapingzi","base":"zjpz","code":"2069"},{"station":"zla","name":"张兰","type":"ZLV","simple":"zhanglan","base":"zla","code":"2070"},{"station":"zla","name":"镇赉","type":"ZLT","simple":"zhenlai","base":"zl","code":"2071"},{"station":"zli","name":"枣林","type":"ZIV","simple":"zaolin","base":"zl","code":"2072"},{"station":"zlt","name":"扎鲁特","type":"ZLD","simple":"zhalute","base":"zlt","code":"2073"},{"station":"zlx","name":"扎赉诺尔西","type":"ZXX","simple":"zhalainuoerxi","base":"zlnex","code":"2074"},{"station":"zmt","name":"樟木头","type":"ZOQ","simple":"zhangmutou","base":"zmt","code":"2075"},{"station":"zmu","name":"中牟","type":"ZGF","simple":"zhongmu","base":"zm","code":"2076"},{"station":"znd","name":"中宁东","type":"ZDJ","simple":"zhongningdong","base":"znd","code":"2077"},{"station":"zni","name":"中宁","type":"VNJ","simple":"zhongning","base":"zn","code":"2078"},{"station":"znn","name":"中宁南","type":"ZNJ","simple":"zhongningnan","base":"znn","code":"2079"},{"station":"zpi","name":"镇平","type":"ZPF","simple":"zhenping","base":"zp","code":"2080"},{"station":"zpi","name":"漳平","type":"ZPS","simple":"zhangping","base":"zp","code":"2081"},{"station":"zpu","name":"泽普","type":"ZPR","simple":"zepu","base":"zp","code":"2082"},{"station":"zqi","name":"枣强","type":"ZVP","simple":"zaoqiang","base":"zq","code":"2083"},{"station":"zqi","name":"张桥","type":"ZQY","simple":"zhangqiao","base":"zq","code":"2084"},{"station":"zqi","name":"章丘","type":"ZTK","simple":"zhangqiu","base":"zq","code":"2085"},{"station":"zrh","name":"朱日和","type":"ZRC","simple":"zhurihe","base":"zrh","code":"2086"},{"station":"zrl","name":"泽润里","type":"ZLM","simple":"zerunli","base":"zrl","code":"2087"},{"station":"zsb","name":"中山北","type":"ZGQ","simple":"zhongshanbei","base":"zsb","code":"2088"},{"station":"zsd","name":"樟树东","type":"ZOG","simple":"zhangshudong","base":"zsd","code":"2089"},{"station":"zsh","name":"中山","type":"ZSQ","simple":"zhongshan","base":"zs","code":"2090"},{"station":"zsh","name":"柞水","type":"ZSY","simple":"zhashui","base":"zs","code":"2091"},{"station":"zsh","name":"钟山","type":"ZSZ","simple":"zhongshan","base":"zs","code":"2092"},{"station":"zsh","name":"樟树","type":"ZSG","simple":"zhangshu","base":"zs","code":"2093"},{"station":"zwo","name":"珠窝","type":"ZOP","simple":"zhuwo","base":"zw","code":"2094"},{"station":"zwt","name":"张维屯","type":"ZWB","simple":"zhangweitun","base":"zwt","code":"2095"},{"station":"zwu","name":"彰武","type":"ZWD","simple":"zhangwu","base":"zw","code":"2096"},{"station":"zxi","name":"棕溪","type":"ZOY","simple":"zongxi","base":"zx","code":"2097"},{"station":"zxi","name":"钟祥","type":"ZTN","simple":"zhongxiang","base":"zx","code":"2098"},{"station":"zxi","name":"资溪","type":"ZXS","simple":"zixi","base":"zx","code":"2099"},{"station":"zxi","name":"镇西","type":"ZVT","simple":"zhenxi","base":"zx","code":"2100"},{"station":"zxi","name":"张辛","type":"ZIP","simple":"zhangxin","base":"zx","code":"2101"},{"station":"zxq","name":"正镶白旗","type":"ZXC","simple":"zhengxiangbaiqi","base":"zxbq","code":"2102"},{"station":"zya","name":"紫阳","type":"ZVY","simple":"ziyang","base":"zy","code":"2103"},{"station":"zya","name":"枣阳","type":"ZYN","simple":"zaoyang","base":"zy","code":"2104"},{"station":"zyb","name":"竹园坝","type":"ZAW","simple":"zhuyuanba","base":"zyb","code":"2105"},{"station":"zye","name":"张掖","type":"ZYJ","simple":"zhangye","base":"zy","code":"2106"},{"station":"zyu","name":"镇远","type":"ZUW","simple":"zhenyuan","base":"zy","code":"2107"},{"station":"zyx","name":"朱杨溪","type":"ZXW","simple":"zhuyangxi","base":"zyx","code":"2108"},{"station":"zzd","name":"漳州东","type":"GOS","simple":"zhangzhoudong","base":"zzd","code":"2109"},{"station":"zzh","name":"漳州","type":"ZUS","simple":"zhangzhou","base":"zz","code":"2110"},{"station":"zzh","name":"壮志","type":"ZUX","simple":"zhuangzhi","base":"zz","code":"2111"},{"station":"zzh","name":"子洲","type":"ZZY","simple":"zizhou","base":"zz","code":"2112"},{"station":"zzh","name":"中寨","type":"ZZM","simple":"zhongzhai","base":"zz","code":"2113"},{"station":"zzh","name":"涿州","type":"ZXP","simple":"zhuozhou","base":"zz","code":"2114"},{"station":"zzi","name":"咋子","type":"ZAL","simple":"zhazi","base":"zz","code":"2115"},{"station":"zzs","name":"卓资山","type":"ZZC","simple":"zhuozishan","base":"zzs","code":"2116"},{"station":"zzx","name":"株洲西","type":"ZAQ","simple":"zhuzhouxi","base":"zzx","code":"2117"},{"station":"zzx","name":"郑州西","type":"XPF","simple":"zhengzhouxi","base":"zzx","code":"2118"},{"station":"abq","name":"阿巴嘎旗","type":"AQC","simple":"abagaqi","base":"abgq","code":"2119"},{"station":"aeb","name":"阿尔山北","type":"ARX","simple":"aershanbei","base":"aesb","code":"2120"},{"station":"are","name":"安仁","type":"ARG","simple":"anren","base":"ar","code":"2121"},{"station":"asx","name":"安顺西","type":"ASE","simple":"anshunxi","base":"asx","code":"2122"},{"station":"atx","name":"安图西","type":"AXL","simple":"antuxi","base":"atx","code":"2123"},{"station":"ayd","name":"安阳东","type":"ADF","simple":"anyangdong","base":"ayd","code":"2124"},{"station":"bba","name":"博白","type":"BBZ","simple":"bobai","base":"bb","code":"2125"},{"station":"bbu","name":"八步","type":"BBE","simple":"babu","base":"bb","code":"2126"},{"station":"bch","name":"栟茶","type":"FWH","simple":"bencha","base":"bc","code":"2127"},{"station":"bdd","name":"保定东","type":"BMP","simple":"baodingdong","base":"bdd","code":"2128"},{"station":"bgo","name":"白沟","type":"FEP","simple":"baigou","base":"bg","code":"2129"},{"station":"bha","name":"滨海","type":"FHP","simple":"binhai","base":"bh","code":"2130"},{"station":"bhb","name":"滨海北","type":"FCP","simple":"binhaibei","base":"bhb","code":"2131"},{"station":"bjn","name":"宝鸡南","type":"BBY","simple":"baojinan","base":"bjn","code":"2132"},{"station":"bjz","name":"北井子","type":"BRT","simple":"beijingzi","base":"bjz","code":"2133"},{"station":"bmj","name":"白马井","type":"BFQ","simple":"baimajing","base":"bmj","code":"2134"},{"station":"bqi","name":"宝清","type":"BUB","simple":"baoqing","base":"bq","code":"2135"},{"station":"bsh","name":"璧山","type":"FZW","simple":"bishan","base":"bs","code":"2136"},{"station":"bsx","name":"白水县","type":"BGY","simple":"baishuixian","base":"bsx","code":"2137"},{"station":"bxc","name":"本溪新城","type":"BVT","simple":"benxixincheng","base":"bxxc","code":"2138"},{"station":"bxi","name":"彬县","type":"BXY","simple":"binxian","base":"bx","code":"2139"},{"station":"bya","name":"宾阳","type":"UKZ","simple":"binyang","base":"by","code":"2140"},{"station":"byd","name":"白洋淀","type":"FWP","simple":"baiyangdian","base":"byd","code":"2141"},{"station":"byi","name":"百宜","type":"FHW","simple":"baiyi","base":"by","code":"2142"},{"station":"byn","name":"白音华南","type":"FNC","simple":"baiyinhuanan","base":"byhn","code":"2143"},{"station":"bzd","name":"巴中东","type":"BDE","simple":"bazhongdong","base":"bzd","code":"2144"},{"station":"bzh","name":"滨州","type":"BIK","simple":"binzhou","base":"bz","code":"2145"},{"station":"bzx","name":"霸州西","type":"FOP","simple":"bazhouxi","base":"bzx","code":"2146"},{"station":"cch","name":"澄城","type":"CUY","simple":"chengcheng","base":"cc","code":"2147"},{"station":"chd","name":"巢湖东","type":"GUH","simple":"chaohudong","base":"chd","code":"2148"},{"station":"cji","name":"从江","type":"KNW","simple":"congjiang","base":"cj","code":"2149"},{"station":"cka","name":"茶卡","type":"CVO","simple":"chaka","base":"ck","code":"2150"},{"station":"clh","name":"长临河","type":"FVH","simple":"changlinhe","base":"clh","code":"2151"},{"station":"cln","name":"茶陵南","type":"CNG","simple":"chalingnan","base":"cln","code":"2152"},{"station":"cpd","name":"常平东","type":"FQQ","simple":"changpingdong","base":"cpd","code":"2153"},{"station":"cqq","name":"长庆桥","type":"CQJ","simple":"changqingqiao","base":"cqq","code":"2154"},{"station":"csb","name":"长寿北","type":"COW","simple":"changshoubei","base":"csb","code":"2155"},{"station":"csh","name":"长寿湖","type":"CSE","simple":"changshouhu","base":"csh","code":"2156"},{"station":"csh","name":"潮汕","type":"CBQ","simple":"chaoshan","base":"cs","code":"2157"},{"station":"ctn","name":"长汀南","type":"CNS","simple":"changtingnan","base":"ctn","code":"2158"},{"station":"cwu","name":"长武","type":"CWY","simple":"changwu","base":"cw","code":"2159"},{"station":"cxi","name":"长兴","type":"CBH","simple":"changxing","base":"cx","code":"2160"},{"station":"cxi","name":"苍溪","type":"CXE","simple":"cangxi","base":"cx","code":"2161"},{"station":"cya","name":"长阳","type":"CYN","simple":"changyang","base":"cy","code":"2162"},{"station":"cya","name":"潮阳","type":"CNQ","simple":"chaoyang","base":"cy","code":"2163"},{"station":"czt","name":"城子坦","type":"CWT","simple":"chengzitan","base":"czt","code":"2164"},{"station":"dad","name":"东安东","type":"DCZ","simple":"dongandong","base":"dad","code":"2165"},{"station":"dba","name":"德保","type":"RBZ","simple":"debao","base":"db","code":"2166"},{"station":"ddh","name":"东戴河","type":"RDD","simple":"dongdaihe","base":"ddh","code":"2167"},{"station":"ddx","name":"丹东西","type":"RWT","simple":"dandongxi","base":"ddx","code":"2168"},{"station":"deh","name":"东二道河","type":"DRB","simple":"dongerdaohe","base":"dedh","code":"2169"},{"station":"dfn","name":"大方南","type":"DNE","simple":"dafangnan","base":"dfn","code":"2170"},{"station":"dgb","name":"东港北","type":"RGT","simple":"donggangbei","base":"dgb","code":"2171"},{"station":"dgs","name":"大孤山","type":"RMT","simple":"dagushan","base":"dgs","code":"2172"},{"station":"dgu","name":"东莞","type":"RTQ","simple":"dongguan","base":"dg","code":"2173"},{"station":"dhd","name":"鼎湖东","type":"UWQ","simple":"dinghudong","base":"dhd","code":"2174"},{"station":"dhs","name":"鼎湖山","type":"NVQ","simple":"dinghushan","base":"dhs","code":"2175"},{"station":"dji","name":"垫江","type":"DJE","simple":"dianjiang","base":"dj","code":"2176"},{"station":"dju","name":"大苴","type":"DIM","simple":"daju","base":"dj","code":"2177"},{"station":"dli","name":"大荔","type":"DNY","simple":"dali","base":"dl","code":"2178"},{"station":"dqg","name":"大青沟","type":"DSD","simple":"daqinggou","base":"dqg","code":"2179"},{"station":"dqi","name":"德清","type":"DRH","simple":"deqing","base":"dq","code":"2180"},{"station":"dsn","name":"砀山南","type":"PRH","simple":"dangshannan","base":"dsn","code":"2181"},{"station":"dsn","name":"大石头南","type":"DAL","simple":"dashitounan","base":"dstn","code":"2182"},{"station":"dtd","name":"当涂东","type":"OWH","simple":"dangtudong","base":"dtd","code":"2183"},{"station":"dtx","name":"大通西","type":"DTO","simple":"datongxi","base":"dtx","code":"2184"},{"station":"dwa","name":"大旺","type":"WWQ","simple":"dawang","base":"dw","code":"2185"},{"station":"dxi","name":"德兴","type":"DWG","simple":"dexing","base":"dx","code":"2186"},{"station":"dxs","name":"丹霞山","type":"IRQ","simple":"danxiashan","base":"dxs","code":"2187"},{"station":"dyb","name":"大冶北","type":"DBN","simple":"dayebei","base":"dyb","code":"2188"},{"station":"dyd","name":"都匀东","type":"KJW","simple":"duyundong","base":"dyd","code":"2189"},{"station":"dyn","name":"东营南","type":"DOK","simple":"dongyingnan","base":"dyn","code":"2190"},{"station":"dyu","name":"大余","type":"DYG","simple":"dayu","base":"dy","code":"2191"},{"station":"dzd","name":"定州东","type":"DOP","simple":"dingzhoudong","base":"dzd","code":"2192"},{"station":"dzh","name":"端州","type":"WZQ","simple":"duanzhou","base":"dz","code":"2193"},{"station":"dzn","name":"大足南","type":"FQW","simple":"dazunan","base":"dzn","code":"2194"},{"station":"ems","name":"峨眉山","type":"IXW","simple":"emeishan","base":"ems","code":"2195"},{"station":"ezd","name":"鄂州东","type":"EFN","simple":"ezhoudong","base":"ezd","code":"2196"},{"station":"fcb","name":"防城港北","type":"FBZ","simple":"fangchenggangbei","base":"fcgb","code":"2197"},{"station":"fcd","name":"凤城东","type":"FDT","simple":"fengchengdong","base":"fcd","code":"2198"},{"station":"fch","name":"富川","type":"FDZ","simple":"fuchuan","base":"fc","code":"2199"},{"station":"fcx","name":"繁昌西","type":"PUH","simple":"fanchangxi","base":"fcx","code":"2200"},{"station":"fdu","name":"丰都","type":"FUW","simple":"fengdu","base":"fd","code":"2201"},{"station":"flb","name":"涪陵北","type":"FEW","simple":"fulingbei","base":"flb","code":"2202"},{"station":"fqi","name":"法启","type":"FQE","simple":"faqi","base":"fq","code":"2203"},{"station":"fso","name":"抚松","type":"FSL","simple":"fusong","base":"fs","code":"2204"},{"station":"fsz","name":"福山镇","type":"FZQ","simple":"fushanzhen","base":"fsz","code":"2205"},{"station":"fti","name":"福田","type":"NZQ","simple":"futian","base":"ft","code":"2206"},{"station":"fyu","name":"抚远","type":"FYB","simple":"fuyuan","base":"fy","code":"2207"},{"station":"fzd","name":"抚州东","type":"FDG","simple":"fuzhoudong","base":"fzd","code":"2208"},{"station":"fzh","name":"抚州","type":"FZG","simple":"fuzhou","base":"fz","code":"2209"},{"station":"gan","name":"高安","type":"GCG","simple":"gaoan","base":"ga","code":"2210"},{"station":"gan","name":"广安南","type":"VUW","simple":"guangannan","base":"gan","code":"2211"},{"station":"gan","name":"贵安","type":"GAE","simple":"guian","base":"ga","code":"2212"},{"station":"gbd","name":"高碑店东","type":"GMP","simple":"gaobeidiandong","base":"gbdd","code":"2213"},{"station":"gch","name":"恭城","type":"GCZ","simple":"gongcheng","base":"gc","code":"2214"},{"station":"gdb","name":"贵定北","type":"FMW","simple":"guidingbei","base":"gdb","code":"2215"},{"station":"gdn","name":"葛店南","type":"GNN","simple":"gediannan","base":"gdn","code":"2216"},{"station":"gdx","name":"贵定县","type":"KIW","simple":"guidingxian","base":"gdx","code":"2217"},{"station":"ghb","name":"广汉北","type":"GVW","simple":"guanghanbei","base":"ghb","code":"2218"},{"station":"gju","name":"革居","type":"GEM","simple":"geju","base":"gj","code":"2219"},{"station":"gli","name":"关岭","type":"GLE","simple":"guanling","base":"gl","code":"2220"},{"station":"glx","name":"桂林西","type":"GEZ","simple":"guilinxi","base":"glx","code":"2221"},{"station":"gmc","name":"光明城","type":"IMQ","simple":"guangmingcheng","base":"gmc","code":"2222"},{"station":"gni","name":"广宁","type":"FBQ","simple":"guangning","base":"gn","code":"2223"},{"station":"gns","name":"广宁寺","type":"GQT","simple":"guangningsi","base":"gns","code":"2224"},{"station":"gpi","name":"桂平","type":"GAZ","simple":"guiping","base":"gp","code":"2225"},{"station":"gpz","name":"弓棚子","type":"GPT","simple":"gongpengzi","base":"gpz","code":"2226"},{"station":"gsh","name":"光山","type":"GUN","simple":"guangshan","base":"gs","code":"2227"},{"station":"gtb","name":"古田北","type":"GBS","simple":"gutianbei","base":"gtb","code":"2228"},{"station":"gtb","name":"广通北","type":"GPM","simple":"guangtongbei","base":"gtb","code":"2229"},{"station":"gtn","name":"高台南","type":"GAJ","simple":"gaotainan","base":"gtn","code":"2230"},{"station":"gtz","name":"古田会址","type":"STS","simple":"gutianhuizhi","base":"gthz","code":"2231"},{"station":"gyb","name":"贵阳北","type":"KQW","simple":"guiyangbei","base":"gyb","code":"2232"},{"station":"gyx","name":"高邑西","type":"GNP","simple":"gaoyixi","base":"gyx","code":"2233"},{"station":"han","name":"惠安","type":"HNS","simple":"huian","base":"ha","code":"2234"},{"station":"hbd","name":"鹤壁东","type":"HFF","simple":"hebidong","base":"hbd","code":"2235"},{"station":"hcg","name":"寒葱沟","type":"HKB","simple":"hanconggou","base":"hcg","code":"2236"},{"station":"hch","name":"珲春","type":"HUL","simple":"hunchun","base":"hch","code":"2237"},{"station":"hdd","name":"邯郸东","type":"HPP","simple":"handandong","base":"hdd","code":"2238"},{"station":"hdo","name":"惠东","type":"KDQ","simple":"huidong","base":"hd","code":"2239"},{"station":"hdx","name":"海东西","type":"HDO","simple":"haidongxi","base":"hdx","code":"2240"},{"station":"hdx","name":"洪洞西","type":"HTV","simple":"hongtongxi","base":"hdx","code":"2241"},{"station":"heb","name":"哈尔滨北","type":"HTB","simple":"haerbinbei","base":"hebb","code":"2242"},{"station":"hfc","name":"合肥北城","type":"COH","simple":"hefeibeicheng","base":"hfbc","code":"2243"},{"station":"hfn","name":"合肥南","type":"ENH","simple":"hefeinan","base":"hfn","code":"2244"},{"station":"hga","name":"黄冈","type":"KGN","simple":"huanggang","base":"hg","code":"2245"},{"station":"hgd","name":"黄冈东","type":"KAN","simple":"huanggangdong","base":"hgd","code":"2246"},{"station":"hgd","name":"横沟桥东","type":"HNN","simple":"henggouqiaodong","base":"hgqd","code":"2247"},{"station":"hgx","name":"黄冈西","type":"KXN","simple":"huanggangxi","base":"hgx","code":"2248"},{"station":"hhe","name":"洪河","type":"HPB","simple":"honghe","base":"hh","code":"2249"},{"station":"hhn","name":"怀化南","type":"KAQ","simple":"huaihuanan","base":"hhn","code":"2250"},{"station":"hhq","name":"黄河景区","type":"HCF","simple":"huanghejingqu","base":"hhjq","code":"2251"},{"station":"hhu","name":"花湖","type":"KHN","simple":"huahu","base":"hh","code":"2252"},{"station":"hhu","name":"惠环","type":"KHQ","simple":"huihuan","base":"hh","code":"2253"},{"station":"hhu","name":"后湖","type":"IHN","simple":"houhu","base":"hh","code":"2254"},{"station":"hji","name":"怀集","type":"FAQ","simple":"huaiji","base":"hj","code":"2255"},{"station":"hkb","name":"河口北","type":"HBM","simple":"hekoubei","base":"hkb","code":"2256"},{"station":"hli","name":"黄流","type":"KLQ","simple":"huangliu","base":"hl","code":"2257"},{"station":"hln","name":"黄陵南","type":"VLY","simple":"huanglingnan","base":"hln","code":"2258"},{"station":"hme","name":"鲘门","type":"KMQ","simple":"houmen","base":"hm","code":"2259"},{"station":"hme","name":"虎门","type":"IUQ","simple":"humen","base":"hm","code":"2260"},{"station":"hmx","name":"侯马西","type":"HPV","simple":"houmaxi","base":"hmx","code":"2261"},{"station":"hna","name":"衡南","type":"HNG","simple":"hengnan","base":"hn","code":"2262"},{"station":"hnd","name":"淮南东","type":"HOH","simple":"huainandong","base":"hnd","code":"2263"},{"station":"hpu","name":"合浦","type":"HVZ","simple":"hepu","base":"hp","code":"2264"},{"station":"hqi","name":"霍邱","type":"FBH","simple":"huoqiu","base":"hq","code":"2265"},{"station":"hrd","name":"怀仁东","type":"HFV","simple":"huairendong","base":"hrd","code":"2266"},{"station":"hrd","name":"华容东","type":"HPN","simple":"huarongdong","base":"hrd","code":"2267"},{"station":"hrn","name":"华容南","type":"KRN","simple":"huarongnan","base":"hrn","code":"2268"},{"station":"hsb","name":"黄石北","type":"KSN","simple":"huangshibei","base":"hsb","code":"2269"},{"station":"hsb","name":"黄山北","type":"NYH","simple":"huangshanbei","base":"hsb","code":"2270"},{"station":"hsd","name":"贺胜桥东","type":"HLN","simple":"heshengqiaodong","base":"hsqd","code":"2271"},{"station":"hsh","name":"和硕","type":"VUR","simple":"heshuo","base":"hs","code":"2272"},{"station":"hsn","name":"花山南","type":"KNN","simple":"huashannan","base":"hsn","code":"2273"},{"station":"hyb","name":"合阳北","type":"HTY","simple":"heyangbei","base":"hyb","code":"2274"},{"station":"hyb","name":"海阳北","type":"HEK","simple":"haiyangbei","base":"hyb","code":"2275"},{"station":"hyi","name":"槐荫","type":"IYN","simple":"huaiyin","base":"hy","code":"2276"},{"station":"hyk","name":"花园口","type":"HYT","simple":"huayuankou","base":"hyk","code":"2277"},{"station":"hzd","name":"霍州东","type":"HWV","simple":"huozhoudong","base":"hzd","code":"2278"},{"station":"hzn","name":"惠州南","type":"KNQ","simple":"huizhounan","base":"hzn","code":"2279"},{"station":"jch","name":"泾川","type":"JAJ","simple":"jingchuan","base":"jc","code":"2280"},{"station":"jde","name":"旌德","type":"NSH","simple":"jingde","base":"jd","code":"2281"},{"station":"jfe","name":"尖峰","type":"PFQ","simple":"jianfeng","base":"jf","code":"2282"},{"station":"jhx","name":"蛟河西","type":"JOL","simple":"jiaohexi","base":"jhx","code":"2283"},{"station":"jlb","name":"军粮城北","type":"JMP","simple":"junliangchengbei","base":"jlcb","code":"2284"},{"station":"jle","name":"将乐","type":"JLS","simple":"jiangle","base":"jl","code":"2285"},{"station":"jlh","name":"贾鲁河","type":"JLF","simple":"jialuhe","base":"jlh","code":"2286"},{"station":"jmb","name":"即墨北","type":"JVK","simple":"jimobei","base":"jmb","code":"2287"},{"station":"jnb","name":"建宁县北","type":"JCS","simple":"jianningxianbei","base":"jnxb","code":"2288"},{"station":"jni","name":"江宁","type":"JJH","simple":"jiangning","base":"jn","code":"2289"},{"station":"jnx","name":"江宁西","type":"OKH","simple":"jiangningxi","base":"jnx","code":"2290"},{"station":"jox","name":"建瓯西","type":"JUS","simple":"jianouxi","base":"jox","code":"2291"},{"station":"jqn","name":"酒泉南","type":"JNJ","simple":"jiuquannan","base":"jqn","code":"2292"},{"station":"jrx","name":"句容西","type":"JWH","simple":"jurongxi","base":"jrx","code":"2293"},{"station":"jsh","name":"建水","type":"JSM","simple":"jianshui","base":"js","code":"2294"},{"station":"jss","name":"界首市","type":"JUN","simple":"jieshoushi","base":"jss","code":"2295"},{"station":"jxb","name":"绩溪北","type":"NRH","simple":"jixibei","base":"jxb","code":"2296"},{"station":"jxd","name":"介休东","type":"JDV","simple":"jiexiudong","base":"jxd","code":"2297"},{"station":"jxi","name":"靖西","type":"JMZ","simple":"jingxi","base":"jx","code":"2298"},{"station":"jxi","name":"泾县","type":"LOH","simple":"jingxian","base":"jx","code":"2299"},{"station":"jxn","name":"进贤南","type":"JXG","simple":"jinxiannan","base":"jxn","code":"2300"},{"station":"jyn","name":"嘉峪关南","type":"JBJ","simple":"jiayuguannan","base":"jygn","code":"2301"},{"station":"jyn","name":"简阳南","type":"JOW","simple":"jianyangnan","base":"jyn","code":"2302"},{"station":"jyt","name":"金银潭","type":"JTN","simple":"jinyintan","base":"jyt","code":"2303"},{"station":"jyu","name":"靖宇","type":"JYL","simple":"jingyu","base":"jy","code":"2304"},{"station":"jyw","name":"金月湾","type":"PYQ","simple":"jinyuewan","base":"jyw","code":"2305"},{"station":"jyx","name":"缙云西","type":"PYH","simple":"jinyunxi","base":"jyx","code":"2306"},{"station":"jzh","name":"晋中","type":"JZV","simple":"jinzhong","base":"jz","code":"2307"},{"station":"kfb","name":"开封北","type":"KBF","simple":"kaifengbei","base":"kfb","code":"2308"},{"station":"kln","name":"凯里南","type":"QKW","simple":"kailinan","base":"kln","code":"2309"},{"station":"klu","name":"库伦","type":"KLD","simple":"kulun","base":"kl","code":"2310"},{"station":"kta","name":"葵潭","type":"KTQ","simple":"kuitan","base":"kt","code":"2311"},{"station":"kya","name":"开阳","type":"KVW","simple":"kaiyang","base":"ky","code":"2312"},{"station":"lad","name":"隆安东","type":"IDZ","simple":"longandong","base":"lad","code":"2313"},{"station":"lbb","name":"来宾北","type":"UCZ","simple":"laibinbei","base":"lbb","code":"2314"},{"station":"lbi","name":"灵璧","type":"GMH","simple":"lingbi","base":"lb","code":"2315"},{"station":"lby","name":"绿博园","type":"LCF","simple":"lvboyuan","base":"lby","code":"2316"},{"station":"lcb","name":"隆昌北","type":"NWW","simple":"longchangbei","base":"lcb","code":"2317"},{"station":"lch","name":"临城","type":"UUP","simple":"lincheng","base":"lc","code":"2318"},{"station":"lch","name":"罗城","type":"VCZ","simple":"luocheng","base":"lc","code":"2319"},{"station":"lch","name":"陵城","type":"LGK","simple":"lingcheng","base":"lc","code":"2320"},{"station":"lcz","name":"老城镇","type":"ACQ","simple":"laochengzhen","base":"lcz","code":"2321"},{"station":"ldb","name":"龙洞堡","type":"FVW","simple":"longdongbao","base":"ldb","code":"2322"},{"station":"ldn","name":"乐都南","type":"LVO","simple":"ledunan","base":"ldn","code":"2323"},{"station":"ldn","name":"娄底南","type":"UOQ","simple":"loudinan","base":"ldn","code":"2324"},{"station":"ldo","name":"乐东","type":"UQQ","simple":"ledong","base":"ld","code":"2325"},{"station":"ldy","name":"离堆公园","type":"INW","simple":"liduigongyuan","base":"ldgy","code":"2326"},{"station":"lfe","name":"陆丰","type":"LLQ","simple":"lufeng","base":"lf","code":"2327"},{"station":"lfe","name":"龙丰","type":"KFQ","simple":"longfeng","base":"lf","code":"2328"},{"station":"lfn","name":"禄丰南","type":"LQM","simple":"lufengnan","base":"lfn","code":"2329"},{"station":"lfx","name":"临汾西","type":"LXV","simple":"linfenxi","base":"lfx","code":"2330"},{"station":"lgn","name":"临高南","type":"KGQ","simple":"lingaonan","base":"lgn","code":"2331"},{"station":"lhe","name":"滦河","type":"UDP","simple":"luanhe","base":"lh","code":"2332"},{"station":"lhx","name":"漯河西","type":"LBN","simple":"luohexi","base":"lhx","code":"2333"},{"station":"ljd","name":"罗江东","type":"IKW","simple":"luojiangdong","base":"ljd","code":"2334"},{"station":"ljn","name":"利津南","type":"LNK","simple":"lijinnan","base":"ljn","code":"2335"},{"station":"lkn","name":"兰考南","type":"LUF","simple":"lankaonan","base":"lkn","code":"2336"},{"station":"llb","name":"兰陵北","type":"COK","simple":"lanlingbei","base":"llb","code":"2337"},{"station":"llb","name":"龙里北","type":"KFW","simple":"longlibei","base":"llb","code":"2338"},{"station":"llb","name":"沥林北","type":"KBQ","simple":"lilinbei","base":"llb","code":"2339"},{"station":"lld","name":"醴陵东","type":"UKQ","simple":"lilingdong","base":"lld","code":"2340"},{"station":"lpn","name":"梁平南","type":"LPE","simple":"liangpingnan","base":"lpn","code":"2341"},{"station":"lqu","name":"礼泉","type":"LGY","simple":"liquan","base":"lq","code":"2342"},{"station":"lsd","name":"灵石东","type":"UDV","simple":"lingshidong","base":"lsd","code":"2343"},{"station":"lsh","name":"乐山","type":"IVW","simple":"leshan","base":"ls","code":"2344"},{"station":"lsh","name":"龙市","type":"LAG","simple":"longshi","base":"sh","code":"2345"},{"station":"lsh","name":"溧水","type":"LDH","simple":"lishui","base":"ls","code":"2346"},{"station":"lwj","name":"洛湾三江","type":"KRW","simple":"luowansanjiang","base":"lwsj","code":"2347"},{"station":"lxb","name":"莱西北","type":"LBK","simple":"laixibei","base":"lxb","code":"2348"},{"station":"lya","name":"溧阳","type":"LEH","simple":"liyang","base":"ly","code":"2349"},{"station":"lyi","name":"临邑","type":"LUK","simple":"linyi","base":"ly","code":"2350"},{"station":"lyn","name":"柳园南","type":"LNR","simple":"liuyuannan","base":"lyn","code":"2351"},{"station":"lzb","name":"鹿寨北","type":"LSZ","simple":"luzhaibei","base":"lzb","code":"2352"},{"station":"lzh","name":"阆中","type":"LZE","simple":"langzhong","base":"lz","code":"2353"},{"station":"lzn","name":"临泽南","type":"LDJ","simple":"linzenan","base":"lzn","code":"2354"},{"station":"mad","name":"马鞍山东","type":"OMH","simple":"maanshandong","base":"masd","code":"2355"},{"station":"mch","name":"毛陈","type":"MHN","simple":"maochen","base":"mc","code":"2356"},{"station":"mgd","name":"明港东","type":"MDN","simple":"minggangdong","base":"mgd","code":"2357"},{"station":"mhn","name":"民和南","type":"MNO","simple":"minhenan","base":"mhn","code":"2358"},{"station":"mji","name":"闵集","type":"MJN","simple":"minji","base":"mj","code":"2359"},{"station":"mla","name":"马兰","type":"MLR","simple":"malan","base":"ml","code":"2360"},{"station":"mle","name":"民乐","type":"MBJ","simple":"minle","base":"ml","code":"2361"},{"station":"mns","name":"玛纳斯","type":"MSR","simple":"manasi","base":"mns","code":"2362"},{"station":"mpi","name":"牟平","type":"MBK","simple":"muping","base":"mp","code":"2363"},{"station":"mqb","name":"闽清北","type":"MBS","simple":"minqingbei","base":"mqb","code":"2364"},{"station":"mqb","name":"民权北","type":"MIF","simple":"minquanbei","base":"mqb","code":"2365"},{"station":"msd","name":"眉山东","type":"IUW","simple":"meishandong","base":"msd","code":"2366"},{"station":"msh","name":"庙山","type":"MSN","simple":"miaoshan","base":"ms","code":"2367"},{"station":"myu","name":"门源","type":"MYO","simple":"menyuan","base":"my","code":"2368"},{"station":"mzb","name":"蒙自北","type":"MBM","simple":"mengzibei","base":"mzb","code":"2369"},{"station":"mzh","name":"孟庄","type":"MZF","simple":"mengzhuang","base":"mz","code":"2370"},{"station":"mzi","name":"蒙自","type":"MZM","simple":"mengzi","base":"mz","code":"2371"},{"station":"nbu","name":"南部","type":"NBE","simple":"nanbu","base":"nb","code":"2372"},{"station":"nca","name":"南曹","type":"NEF","simple":"nancao","base":"nc","code":"2373"},{"station":"ncb","name":"南充北","type":"NCE","simple":"nanchongbei","base":"ncb","code":"2374"},{"station":"nch","name":"南城","type":"NDG","simple":"nancheng","base":"nc","code":"2375"},{"station":"ncx","name":"南昌西","type":"NXG","simple":"nanchangxi","base":"ncx","code":"2376"},{"station":"ndn","name":"宁东南","type":"NDJ","simple":"ningdongnan","base":"ndn","code":"2377"},{"station":"ndo","name":"宁东","type":"NOJ","simple":"ningdong","base":"nd","code":"2378"},{"station":"nfb","name":"南芬北","type":"NUT","simple":"nanfenbei","base":"nfb","code":"2379"},{"station":"nfe","name":"南丰","type":"NFG","simple":"nanfeng","base":"nf","code":"2380"},{"station":"nhd","name":"南湖东","type":"NDN","simple":"nanhudong","base":"nhd","code":"2381"},{"station":"njb","name":"内江北","type":"NKW","simple":"neijiangbei","base":"njb","code":"2382"},{"station":"nji","name":"南江","type":"FIW","simple":"nanjiang","base":"nj","code":"2383"},{"station":"njk","name":"南江口","type":"NDQ","simple":"nanjiangkou","base":"nj","code":"2384"},{"station":"nli","name":"南陵","type":"LLH","simple":"nanling","base":"nl","code":"2385"},{"station":"nmu","name":"尼木","type":"NMO","simple":"nimu","base":"nm","code":"2386"},{"station":"nnd","name":"南宁东","type":"NFZ","simple":"nanningdong","base":"nnd","code":"2387"},{"station":"nnx","name":"南宁西","type":"NXZ","simple":"nanningxi","base":"nnx","code":"2388"},{"station":"npb","name":"南平北","type":"NBS","simple":"nanpingbei","base":"npb","code":"2389"},{"station":"nxi","name":"南雄","type":"NCQ","simple":"nanxiong","base":"nx","code":"2390"},{"station":"nyo","name":"纳雍","type":"NYE","simple":"nayong","base":"ny","code":"2391"},{"station":"nyz","name":"南阳寨","type":"NYF","simple":"nanyangzhai","base":"nyz","code":"2392"},{"station":"pan","name":"普安","type":"PAN","simple":"puan","base":"pa","code":"2393"},{"station":"pax","name":"普安县","type":"PUE","simple":"puanxian","base":"pax","code":"2394"},{"station":"pbi","name":"屏边","type":"PBM","simple":"pingbian","base":"pb","code":"2395"},{"station":"pbn","name":"平坝南","type":"PBE","simple":"pingbanan","base":"pbn","code":"2396"},{"station":"pch","name":"平昌","type":"PCE","simple":"pingchang","base":"pc","code":"2397"},{"station":"pdi","name":"普定","type":"PGW","simple":"puding","base":"pd","code":"2398"},{"station":"pdu","name":"平度","type":"PAK","simple":"pingdu","base":"pd","code":"2399"},{"station":"pko","name":"皮口","type":"PUT","simple":"pikou","base":"pk","code":"2400"},{"station":"plc","name":"盘龙城","type":"PNN","simple":"panlongcheng","base":"plc","code":"2401"},{"station":"pni","name":"普宁","type":"PEQ","simple":"puning","base":"pn","code":"2402"},{"station":"pnn","name":"平南南","type":"PAZ","simple":"pingnannan","base":"pn","code":"2403"},{"station":"psb","name":"彭山北","type":"PPW","simple":"pengshanbei","base":"psb","code":"2404"},{"station":"psh","name":"坪上","type":"PSK","simple":"pingshang","base":"ps","code":"2405"},{"station":"pxb","name":"萍乡北","type":"PBG","simple":"pingxiangbei","base":"pxb","code":"2406"},{"station":"pya","name":"濮阳","type":"PYF","simple":"puyang","base":"py","code":"2407"},{"station":"pyc","name":"平遥古城","type":"PDV","simple":"pingyaogucheng","base":"pygc","code":"2408"},{"station":"pzh","name":"盘州","type":"PAE","simple":"panzhou","base":"pz","code":"2409"},{"station":"pzh","name":"彭州","type":"PMW","simple":"pengzhou","base":"pz","code":"2410"},{"station":"qbd","name":"青白江东","type":"QFW","simple":"qingbaijiangdong","base":"qbjd","code":"2411"},{"station":"qdb","name":"青岛北","type":"QHK","simple":"qingdaobei","base":"qdb","code":"2412"},{"station":"qdo","name":"祁东","type":"QMQ","simple":"qidong","base":"qd","code":"2413"},{"station":"qdu","name":"青堆","type":"QET","simple":"qingdui","base":"qd","code":"2414"},{"station":"qfe","name":"前锋","type":"QFB","simple":"qianfeng","base":"qf","code":"2415"},{"station":"qji","name":"曲江","type":"QIM","simple":"qujiang","base":"qj","code":"2416"},{"station":"qli","name":"青莲","type":"QEW","simple":"qinglian","base":"ql","code":"2417"},{"station":"qqn","name":"齐齐哈尔南","type":"QNB","simple":"qiqihaernan","base":"qqhen","code":"2418"},{"station":"qsb","name":"清水北","type":"QEJ","simple":"qingshuibei","base":"qsb","code":"2419"},{"station":"qsh","name":"青神","type":"QVW","simple":"qingshen","base":"qs","code":"2420"},{"station":"qsh","name":"岐山","type":"QAY","simple":"qishan","base":"qs","code":"2421"},{"station":"qsh","name":"庆盛","type":"QSQ","simple":"qingsheng","base":"qs","code":"2422"},{"station":"qsx","name":"曲水县","type":"QSO","simple":"qushuixian","base":"qsx","code":"2423"},{"station":"qxd","name":"祁县东","type":"QGV","simple":"qixiandong","base":"qxd","code":"2424"},{"station":"qxi","name":"乾县","type":"QBY","simple":"qianxian","base":"qx","code":"2425"},{"station":"qya","name":"祁阳","type":"QWQ","simple":"qiyang","base":"qy","code":"2426"},{"station":"qzn","name":"全州南","type":"QNZ","simple":"quanzhounan","base":"qzn","code":"2427"},{"station":"qzw","name":"棋子湾","type":"QZQ","simple":"qiziwan","base":"qzw","code":"2428"},{"station":"rbu","name":"仁布","type":"RUO","simple":"renbu","base":"rb","code":"2429"},{"station":"rcb","name":"荣昌北","type":"RQW","simple":"rongchangbei","base":"rcb","code":"2430"},{"station":"rch","name":"荣成","type":"RCK","simple":"rongcheng","base":"rc","code":"2431"},{"station":"rdo","name":"如东","type":"RIH","simple":"rudong","base":"rd","code":"2432"},{"station":"rji","name":"榕江","type":"RVW","simple":"rongjiang","base":"rj","code":"2433"},{"station":"rkz","name":"日喀则","type":"RKO","simple":"rikaze","base":"rkz","code":"2434"},{"station":"rpi","name":"饶平","type":"RVQ","simple":"raoping","base":"rp","code":"2435"},{"station":"scl","name":"宋城路","type":"SFF","simple":"songchenglu","base":"scl","code":"2436"},{"station":"sdh","name":"三道湖","type":"SDL","simple":"sandaohu","base":"sdh","code":"2437"},{"station":"sdo","name":"邵东","type":"FIQ","simple":"shaodong","base":"sd","code":"2438"},{"station":"sdx","name":"三都县","type":"KKW","simple":"sanduxian","base":"sdx","code":"2439"},{"station":"sfa","name":"胜芳","type":"SUP","simple":"shengfang","base":"sf","code":"2440"},{"station":"sfb","name":"双峰北","type":"NFQ","simple":"shuangfengbei","base":"sfb","code":"2441"},{"station":"she","name":"商河","type":"SOK","simple":"shanghe","base":"sh","code":"2442"},{"station":"sho","name":"泗洪","type":"GQH","simple":"sihong","base":"sh","code":"2443"},{"station":"shu","name":"四会","type":"AHQ","simple":"sihui","base":"sh","code":"2444"},{"station":"sjn","name":"三江南","type":"SWZ","simple":"sanjiangnan","base":"sjn","code":"2445"},{"station":"sjz","name":"三井子","type":"OJT","simple":"sanjingzi","base":"sjz","code":"2446"},{"station":"slc","name":"双流机场","type":"IPW","simple":"shuangliujichang","base":"sljc","code":"2447"},{"station":"slx","name":"双流西","type":"IQW","simple":"shuangliuxi","base":"slx","code":"2448"},{"station":"smb","name":"三明北","type":"SHS","simple":"sanmingbei","base":"smb","code":"2449"},{"station":"snq","name":"苏尼特左旗","type":"ONC","simple":"sunitezuoqi","base":"sntzq","code":"2450"},{"station":"spd","name":"山坡东","type":"SBN","simple":"shanpodong","base":"spd","code":"2451"},{"station":"sqi","name":"石桥","type":"SQE","simple":"shiqiao","base":"sq","code":"2452"},{"station":"sqi","name":"沈丘","type":"SQN","simple":"shenqiu","base":"sq","code":"2453"},{"station":"ssb","name":"鄯善北","type":"SMR","simple":"shanshanbei","base":"ssb","code":"2454"},{"station":"ssb","name":"狮山北","type":"NSQ","simple":"shishanbei","base":"ssb","code":"2455"},{"station":"ssb","name":"三水北","type":"ARQ","simple":"sanshuibei","base":"ssb","code":"2456"},{"station":"ssh","name":"狮山","type":"KSQ","simple":"shishan","base":"ss","code":"2457"},{"station":"ssn","name":"三水南","type":"RNQ","simple":"sanshuinan","base":"ssn","code":"2458"},{"station":"ssn","name":"韶山南","type":"INQ","simple":"shaoshannan","base":"ssn","code":"2459"},{"station":"ssu","name":"三穗","type":"QHW","simple":"sansui","base":"ss","code":"2460"},{"station":"sti","name":"石梯","type":"STE","simple":"shiti","base":"st","code":"2461"},{"station":"swe","name":"汕尾","type":"OGQ","simple":"shanwei","base":"sw","code":"2462"},{"station":"sxb","name":"歙县北","type":"NPH","simple":"shexianbei","base":"sxb","code":"2463"},{"station":"sxb","name":"绍兴北","type":"SLH","simple":"shaoxingbei","base":"sxb","code":"2464"},{"station":"sxd","name":"绍兴东","type":"SSH","simple":"shaoxingdong","base":"sxd","code":"2465"},{"station":"sxi","name":"始兴","type":"IPQ","simple":"shixing","base":"sx","code":"2466"},{"station":"sxi","name":"泗县","type":"GPH","simple":"sixian","base":"sx","code":"2467"},{"station":"sya","name":"泗阳","type":"MPH","simple":"siyang","base":"sy","code":"2468"},{"station":"syb","name":"邵阳北","type":"OVQ","simple":"shaoyangbei","base":"syb","code":"2469"},{"station":"syb","name":"松原北","type":"OCT","simple":"songyuanbei","base":"syb","code":"2470"},{"station":"syi","name":"山阴","type":"SNV","simple":"shanyin","base":"sy","code":"2471"},{"station":"syn","name":"沈阳南","type":"SOT","simple":"shenyangnan","base":"syn","code":"2472"},{"station":"szb","name":"深圳北","type":"IOQ","simple":"shenzhenbei","base":"szb","code":"2473"},{"station":"szh","name":"神州","type":"SRQ","simple":"shenzhou","base":"sz","code":"2474"},{"station":"szs","name":"深圳坪山","type":"IFQ","simple":"shenzhenpingshan","base":"szps","code":"2475"},{"station":"szs","name":"石嘴山","type":"QQJ","simple":"shizuishan","base":"szs","code":"2476"},{"station":"szx","name":"石柱县","type":"OSW","simple":"shizhuxian","base":"szx","code":"2477"},{"station":"tcb","name":"桃村北","type":"TOK","simple":"taocunbei","base":"tcb","code":"2478"},{"station":"tdb","name":"田东北","type":"TBZ","simple":"tiandongbei","base":"tdb","code":"2479"},{"station":"tdd","name":"土地堂东","type":"TTN","simple":"tuditangdong","base":"tdtd","code":"2480"},{"station":"tgx","name":"太谷西","type":"TIV","simple":"taiguxi","base":"tgx","code":"2481"},{"station":"tha","name":"吐哈","type":"THR","simple":"tuha","base":"th","code":"2482"},{"station":"tha","name":"通海","type":"TAM","simple":"tonghai","base":"th","code":"2483"},{"station":"thc","name":"天河机场","type":"TJN","simple":"tianhejichang","base":"thjc","code":"2484"},{"station":"thj","name":"天河街","type":"TEN","simple":"tianhejie","base":"thj","code":"2485"},{"station":"thx","name":"通化县","type":"TXL","simple":"tonghuaxian","base":"thx","code":"2486"},{"station":"tji","name":"同江","type":"TJB","simple":"tongjiang","base":"tj","code":"2487"},{"station":"tlb","name":"吐鲁番北","type":"TAR","simple":"tulufanbei","base":"tlfb","code":"2488"},{"station":"tlb","name":"铜陵北","type":"KXH","simple":"tonglingbei","base":"tlb","code":"2489"},{"station":"tni","name":"泰宁","type":"TNS","simple":"taining","base":"tn","code":"2490"},{"station":"trn","name":"铜仁南","type":"TNW","simple":"tongrennan","base":"trn","code":"2491"},{"station":"txh","name":"汤逊湖","type":"THN","simple":"tangxunhu","base":"txh","code":"2492"},{"station":"txi","name":"藤县","type":"TAZ","simple":"tengxian","base":"tx","code":"2493"},{"station":"tyn","name":"太原南","type":"TNV","simple":"taiyuannan","base":"tyn","code":"2494"},{"station":"tyx","name":"通远堡西","type":"TST","simple":"tongyuanpuxi","base":"typx","code":"2495"},{"station":"wdd","name":"文登东","type":"WGK","simple":"wendengdong","base":"wdd","code":"2496"},{"station":"wfs","name":"五府山","type":"WFG","simple":"wufushan","base":"wfs","code":"2497"},{"station":"whb","name":"威虎岭北","type":"WBL","simple":"weihulingbei","base":"whlb","code":"2498"},{"station":"whb","name":"威海北","type":"WHK","simple":"weihaibei","base":"whb","code":"2499"},{"station":"wld","name":"五龙背东","type":"WMT","simple":"wulongbeidong","base":"wlbd","code":"2500"},{"station":"wln","name":"乌龙泉南","type":"WFN","simple":"wulongquannan","base":"wlqn","code":"2501"},{"station":"wlq","name":"乌鲁木齐","type":"WAR","simple":"wulumuqi","base":"wlmq","code":"2502"},{"station":"wns","name":"五女山","type":"WET","simple":"wunvshan","base":"wns","code":"2503"},{"station":"wsh","name":"武胜","type":"WSE","simple":"wusheng","base":"ws","code":"2504"},{"station":"wwe","name":"无为","type":"IIH","simple":"wuwei","base":"ww","code":"2505"},{"station":"wws","name":"瓦屋山","type":"WAH","simple":"wawushan","base":"wws","code":"2506"},{"station":"wxx","name":"闻喜西","type":"WOV","simple":"wenxixi","base":"wxx","code":"2507"},{"station":"wyb","name":"武义北","type":"WDH","simple":"wuyibei","base":"wyb","code":"2508"},{"station":"wyb","name":"武夷山北","type":"WBS","simple":"wuyishanbei","base":"wysb","code":"2509"},{"station":"wyd","name":"武夷山东","type":"WCS","simple":"wuyishandong","base":"wysd","code":"2510"},{"station":"wyu","name":"婺源","type":"WYG","simple":"wuyuan","base":"wy","code":"2511"},{"station":"wzb","name":"万州北","type":"WZE","simple":"wanzhoubei","base":"wzb","code":"2512"},{"station":"wzh","name":"武陟","type":"WIF","simple":"wuzhi","base":"wz","code":"2513"},{"station":"wzn","name":"梧州南","type":"WBZ","simple":"wuzhounan","base":"wzn","code":"2514"},{"station":"xab","name":"兴安北","type":"XDZ","simple":"xinganbei","base":"xab","code":"2515"},{"station":"xcd","name":"许昌东","type":"XVF","simple":"xuchangdong","base":"xcd","code":"2516"},{"station":"xch","name":"项城","type":"ERN","simple":"xiangcheng","base":"xc","code":"2517"},{"station":"xdd","name":"新都东","type":"EWW","simple":"xindudong","base":"xdd","code":"2518"},{"station":"xfe","name":"西丰","type":"XFT","simple":"xifeng","base":"xf","code":"2519"},{"station":"xfx","name":"襄汾西","type":"XTV","simple":"xiangfenxi","base":"xfx","code":"2520"},{"station":"xgb","name":"孝感北","type":"XJN","simple":"xiaoganbei","base":"xgb","code":"2521"},{"station":"xgd","name":"孝感东","type":"GDN","simple":"xiaogandong","base":"xgd","code":"2522"},{"station":"xhd","name":"西湖东","type":"WDQ","simple":"xihudong","base":"xhd","code":"2523"},{"station":"xhn","name":"新化南","type":"EJQ","simple":"xinhuanan","base":"xhn","code":"2524"},{"station":"xhx","name":"新晃西","type":"EWQ","simple":"xinhuangxi","base":"xhx","code":"2525"},{"station":"xji","name":"新津","type":"IRW","simple":"xinjin","base":"xj","code":"2526"},{"station":"xjk","name":"小金口","type":"NKQ","simple":"xiaojinkou","base":"xjk","code":"2527"},{"station":"xjn","name":"新津南","type":"ITW","simple":"xinjinnan","base":"xjn","code":"2528"},{"station":"xnd","name":"咸宁东","type":"XKN","simple":"xianningdong","base":"xnd","code":"2529"},{"station":"xnn","name":"咸宁南","type":"UNN","simple":"xianningnan","base":"xnn","code":"2530"},{"station":"xpn","name":"溆浦南","type":"EMQ","simple":"xupunan","base":"xpn","code":"2531"},{"station":"xtb","name":"湘潭北","type":"EDQ","simple":"xiangtanbei","base":"xtb","code":"2532"},{"station":"xtd","name":"邢台东","type":"EDP","simple":"xingtaidong","base":"xtd","code":"2533"},{"station":"xwq","name":"西乌旗","type":"XWC","simple":"xiwuqi","base":"xwq","code":"2534"},{"station":"xwx","name":"修武西","type":"EXF","simple":"xiuwuxi","base":"xwx","code":"2535"},{"station":"xxb","name":"萧县北","type":"QSH","simple":"xiaoxianbei","base":"xxb","code":"2536"},{"station":"xxd","name":"新乡东","type":"EGF","simple":"xinxiangdong","base":"xxd","code":"2537"},{"station":"xyb","name":"新余北","type":"XBG","simple":"xinyubei","base":"xyb","code":"2538"},{"station":"xyc","name":"西阳村","type":"XQF","simple":"xiyangcun","base":"xyc","code":"2539"},{"station":"xyd","name":"信阳东","type":"OYN","simple":"xinyangdong","base":"xyd","code":"2540"},{"station":"xyd","name":"咸阳秦都","type":"XOY","simple":"xianyangqindu","base":"xyqd","code":"2541"},{"station":"xyo","name":"仙游","type":"XWS","simple":"xianyou","base":"xy","code":"2542"},{"station":"xzc","name":"新郑机场","type":"EZF","simple":"xinzhengjichang","base":"xzjc","code":"2543"},{"station":"ybl","name":"迎宾路","type":"YFW","simple":"yingbinlu","base":"ybl","code":"2544"},{"station":"ycb","name":"永城北","type":"RGH","simple":"yongchengbei","base":"ycb","code":"2545"},{"station":"ycb","name":"运城北","type":"ABV","simple":"yunchengbei","base":"ycb","code":"2546"},{"station":"ycd","name":"永川东","type":"WMW","simple":"yongchuandong","base":"ycd","code":"2547"},{"station":"ych","name":"宜春","type":"YEG","simple":"yichun","base":"yc","code":"2548"},{"station":"ych","name":"岳池","type":"AWW","simple":"yuechi","base":"yc","code":"2549"},{"station":"ydh","name":"云东海","type":"NAQ","simple":"yundonghai","base":"ydh","code":"2550"},{"station":"yfd","name":"云浮东","type":"IXQ","simple":"yunfudong","base":"yfd","code":"2551"},{"station":"yfn","name":"永福南","type":"YBZ","simple":"yongfunan","base":"yfn","code":"2552"},{"station":"yge","name":"雨格","type":"VTM","simple":"yuge","base":"yg","code":"2553"},{"station":"yhe","name":"洋河","type":"GTH","simple":"yanghe","base":"yh","code":"2554"},{"station":"yjb","name":"永济北","type":"AJV","simple":"yongjibei","base":"yjb","code":"2555"},{"station":"yji","name":"弋江","type":"RVH","simple":"yijiang","base":"yj","code":"2556"},{"station":"yjp","name":"于家堡","type":"YKP","simple":"yujiapu","base":"yjp","code":"2557"},{"station":"yjx","name":"延吉西","type":"YXL","simple":"yanjixi","base":"yjx","code":"2558"},{"station":"ykn","name":"永康南","type":"QUH","simple":"yongkangnan","base":"ykn","code":"2559"},{"station":"ylh","name":"运粮河","type":"YEF","simple":"yunlianghe","base":"ylh","code":"2560"},{"station":"yli","name":"炎陵","type":"YAG","simple":"yanling","base":"yl","code":"2561"},{"station":"yln","name":"杨陵南","type":"YEY","simple":"yanglingnan","base":"yln","code":"2562"},{"station":"ymi","name":"伊敏","type":"YMX","simple":"yimin","base":"ym","code":"2563"},{"station":"yna","name":"郁南","type":"YKQ","simple":"yunan","base":"yn","code":"2564"},{"station":"ypi","name":"银瓶","type":"KPQ","simple":"yinping","base":"yp","code":"2565"},{"station":"ysh","name":"永寿","type":"ASY","simple":"yongshou","base":"ys","code":"2566"},{"station":"ysh","name":"阳朔","type":"YCZ","simple":"yangshuo","base":"ys","code":"2567"},{"station":"ysh","name":"云山","type":"KZQ","simple":"yunshan","base":"ys","code":"2568"},{"station":"ysn","name":"玉山南","type":"YGG","simple":"yushannan","base":"ysn","code":"2569"},{"station":"yta","name":"银滩","type":"CTQ","simple":"yintan","base":"yt","code":"2570"},{"station":"yta","name":"永泰","type":"YTS","simple":"yongtai","base":"yt","code":"2571"},{"station":"ytb","name":"鹰潭北","type":"YKG","simple":"yingtanbei","base":"ytb","code":"2572"},{"station":"ytn","name":"烟台南","type":"YLK","simple":"yantainan","base":"ytn","code":"2573"},{"station":"yxi","name":"尤溪","type":"YXS","simple":"youxi","base":"yx","code":"2574"},{"station":"yxi","name":"云霄","type":"YBS","simple":"yunxiao","base":"yx","code":"2575"},{"station":"yxi","name":"宜兴","type":"YUH","simple":"yixing","base":"yx","code":"2576"},{"station":"yxi","name":"阳信","type":"YVK","simple":"yangxin","base":"yx","code":"2577"},{"station":"yxi","name":"应县","type":"YZV","simple":"yingxian","base":"yx","code":"2578"},{"station":"yxn","name":"攸县南","type":"YXG","simple":"youxiannan","base":"yxn","code":"2579"},{"station":"yyb","name":"余姚北","type":"CTH","simple":"yuyaobei","base":"yyb","code":"2580"},{"station":"zan","name":"诏安","type":"ZDS","simple":"zhaoan","base":"za","code":"2581"},{"station":"zdc","name":"正定机场","type":"ZHP","simple":"zhengdingjichang","base":"zdjc","code":"2582"},{"station":"zfd","name":"纸坊东","type":"ZMN","simple":"zhifangdong","base":"zfd","code":"2583"},{"station":"zhb","name":"庄河北","type":"ZUT","simple":"zhuanghebei","base":"zhb","code":"2584"},{"station":"zhu","name":"昭化","type":"ZHW","simple":"zhaohua","base":"zhu","code":"2585"},{"station":"zjb","name":"织金北","type":"ZJE","simple":"zhijinbei","base":"zjb","code":"2586"},{"station":"zji","name":"芷江","type":"ZPQ","simple":"zhijiang","base":"zj","code":"2587"},{"station":"zji","name":"织金","type":"IZW","simple":"zhijin","base":"zj","code":"2588"},{"station":"zka","name":"仲恺","type":"KKQ","simple":"zhongkai","base":"zk","code":"2589"},{"station":"zko","name":"曾口","type":"ZKE","simple":"zengkou","base":"zk","code":"2590"},{"station":"zli","name":"左岭","type":"ZSN","simple":"zuoling","base":"zl","code":"2591"},{"station":"zmd","name":"樟木头东","type":"ZRQ","simple":"zhangmutoudong","base":"zmtd","code":"2592"},{"station":"zmx","name":"驻马店西","type":"ZLN","simple":"zhumadianxi","base":"zmdx","code":"2593"},{"station":"zpu","name":"漳浦","type":"ZCS","simple":"zhangpu","base":"zp","code":"2594"},{"station":"zqd","name":"肇庆东","type":"FCQ","simple":"zhaoqingdong","base":"zqd","code":"2595"},{"station":"zqi","name":"庄桥","type":"ZQH","simple":"zhuangqiao","base":"zq","code":"2596"},{"station":"zsx","name":"钟山西","type":"ZAZ","simple":"zhongshanxi","base":"zsx","code":"2597"},{"station":"zyb","name":"资阳北","type":"FYW","simple":"ziyangbei","base":"zyb","code":"2598"},{"station":"zyx","name":"张掖西","type":"ZEJ","simple":"zhangyexi","base":"zyx","code":"2599"},{"station":"zzb","name":"资中北","type":"WZW","simple":"zizhongbei","base":"zzb","code":"2600"},{"station":"zzd","name":"涿州东","type":"ZAP","simple":"zhuozhoudong","base":"zzd","code":"2601"},{"station":"zzd","name":"枣庄东","type":"ZNK","simple":"zaozhuangdong","base":"zzd","code":"2602"},{"station":"zzd","name":"卓资东","type":"ZDC","simple":"zhuozidong","base":"zzd","code":"2603"},{"station":"zzd","name":"郑州东","type":"ZAF","simple":"zhengzhoudong","base":"zzd","code":"2604"}]
}
res.send(station);
})
// path路由
urlPath.get('*', function(req, res) {
})
app.use('/js', tool);
app.use('/', urlPath);
console.log('Service has been started!');
module.exports = app;