PL_GDC.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. export default [
  2. {
  3. id: "root",
  4. name: "平罗光电场",
  5. type: "img",
  6. image: "stationimg",
  7. x: 10,
  8. y: 60,
  9. },
  10. //平罗1号线路
  11. {
  12. id: "PL01_01",
  13. type: "circle",
  14. x: 150,
  15. y: 20,
  16. connects: ["root"],
  17. },
  18. {
  19. id: "PL01_02",
  20. type: "circle",
  21. x: 200,
  22. y: 20,
  23. connects: ["PL01_01"],
  24. },
  25. {
  26. id: "PL01_03",
  27. type: "circle",
  28. x: 250,
  29. y: 20,
  30. connects: ["PL01_02"],
  31. },
  32. {
  33. id: "PL01_04",
  34. type: "circle",
  35. x: 300,
  36. y: 20,
  37. connects: ["PL01_03"],
  38. },
  39. //平罗2号线路
  40. {
  41. id: "PL01_05",
  42. type: "circle",
  43. x: 150,
  44. y: 40,
  45. connects: ["root"],
  46. },
  47. {
  48. id: "PL01_6",
  49. type: "circle",
  50. x: 200,
  51. y: 40,
  52. connects: ["PL01_05"],
  53. },
  54. {
  55. id: "PL01_07",
  56. type: "circle",
  57. x: 250,
  58. y: 40,
  59. connects: ["PL01_6"],
  60. },
  61. {
  62. id: "PL01_08",
  63. type: "circle",
  64. x: 300,
  65. y: 40,
  66. connects: ["PL01_07"],
  67. },
  68. //平罗3号线路
  69. {
  70. id: "PL01_09",
  71. type: "circle",
  72. x: 150,
  73. y: 60,
  74. connects: ["root"],
  75. },
  76. {
  77. id: "PL01_10",
  78. type: "circle",
  79. x: 200,
  80. y: 60,
  81. connects: ["PL01_09"],
  82. },
  83. {
  84. id: "PL01_11",
  85. type: "circle",
  86. x: 250,
  87. y: 60,
  88. connects: ["PL01_10"],
  89. },
  90. {
  91. id: "PL01_12",
  92. type: "circle",
  93. x: 300,
  94. y: 60,
  95. connects: ["PL01_11"],
  96. },
  97. //平罗4号线路
  98. {
  99. id: "PL01_13",
  100. type: "circle",
  101. x: 150,
  102. y: 80,
  103. connects: ["root"],
  104. },
  105. {
  106. id: "PL01_14",
  107. type: "circle",
  108. x: 200,
  109. y: 80,
  110. connects: ["PL01_13"],
  111. },
  112. {
  113. id: "PL01_15",
  114. type: "circle",
  115. x: 250,
  116. y: 80,
  117. connects: ["PL01_14"],
  118. },
  119. {
  120. id: "PL01_16",
  121. type: "circle",
  122. x: 300,
  123. y: 80,
  124. connects: ["PL01_15"],
  125. },
  126. //平罗5号线路
  127. {
  128. id: "PL01_17",
  129. type: "circle",
  130. x: 150,
  131. y: 100,
  132. connects: ["root"],
  133. },
  134. {
  135. id: "PL01_18",
  136. type: "circle",
  137. x: 200,
  138. y: 100,
  139. connects: ["PL01_17"],
  140. },
  141. {
  142. id: "PL01_19",
  143. type: "circle",
  144. x: 250,
  145. y: 100,
  146. connects: ["PL01_18"],
  147. },
  148. //平罗6号线路
  149. {
  150. id: "PL01_20",
  151. type: "circle",
  152. x: 120,
  153. y: 120,
  154. connects: ["root"],
  155. },
  156. {
  157. id: "PL01_21",
  158. type: "circle",
  159. x: 135,
  160. y: 120,
  161. connects: ["PL01_20"],
  162. },
  163. {
  164. id: "PL01_22",
  165. type: "circle",
  166. x: 150,
  167. y: 120,
  168. connects: ["PL01_21"],
  169. },
  170. {
  171. id: "PL01_23",
  172. type: "circle",
  173. x: 165,
  174. y: 120,
  175. connects: ["PL01_22"],
  176. },
  177. {
  178. id: "PL01_24",
  179. type: "circle",
  180. x: 180,
  181. y: 120,
  182. connects: ["PL01_23"],
  183. },
  184. {
  185. id: "PL01_25",
  186. type: "circle",
  187. x: 195,
  188. y: 120,
  189. connects: ["PL01_24"],
  190. },
  191. {
  192. id: "PL01_26",
  193. type: "circle",
  194. x: 210,
  195. y: 120,
  196. connects: ["PL01_25"],
  197. },
  198. {
  199. id: "PL01_27",
  200. type: "circle",
  201. x: 225,
  202. y: 120,
  203. connects: ["PL01_26"],
  204. },
  205. {
  206. id: "PL01_28",
  207. type: "circle",
  208. x: 240,
  209. y: 120,
  210. connects: ["PL01_27"],
  211. },
  212. {
  213. id: "PL01_29",
  214. type: "circle",
  215. x: 255,
  216. y: 120,
  217. connects: ["PL01_28"],
  218. },
  219. {
  220. id: "PL01_30",
  221. type: "circle",
  222. x: 270,
  223. y: 120,
  224. connects: ["PL01_29"],
  225. },
  226. {
  227. id: "PL01_31",
  228. type: "circle",
  229. x: 285,
  230. y: 120,
  231. connects: ["PL01_30"],
  232. },
  233. {
  234. id: "PL01_32",
  235. type: "circle",
  236. x: 300,
  237. y: 120,
  238. connects: ["PL01_31"],
  239. },
  240. {
  241. id: "PL01_33",
  242. type: "circle",
  243. x: 315,
  244. y: 120,
  245. connects: ["PL01_32"],
  246. },
  247. {
  248. id: "PL01_34",
  249. type: "circle",
  250. x: 330,
  251. y: 120,
  252. connects: ["PL01_33"],
  253. },
  254. {
  255. id: "PL01_35",
  256. type: "circle",
  257. x: 345,
  258. y: 120,
  259. connects: ["PL01_34"],
  260. },
  261. {
  262. id: "PL01_36",
  263. type: "circle",
  264. x: 360,
  265. y: 120,
  266. connects: ["PL01_35"],
  267. },
  268. {
  269. id: "PL01_37",
  270. type: "circle",
  271. x: 375,
  272. y: 120,
  273. connects: ["PL01_36"],
  274. },
  275. {
  276. id: "PL01_38",
  277. type: "circle",
  278. x: 390,
  279. y: 120,
  280. connects: ["PL01_37"],
  281. },
  282. {
  283. id: "PL01_39",
  284. type: "circle",
  285. x: 405,
  286. y: 120,
  287. connects: ["PL01_38"],
  288. },
  289. //平罗7号线路
  290. {
  291. id: "PL01_40",
  292. type: "circle",
  293. x: 105,
  294. y: 140,
  295. connects: ["root"],
  296. },
  297. {
  298. id: "PL01_41",
  299. type: "circle",
  300. x: 120,
  301. y: 140,
  302. connects: ["PL01_40"],
  303. },
  304. {
  305. id: "PL01_42",
  306. type: "circle",
  307. x: 135,
  308. y: 140,
  309. connects: ["PL01_41"],
  310. },
  311. {
  312. id: "PL01_43",
  313. type: "circle",
  314. x: 150,
  315. y: 140,
  316. connects: ["PL01_42"],
  317. },
  318. {
  319. id: "PL01_44",
  320. type: "circle",
  321. x: 165,
  322. y: 140,
  323. connects: ["PL01_43"],
  324. },
  325. {
  326. id: "PL01_45",
  327. type: "circle",
  328. x: 180,
  329. y: 140,
  330. connects: ["PL01_44"],
  331. },
  332. {
  333. id: "PL01_46",
  334. type: "circle",
  335. x: 195,
  336. y: 140,
  337. connects: ["PL01_45"],
  338. },
  339. {
  340. id: "PL01_47",
  341. type: "circle",
  342. x: 210,
  343. y: 140,
  344. connects: ["PL01_46"],
  345. },
  346. {
  347. id: "PL01_48",
  348. type: "circle",
  349. x: 225,
  350. y: 140,
  351. connects: ["PL01_47"],
  352. },
  353. {
  354. id: "PL01_49",
  355. type: "circle",
  356. x: 240,
  357. y: 140,
  358. connects: ["PL01_48"],
  359. },
  360. {
  361. id: "PL01_50",
  362. type: "circle",
  363. x: 255,
  364. y: 140,
  365. connects: ["PL01_49"],
  366. },
  367. {
  368. id: "PL01_51",
  369. type: "circle",
  370. x: 270,
  371. y: 140,
  372. connects: ["PL01_50"],
  373. },
  374. {
  375. id: "PL01_52",
  376. type: "circle",
  377. x: 285,
  378. y: 140,
  379. connects: ["PL01_51"],
  380. },
  381. {
  382. id: "PL01_53",
  383. type: "circle",
  384. x: 300,
  385. y: 140,
  386. connects: ["PL01_52"],
  387. },
  388. {
  389. id: "PL01_54",
  390. type: "circle",
  391. x: 315,
  392. y: 140,
  393. connects: ["PL01_53"],
  394. },
  395. {
  396. id: "PL01_55",
  397. type: "circle",
  398. x: 330,
  399. y: 140,
  400. connects: ["PL01_54"],
  401. },
  402. {
  403. id: "PL01_56",
  404. type: "circle",
  405. x: 345,
  406. y: 140,
  407. connects: ["PL01_55"],
  408. },
  409. {
  410. id: "PL01_57",
  411. type: "circle",
  412. x: 360,
  413. y: 140,
  414. connects: ["PL01_56"],
  415. },
  416. {
  417. id: "PL01_58",
  418. type: "circle",
  419. x: 375,
  420. y: 140,
  421. connects: ["PL01_57"],
  422. },
  423. {
  424. id: "PL01_59",
  425. type: "circle",
  426. x: 390,
  427. y: 140,
  428. connects: ["PL01_58"],
  429. },
  430. {
  431. id: "PL01_60",
  432. type: "circle",
  433. x: 405,
  434. y: 140,
  435. connects: ["PL01_59"],
  436. },
  437. {
  438. id: "PL01_61",
  439. type: "circle",
  440. x: 420,
  441. y: 140,
  442. connects: ["PL01_60"],
  443. },
  444. ]