StationServiceImpl.java 44.7 KB
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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
package com.bsth.service.impl;

import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;



import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.bsth.common.ResponseCode;
import com.bsth.entity.Line;
import com.bsth.entity.LineInformation;
import com.bsth.entity.Section;
import com.bsth.entity.SectionRoute;
import com.bsth.entity.Station;
import com.bsth.entity.StationRoute;
import com.bsth.repository.LineInformationRepository;
import com.bsth.repository.LineRepository;
import com.bsth.repository.SectionRepository;
import com.bsth.repository.SectionRouteRepository;
import com.bsth.repository.StationRepository;
import com.bsth.repository.StationRouteRepository;
import com.bsth.service.StationService;
import com.bsth.util.GetUIDAndCode;
import com.bsth.util.TransGPS;
import com.bsth.util.TransGPS.Location;

/**
 * 
 * @ClassName: StationServiceImpl(站点service业务层实现类)
 * 
 * @Extends : BaseService
 * 
 * @Description: TODO(站点service业务层)
 * 
 * @Author bsth@lq
 * 
 * @Date 2016年05月03日 上午9:21:17
 *
 * @Version 公交调度系统BS版 0.1
 * 
 */

@Service
public class StationServiceImpl extends BaseServiceImpl<Station, Integer> implements StationService{
	
	@Autowired
	private StationRepository repository;
	
	@Autowired
	private StationRouteRepository routeRepository;
	
	@Autowired
	private LineInformationRepository informationRepository;
	
	@Autowired 
	private LineRepository lineRepository;
	
	@Autowired
	private SectionRepository sectionRepository;
	
	@Autowired
	private SectionRouteRepository sectionRouteRepository;
	
	Logger logger = LoggerFactory.getLogger(this.getClass());
	
	/**
	 * @Description :TODO(系统规划保存数据)
	 * 
	 * @param map <stationJSON:站点信息; sectionJSON:路段信息;dbType:坐标类型; destroy:是否撤销; directions:方向;lineId:线路ID;
	 * 
	 * 			   radius:圆半径;shapesType:图形类型;speedLimit:限速>
	 * 
	 * @return Map<String, Object> <SUCCESS ; ERROR>
	 */
	@Override
	public Map<String, Object> systemSaveStations(Map<String, Object> map) {
		
		Map<String, Object> resultMap = new HashMap<String,Object>();
		
		try {
			
			// 站点信息字符传
			String stationJSON = map.get("stationJSON").toString().equals("")  ? "" : map.get("stationJSON").toString();
			
			// 路段信息字符串
			String sectionJSON = map.get("sectionJSON").toString().equals("")  ? "" : map.get("sectionJSON").toString();
			
			// 方向
			int directions = Integer.parseInt(map.get("directions").toString());
			
			// 是否撤销
			int destroy = map.get("destroy").equals("") ? 0 : Integer.parseInt(map.get("destroy").toString());
			
			// 版本
			int versions = map.get("versions").equals("") ? 0 : Integer.parseInt(map.get("versions").toString());
			
			// 坐标类型
			String dbType =  map.get("dbType").equals("") ? "" : map.get("dbType").toString();
			
			// 限速
			String speedLimitStr = map.get("speedLimit").equals("") ? "" : map.get("speedLimit").toString();
			
			// 线路ID
			int lineId = map.get("lineId").toString().equals("") ? 0 : Integer.parseInt(map.get("lineId").toString());
			
			// 半径
			int radius =  map.get("radius").equals("") ? 0 : Integer.parseInt(map.get("radius").toString());
			
			// 图形类型
			String shapesType = map.get("shapesType").equals("") ? "" : map.get("shapesType").toString();
			
			// 路段距离
			Double sectionDistance = 0.0d;
			
			// 路段时长
			Double sectionDuration = 0.0d;
			
			// 里程(上或者下)
			double sumUpOrDownMileage = 0.0d;
			
			// 线路信息
			Line resultLine = lineRepository.findOne(lineId);
			
			Map<String, Object> resultSaveMapm = new HashMap<String,Object>();
			
			String baseRes = map.get("baseRes").equals("") ? "" : map.get("baseRes").toString();
			
			if(!stationJSON.equals("")) {
				
				// 保存站点与站点路由信息
				resultSaveMapm = savaStationAndStationRouteInfo( stationJSON, sectionDistance, sectionDuration, dbType,radius, shapesType, destroy, versions, sumUpOrDownMileage, directions, resultLine,baseRes);
				
			}
			
			// 路段长度
			sectionDistance = Double.valueOf(resultSaveMapm.get("sectionDistance").toString());
			
			// 路段时长
			sectionDuration= Double.valueOf(resultSaveMapm.get("sectionDuration").toString());
			
			// 如果路段信息JSON字符串不为空
			if(!sectionJSON.equals("")) {
				
				// 保存路段与路段路由信息
				saveSectionAndSectionRouteInfo( sectionJSON, directions, resultLine, speedLimitStr,sectionDistance, sectionDuration, dbType, versions, destroy);
			}
			
			// 里程
			sumUpOrDownMileage = Double.valueOf(resultSaveMapm.get("sumUpOrDownMileage").toString());
			
			BigDecimal s = new BigDecimal(sumUpOrDownMileage);
			
			sumUpOrDownMileage = s.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
			
			// 更新里程
			updateLineInfoUpOrDownMileage( resultLine , directions, sumUpOrDownMileage);
			
			if(directions==0) {
				
				lineUpdateStationName(resultLine);
				
			}
			resultMap.put("status", ResponseCode.SUCCESS);
			
		} catch (Exception e) {
			
			resultMap.put("status", ResponseCode.ERROR);
			
			logger.error("save erro.", e);
			
		}
		
		return resultMap;
	}
	
	
	public void lineUpdateStationName(Line resultLine) {
		
		List<StationRoute> stationRoutes = routeRepository.findByLine(resultLine);
		
		int sizeL = stationRoutes.size();
		
		if(sizeL<0) {
			
			return;
			
		}
		
		if(resultLine.getStartStationName().equals("")){
			
			for(int k =0;k<sizeL;k++) {
				
				StationRoute tempS = stationRoutes.get(k);
				
				if(tempS.getStationMark().equals("B") && tempS.getDirections()==0) {
					
					resultLine.setStartStationName(tempS.getStationName());
					
					lineRepository.save(resultLine);
					
				}
			}

		};
		
		if(resultLine.getEndStationName().equals("")) {
			
			for(int k =0;k<sizeL;k++) {
				
				StationRoute tempS = stationRoutes.get(k);
				
				if(tempS.getStationMark().equals("E") && tempS.getDirections()==0) {
					
					resultLine.setEndStationName(tempS.getStationName());
					
					lineRepository.save(resultLine);
					
				}
			}
			
		}
	}
	
	/**
	 * @Description :保存站点和站点路由信息(系统规划)
	 * 
	 * @param stationJSON:站点和站点路由json数据
	 * 
	 * @param sectionDistance: 总距离
	 * 
	 * @param sectionDuration: 总时长
	 * 
	 * @param dbType:原坐标类型
	 * 
	 * @param radius:半径
	 * 
	 * @param shapesType:图形类型
	 * 
	 * @param destroy:是否撤销
	 * 
	 * @param versions:版本
	 * 
	 * @param sumUpOrDownMileage:里程(上或者下)
	 * 
	 * @param directions:方向
	 * 
	 * @param resultLine:线路实体类
	 * 
	 * @return
	 * 
	 * @throws Exception
	 */
	public Map<String, Object> savaStationAndStationRouteInfo(String stationJSON,double sectionDistance,double sectionDuration,String dbType,
			
			int radius,String shapesType,int destroy,int versions,double sumUpOrDownMileage,int directions,Line resultLine,String baseRes) throws Exception{
		
		Map<String, Object> paramsMeleageAndDistncDura = new HashMap<String,Object>();
		
		JSONArray stationsArray = JSONArray.parseArray(stationJSON);
		
		if(stationsArray.size()>0) {
			
			for(int i = 0;i <stationsArray.size();i++) {
				
				// 站点名称
				String stationName = stationsArray.getJSONObject(i).equals("") ? "" : stationsArray.getJSONObject(i).get("name").toString();
				
				Double distance = stationsArray.getJSONObject(i).get("distance").equals("") ? 0 : Double.parseDouble(stationsArray.getJSONObject(i).get("distance").toString());
				
				// 转成公里
				distance = distance/1000;
				
				BigDecimal d = new BigDecimal(distance);
				
				distance = d.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
				
				sectionDistance= distance + sectionDistance;
				
				Double duration = stationsArray.getJSONObject(i).get("duration").equals("") ? 0 : Double.parseDouble(stationsArray.getJSONObject(i).get("duration").toString());
				
				// 转成分钟
				duration = duration/60;
				
				BigDecimal t = new BigDecimal(duration);
				
				duration = t.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
				
				sectionDuration = duration + sectionDuration;
				
				// 百度经纬度坐标
				String bJwpoints = "";
				
				// 百度坐标经度
				String bLonx = JSONObject.parseObject(stationsArray.getJSONObject(i).get("potion").toString()).get("lng").toString();
				
				// 百度坐标纬度
				String bLatx = JSONObject.parseObject(stationsArray.getJSONObject(i).get("potion").toString()).get("lat").toString();
				
				List<Object[]> stationNameList = repository.findStationName(stationName);
				
				boolean isHave = isHaveStationname(bJwpoints,stationNameList);
				
				// 初始化站点对象
				Station arg0 =  new Station();
				
				// 站点编码
				long stationCode = 0L;
				
				if(isHave) {
					
					Integer stationId = Integer.parseInt(stationNameList.get(0)[1].toString());
					
					arg0 = repository.findOne(stationId);
					
				}else {
					
					stationCode = GetUIDAndCode.getStationId();
					
					arg0.setStationCod(String.valueOf(stationCode));
					
					arg0.setId((int)stationCode);
					
					arg0.setStationName(stationName);
					
					// 原坐标类型
					arg0.setDbType(dbType);
					
					
					String gLonxStr = JSONObject.parseObject(stationsArray.getJSONObject(i).get("wgs").toString()).get("x").equals("") ? null : JSONObject.parseObject(stationsArray.getJSONObject(i).get("wgs").toString()).get("x").toString();
					
					String gLatyStr = JSONObject.parseObject(stationsArray.getJSONObject(i).get("wgs").toString()).get("y").equals("") ? null : JSONObject.parseObject(stationsArray.getJSONObject(i).get("wgs").toString()).get("y").toString();
					
					float gLonx = 0.0f;
					
					float gLaty = 0.0f;
					
					Location resultPoint = null;
					
					if(baseRes.equals("No")){
						
						/** BD to WGS坐标 */
						resultPoint = FromBDPointToWGSPoint(bLonx,bLatx);
						
						if(gLonxStr==null) 
							gLonx = (float)resultPoint.getLng();
						else 
							gLonx =  Float.valueOf(gLonxStr);
						
						if(gLatyStr==null)
							gLaty = (float)resultPoint.getLat();
						else 
							gLaty =  Float.valueOf(gLatyStr);
						
						arg0.setgLonx(gLonx);
						
						arg0.setgLaty(gLaty);
						
						// 百度经纬度
						bJwpoints = bLonx + " " + bLatx;
						
						arg0.setbJwpoints(bJwpoints);
						
					}else if(baseRes.equals("GCJ02")){
						
						Location bdLoc = TransGPS.LocationMake(Double.valueOf(gLonxStr), Double.valueOf(gLatyStr));
						
						Location location = TransGPS.bd_encrypt(bdLoc);
						
						String GCJLng = String.valueOf(location.getLng());
						
						String GCJLat = String.valueOf(location.getLat());
						
						resultPoint = FromBDPointToWGSPoint(GCJLng,GCJLat);
						
						bJwpoints = GCJLng + " "  +GCJLat;
						
						arg0.setgLonx((float)location.getLng());
						
						arg0.setgLaty((float)location.getLat());
						
						arg0.setbJwpoints(bJwpoints);
						
						
					}else if(baseRes.equals("BD09")){
						
						resultPoint = FromBDPointToWGSPoint(gLonxStr, gLatyStr);
						
						bJwpoints = gLonxStr+ " " + gLatyStr;
						
						arg0.setgLonx((float)resultPoint.getLng());
						
						arg0.setgLaty((float)resultPoint.getLat());
						
					}else if(baseRes.equals("WGS84")){
						
						Location bdLoc = TransGPS.LocationMake(Double.valueOf(gLonxStr), Double.valueOf(gLatyStr));
						
						Location gcjLoc = TransGPS.transformFromWGSToGCJ(bdLoc);
						
						Location bdEn = TransGPS.bd_encrypt(gcjLoc);
						
						bJwpoints = String.valueOf(bdEn.getLng()) + " " + String.valueOf(bdEn.getLat()); 
						
						arg0.setbJwpoints(bJwpoints);
						
						arg0.setgLonx(Float.valueOf(gLonxStr));
						
						arg0.setgLaty(Float.valueOf(gLatyStr));
						
					}
					
					
					
				/*	if(gLonxStr==null) 
						gLonx = (float)resultPoint.getLng();
					else 
						gLonx =  Float.valueOf(gLonxStr);
					
					if(gLatyStr==null)
						gLaty = (float)resultPoint.getLat();
					else 
						gLaty =  Float.valueOf(gLatyStr);
					
					arg0.setgLonx(gLonx);
					
					arg0.setgLaty(gLaty);*/
					
 					// 站点地理位置WGS坐标经度
					// String gLonx = JSONObject.parseObject(stationsArray.getJSONObject(i).get("WGSpotion").toString()).get("Lng").toString();
					// arg0.setgLonx(Float.parseFloat(gLonx));
					
					// 站点地理位置WGS坐标纬度
					// String gLaty = JSONObject.parseObject(stationsArray.getJSONObject(i).get("WGSpotion").toString()).get("Lat").toString();
					// arg0.setgLaty(Float.parseFloat(gLaty));
					
					arg0.setRadius(radius);
					
					
					arg0.setShapesType(shapesType);
					
					// 是否想撤销
					arg0.setDestroy(destroy);
					
					// 版本号
					arg0.setVersions(versions);
					
					/*arg0.setbJwpoints(bJwpoints);*/
					
					// 插入站点信息
					repository.save(arg0);
					
				}
				
				// 站点路由对象
				StationRoute route = new StationRoute();
				
				// 站点名称
				route.setStationName(stationName);
				
				route.setDistances(distance);
				
				sumUpOrDownMileage =  sumUpOrDownMileage + distance;
				
				route.setToTime(duration);
				
				
				// 站点编码
				route.setStationCode(arg0.getStationCod());
				
				// 站点序号
				route.setStationRouteCode((i+1)*100);
				
				// 站点类型
				if(i==0) {
					
					// 起始站
					route.setStationMark("B");
					
				}else if(i==stationsArray.size()-1) {
					
					// 终点站
					route.setStationMark("E");
					
				}else {
					
					// 中途站
					route.setStationMark("Z");
					
				}
				
				// 版本号
				route.setVersions(versions);
				
				// 站点ID
				route.setStation(arg0);
				
				// 方向
				route.setDirections(directions);
				
				// 线路ID
				route.setLine(resultLine);
				
				// 线路编码
				route.setLineCode(resultLine.getLineCode());
				
				route.setDestroy(destroy);
				
				// 插入站点路由信息 
				routeRepository.save(route);
				
			}
			
			paramsMeleageAndDistncDura.put("sumUpOrDownMileage", sumUpOrDownMileage);
			
			paramsMeleageAndDistncDura.put("sectionDistance", sectionDistance);
			
			paramsMeleageAndDistncDura.put("sectionDuration", sectionDuration);
			
		}
		
		return paramsMeleageAndDistncDura;
		
	}
	
	/**
	 * 
	 * 
	 * @param resultLine:线路实体类
	 * 
	 * @param directions:方向
	 * 
	 * @param sumUpOrDownMileage:里程(上或者下)
	 */
	public void updateLineInfoUpOrDownMileage(Line resultLine ,int directions,double sumUpOrDownMileage) {
		
		List<LineInformation> listLineInfo = informationRepository.findByLine(resultLine);
		
		int listLineSize = listLineInfo.size();
		
		// 不存在线路标准信息则插入
		if(listLineSize==0) {
			
			LineInformation paramInfo = new LineInformation();
			
			// 上行
			if(directions==0) {
				
				paramInfo.setUpMileage(sumUpOrDownMileage);
				
				paramInfo.setDownMileage(0.0d);
				
				paramInfo.setTotalMileage(sumUpOrDownMileage+0.0d);
				
				paramInfo.setType("zc");
				
				paramInfo.setLine(resultLine);
				
			// 下行	
			}else if(directions==1) {
				
				paramInfo.setUpMileage(0.0d);
				
				paramInfo.setDownMileage(sumUpOrDownMileage);
				
				paramInfo.setTotalMileage(sumUpOrDownMileage+0.0d);
				
				paramInfo.setType("zc");
				
				paramInfo.setLine(resultLine);
				
			}
			
			informationRepository.save(paramInfo);
			
		// 存在则更新	
		}else if(listLineSize>0) {
			
			for(int s =0;s<listLineSize;s++) {
				
				LineInformation lineInformation = listLineInfo.get(s);
				
				double tempUp = lineInformation.getUpMileage();
				
				double tempDown = lineInformation.getDownMileage();
				
				// 上行
				if(directions==0) {
					
					if(tempUp>0.0d){
						
						continue;
					}
					
					
					lineInformation.setUpMileage(sumUpOrDownMileage);
					
					lineInformation.setTotalMileage(sumUpOrDownMileage+tempDown);
					
					
				}else if(directions==1) {
					
					if(tempDown>0.0d){
						
						continue;
					}
					
					lineInformation.setDownMileage(sumUpOrDownMileage);
					
					lineInformation.setTotalMileage(sumUpOrDownMileage+tempUp);
					
				}
				
				informationRepository.save(lineInformation);
				
			}
			
		}
		
	}
	
	/**
	 * @Description 保存路段与路段路由信息
	 * 
	 * @param sectionJSON:路段与路段路由json字符串数据
	 * 
	 * @param directions:方向
	 * 
	 * @param resultLine:线路实体类
	 * 
	 * @param speedLimitStr:限速
	 * 
	 * @param sectionDistance:总距离
	 * 
	 * @param sectionDuration:总时长
	 * 
	 * @param dbType:原中坐标类型
	 * 
	 * @param versions:版本号
	 * 
	 * @param destroy:是否撤销
	 * 
	 */
	public void saveSectionAndSectionRouteInfo(String sectionJSON,int directions,Line resultLine,String speedLimitStr,
			
			double sectionDistance,double sectionDuration,String dbType,int versions,int destroy) throws Exception{
		
		BigDecimal t = new BigDecimal(sectionDistance);
		
		sectionDistance = t.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
		
		
		BigDecimal d = new BigDecimal(sectionDuration);
		
		sectionDuration = d.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
		
		// 转换成JSON数组
		JSONArray sectionsArray = JSONArray.parseArray(sectionJSON);
		
		// 原始线状图形坐标集合
		String sectionsBpoints = "";
		
		// WGS线状图形坐标集合
		String sectionsWJPpoints = "";
		
		// 遍历
		for(int s = 0 ;s<sectionsArray.size();s++) {
			
			String pointsLngStr = sectionsArray.getJSONObject(s).get("lng").toString();
			
			String pointsLatStr = sectionsArray.getJSONObject(s).get("lat").toString();
			
			String WGSLngStr = "";
			
			String WGSLatStr = "";
			
			Location resultPoint = FromBDPointToWGSPoint(pointsLngStr,pointsLatStr);
			
			WGSLngStr = String.valueOf(resultPoint.getLng());
			
			WGSLatStr = String.valueOf(resultPoint.getLat());			
			/** to WGS坐标 */
			/*double lng = Double.parseDouble(WGSLngStr);
			
			double lat = Double.parseDouble(WGSLatStr);
			
			Location bdLoc = TransGPS.LocationMake(lng, lat);
			
			Location location = TransGPS.bd_decrypt(bdLoc);
			
			Location WGSPoint = TransGPS.transformFromGCJToWGS(location);*/
			
			// String WGSLngStr = JSONObject.parseObject(sectionsArray.getJSONObject(s).get("WGSpotion").toString()).get("Lng").toString();
			
			// String WGSLatStr = JSONObject.parseObject(sectionsArray.getJSONObject(s).get("WGSpotion").toString()).get("Lat").toString();
			
			if(s==0) {
				
				sectionsBpoints = pointsLngStr + " " + pointsLatStr;
				
				sectionsWJPpoints = WGSLngStr + " " + WGSLatStr;
				
			}else {
				
				sectionsBpoints = sectionsBpoints + "," +  pointsLngStr + " " + pointsLatStr;
				
				sectionsWJPpoints = sectionsWJPpoints + ","  +   WGSLngStr + " " + WGSLatStr;
				
			}
			
			
		}
		
		long sectionMaxId = GetUIDAndCode.getSectionId();
		
		String sectionCode = String.valueOf(sectionMaxId);
		
		int sectionid = (int)sectionMaxId;
		
		String upOrDownStr = "";
		
		if(directions==0){
			
			upOrDownStr = "上行路段";
			
		}else if(directions==1){
			
			upOrDownStr = "下行路段";
			
		}
		
	    // 路段名称
		String sectionName = resultLine.getName()+upOrDownStr;
		
		// 交出路
		String crosesRoad = "";
		
		// 终止节点
		String endNode = "";
		
		// 开始节点
		String startNode = "";
		
		// 中间节点
		String middleNode = "";
		
		// WGS坐标点集合
		String gsectionVector = "LINESTRING(" + sectionsWJPpoints +")";
		
		// 原坐标点集合
		String bsectionVector = "LINESTRING(" + sectionsBpoints + ")";
		
		// 城建坐标点集合
		String csectionVector = "";
		
		// 路段类型
		String sectionType = "";
		
		// 道路编码
		String roadCoding = "";
		
		// 限速
		double speedLimit = Double.parseDouble(speedLimitStr);
		
		// 说明
		String descriptions = "";
		
		// 路段保存
		sectionRepository.systemSave(sectionCode, sectionName, crosesRoad, endNode, startNode, 
									
									 middleNode, gsectionVector, bsectionVector, sectionType, csectionVector, 
									 
									 roadCoding, sectionDistance, sectionDuration, dbType, speedLimit, 
									 
									 descriptions, versions,sectionid);
									 
		
		
		Section section = sectionRepository.findOne(sectionid);
		
		// 路段路由
		SectionRoute sectionRoute = new SectionRoute();
		
		// 路段序号
		sectionRoute.setSectionrouteCode(100);
		
		// 线路编码
		sectionRoute.setLineCode(resultLine.getLineCode());
		
		// 路段ID
		sectionRoute.setSection(section);
		
		sectionRoute.setDestroy(destroy);
		
		// 线路ID
		sectionRoute.setLine(resultLine);
		
		// 路段编码
		sectionRoute.setSectionCode(sectionCode);
		
		// 版本
		sectionRoute.setVersions(versions);
		
		// 方向
		sectionRoute.setDirections(directions);
		
		// 路段路由保存
		sectionRouteRepository.save(sectionRoute);
		
	}
	
	public boolean isHaveStationname(String bJwpoints,List<Object[]> stationNameList) {
		
		boolean temp = true;
		
		if(stationNameList.size()>0) {
			
			for(int k = 0 ; k <stationNameList.size();k++) {
				
				if(bJwpoints.equals(stationNameList.get(k)[0])){
					
					return temp; 
					
				}else {
					
					temp = false;
					
				}
				
			}
			
		}else {
			
			temp = false;
		}
		
		return temp;
	}
	
	 
	
	/**
	 * @Description :TODO(新增站点保存)
	 * 
	 * @param map <bJwpoints:中心点百度坐标;bPolygonGrid:多边形图形百度坐标;dbType:原坐标类型;
	 * 
	 * 			  descriptions:说明;destroy:是否撤销;directions:方向;distances:到站距离;gJwpoints:中心点WGS坐标;
	 * 
	 * 			  gPolygonGrid:多边形图形WGS坐标;lineId:线路ID;radius:圆半径;roadCoding:道路编码;shapesType:图形类型;
	 * 
	 * 			  stationCod:站点编码;stationMark:站点类型;stationName:站点名称;stationRouteCode:站点序号;toTime:到站时间
	 * 			  
	 * 			  versions:版本号;x:城建坐标x;y:城建坐标y>
	 * 
	 * @return Map<String, Object> <SUCCESS ; ERROR>
	 */
	@Override
	public Map<String, Object> stationSaveMap(Map<String, Object> map) {
		
		Map<String, Object> resultMap = new HashMap<String, Object>();
		
		try {
			
			// 站点编码
			String stationCod = map.get("stationCod").equals("") ? "" : map.get("stationCod").toString();
			
			// 站点ID
			int stationId = Integer.valueOf(stationCod);
			
			// 站点名称
			String stationName = map.get("stationName").equals("") ? "" : map.get("stationName").toString();
			
			// 道路编码
			String roadCoding = map.get("roadCoding").equals("") ? "" : map.get("roadCoding").toString();
			
			// 原坐标类型
			String dbType = map.get("dbType").equals("") ? "" : map.get("dbType").toString();
			
			// 原坐标点
			String bJwpoints = map.get("bJwpoints").equals("") ? "" : map.get("bJwpoints").toString();
			
			String bJwpointsArray[] = null;
			
			if(bJwpoints!=null) {
				
				bJwpointsArray = bJwpoints.split(" ");
				
			}
			
			// WGS经纬度
			Float gLonx = null;
						
			// WGS纬度
			Float gLaty = null;
			
			if(bJwpointsArray.length>0) {
				
				Location resultPoint = FromBDPointToWGSPoint(bJwpointsArray[0],bJwpointsArray[1]);
				
				gLonx = (float)resultPoint.getLng();
				
				gLaty = (float)resultPoint.getLat();
				
			}
			
			/*// WGS经纬度
			String gJwpoints = map.get("gJwpoints").equals("") ? null : map.get("gJwpoints").toString();
			
			String gJwpointsArray []= null;
			
			if(gJwpoints!=null) {
				
				gJwpointsArray = gJwpoints.split(" ");
				
			}*/
			
			// 方向
			Integer directions = map.get("directions").equals("") ? null : Integer.parseInt(map.get("directions").toString());
			
			// 距离
			Double distances =  map.get("distances").equals("") ? null : Double.parseDouble(map.get("distances").toString());
			
			// 时间
			Double toTime = map.get("toTime").equals("") ? null : Double.parseDouble(map.get("toTime").toString());
			
			/*// WGS经纬度
			Float gLonx = Float.parseFloat(gJwpointsArray[0]);
			
			// WGS纬度
			Float gLaty = Float.parseFloat(gJwpointsArray[1]);*/
			
			// 城建坐标经度
			Float x = map.get("x").equals("") ?  null : Float.parseFloat(map.get("x").toString());
			
			// 城建坐标纬度
			Float y = map.get("y").equals("") ? null : Float.parseFloat(map.get("y").toString());
			
			// 多边形WGS坐标点集合
			// String gPloygonGrid = map.get("gPolygonGrid").equals("") ? "" : map.get("gPolygonGrid").toString();
			
			// 多边形原坐标点集合
			String bPloygonGrid = map.get("bPolygonGrid").equals("") ? "" : map.get("bPolygonGrid").toString();
			
			// 多边形WGS坐标点集合
			String gPloygonGrid ="";
			
			if(!bPloygonGrid.equals("")) {
				
				String bPloygonGridArray[] = bPloygonGrid.split(",");
				
				int bLen_ = bPloygonGridArray.length;
				
				for(int b = 0 ;b<bLen_;b++) {
					
					String tempArray[]= bPloygonGridArray[b].split(" ");
					
					Location resultPoint = FromBDPointToWGSPoint(tempArray[0],tempArray[1]);
					
					 if(b==0) {
						
						 gPloygonGrid = String.valueOf(resultPoint.getLng()) + " " + String.valueOf(resultPoint.getLat());
							
					 }else {
						
						 gPloygonGrid = gPloygonGrid +  ',' + String.valueOf(resultPoint.getLng()) + " " + String.valueOf(resultPoint.getLat());
						 
					 }
					
				}
				
			}
			
			bPloygonGrid = "POLYGON(("  + bPloygonGrid +"))";
			
			gPloygonGrid = "POLYGON(("  + gPloygonGrid +"))";
			
			// 是否撤销
			Integer destroy = map.get("destroy").equals("") ? null : Integer.parseInt(map.get("destroy").toString());
			
			// 圆半径
			Integer radius = map.get("radius").equals("") ? null : Integer.parseInt(map.get("radius").toString());
			
			// 图形类型
			String shapesType = map.get("shapesType").equals("") ? "" : map.get("shapesType").toString();
			
			// 版本
			Integer versions = map.get("versions").equals("") ? null : Integer.parseInt(map.get("versions").toString());
			
			// 说明
			String descriptions = map.get("descriptions").equals("") ? "" : map.get("descriptions").toString();
			
			// 创建人
			Integer createBy = map.get("createBy").equals("") ? null : Integer.parseInt(map.get("createBy").toString());
			
			// 修改人
			Integer updateBy = map.get("updateBy").equals("") ?  null : Integer.parseInt(map.get("updateBy").toString());
			
			// 线路ID
			int line = map.get("lineId").equals("") ? 0 : Integer.parseInt(map.get("lineId").toString());
			
			// 线路信息
			Line resultLine = lineRepository.findOne(line);
			
			// 站点路由序号
			String stationRouteCodeStr = map.get("stationRouteCode").equals("") ? "" : map.get("stationRouteCode").toString();
			
			// 站点类型
			String stationMark = map.get("stationMark").equals("") ? "" : map.get("stationMark").toString();
			
			Integer stationRouteCode = null;
			
			if(stationRouteCodeStr!="") {
				
				String stationRouteCodeArray [] = stationRouteCodeStr.split("_");
				
				stationRouteCode = Integer.parseInt(stationRouteCodeArray[0].toString())+1;
				
				
			}else {
				
				stationRouteCode = 100;
				
			}
			
			// 保存站点
			repository.stationSave(stationCod, stationName, roadCoding, dbType, bJwpoints, 
						
									gLonx, gLaty, x, y, gPloygonGrid,bPloygonGrid, destroy, radius, 
								
									shapesType, versions, descriptions, createBy, updateBy,stationId);
									
									
			
			
			Station station = repository.findOne(stationId);
			
			StationRoute arg0 = new StationRoute();
			
			// 线路
			arg0.setLine(resultLine);
			
			arg0.setLineCode(resultLine.getLineCode());
			
			// 站点
			arg0.setStation(station);
			
			// 站点路由名称
			arg0.setStationName(stationName);
			
			// 站点路由编码
			arg0.setStationCode(stationCod);
			
			// 站点路由序号
			arg0.setStationRouteCode(stationRouteCode);
			
			// 站点路由类型
			arg0.setStationMark(stationMark);
			
			// 站点路由站点方向
			arg0.setDirections(directions);
			
			// 站点路由到站距离
			arg0.setDistances(distances);
			
			// 站点路由到站时间
			arg0.setToTime(toTime);
			
			// 站点版本号
			arg0.setVersions(versions);
			
			// 是否撤销
			arg0.setDestroy(destroy);
			
			// 站点路由说明
			arg0.setDescriptions(descriptions);
			
			routeRepository.save(arg0);
			
			resultMap.put("status", ResponseCode.SUCCESS);
			
		} catch (Exception e) {

			resultMap.put("status", ResponseCode.ERROR);
			
			logger.error("save erro.", e);
			
		}
		
		return resultMap;
	}
	
	/**
	 * @Description :TODO(更新站点保存)
	 * 
	 * @param map <bJwpoints:中心点百度坐标;bPolygonGrid:多边形图形百度坐标;dbType:原坐标类型;
	 * 
	 * 			  descriptions:说明;destroy:是否撤销;directions:方向;distances:到站距离;gJwpoints:中心点WGS坐标;
	 * 
	 * 			  gPolygonGrid:多边形图形WGS坐标;lineId:线路ID;radius:圆半径;roadCoding:道路编码;shapesType:图形类型;
	 * 
	 * 			  stationCod:站点编码;stationMark:站点类型;stationName:站点名称;stationRouteCode:站点序号;toTime:到站时间
	 * 			  
	 * 			  versions:版本号;x:城建坐标x;y:城建坐标y>
	 * 
	 * @return Map<String, Object> <SUCCESS ; ERROR>
	 */
	@Override
	public Map<String, Object> stationUpdate(Map<String, Object> map) {
		
		Map<String, Object> resultMap = new HashMap<String, Object>();
		
		try {
			
			// 站点Id
			Integer stationId = map.get("stationId").equals("") ? null : Integer.parseInt(map.get("stationId").toString());
			
			String stationCod = map.get("stationCod").equals("") ? "" : map.get("stationCod").toString();
			
			// 站点名称
			String stationName = map.get("stationName").equals("") ? "" : map.get("stationName").toString();
			
			// 所在道路编码
			String roadCoding = map.get("roadCoding").equals("") ? "" : map.get("roadCoding").toString();
			
			// 经纬坐标类型 
			String dbType = map.get("dbType").equals("") ? "" : map.get("dbType").toString();
			
			// 百度经纬度坐标
			String bJwpoints = map.get("bJwpoints").equals("") ? "" : map.get("bJwpoints").toString();
			
			// WGS经纬度坐标
			// String gJwpoints = map.get("gJwpoints").equals("") ? "" : map.get("gJwpoints").toString();
			
			String bJwpointsArray[] =null;
			
			if(bJwpoints!=null) {
				
				bJwpointsArray = bJwpoints.split(" ");
				
			}
			
			// WGS经纬度
			Float gLonx = null;
						
			// WGS纬度
			Float gLaty = null;
			
			if(bJwpointsArray.length>0) {
				
				Location resultPoint = FromBDPointToWGSPoint(bJwpointsArray[0],bJwpointsArray[1]);
				
				gLonx = (float)resultPoint.getLng();
				
				gLaty = (float)resultPoint.getLat();
				
			}
			
			/*// 站点地理位置WGS坐标经度
			String gLonx = "";
			
			// 站点地理位置WGS坐标纬度
			String gLaty = "";
			
			if(gJwpoints!=null) {
				
				String gJwpointsArray[] = gJwpoints.split(" ");
				
				gLonx = gJwpointsArray[0];
				
				gLaty = gJwpointsArray[1];
				
			}*/
			
			// 图形类型
			String shapesType = map.get("shapesType").equals("") ? "" : map.get("shapesType").toString();
			
			// 圆形半径
			Integer radius = map.get("radius").equals("") ? null : Integer.parseInt(map.get("radius").toString());
			
			// 多边形空间WGS坐标点集合
			/*String gPolygonGrid = map.get("gPolygonGrid").equals("") ? "" : map.get("gPolygonGrid").toString();*/
			
			// 多边形空间原坐标坐标点集合
			String bPloygonGrid = map.get("bPolygonGrid").equals("") ? "" : map.get("bPolygonGrid").toString();
			
			// 多边形WGS坐标点集合
			String gPloygonGrid ="";
			
			if(!bPloygonGrid.equals("")) {
				
				String bPloygonGridArray[] = bPloygonGrid.split(",");
				
				int bLen_ = bPloygonGridArray.length;
				
				for(int b = 0 ;b<bLen_;b++) {
					
					String tempArray[]= bPloygonGridArray[b].split(" ");
					
					Location resultPoint = FromBDPointToWGSPoint(tempArray[0],tempArray[1]);
					
					 if(b==0) {
						
						 gPloygonGrid = resultPoint.getLng() + " " + resultPoint.getLat();
							
					 }else {
						
						 gPloygonGrid = gPloygonGrid +  ',' + resultPoint.getLng() + " " + resultPoint.getLat();
						 
					 }
					
				}
				
			}
			
			bPloygonGrid = "POLYGON(("  + bPloygonGrid +"))";
			
			gPloygonGrid = "POLYGON(("  + gPloygonGrid +"))";
			
			// 是否撤销
			Integer destroy = map.get("destroy").equals("") ? null : Integer.parseInt(map.get("destroy").toString());
			
			// 版本号
			Integer versions = map.get("versions").equals("") ? null : Integer.parseInt(map.get("versions").toString());
			
			// 描述与说明
			String descriptions = map.get("descriptions").equals("") ? "" : map.get("descriptions").toString();
			
			Float x = map.get("x").equals("") ? null  : Float.parseFloat(map.get("x").toString());
			
			Float y = map.get("y").equals("") ?  null  : Float.parseFloat(map.get("y").toString());
			
			// 更新
			repository.stationUpdate(stationCod, stationName, roadCoding, dbType, bJwpoints, gLonx, gLaty, x, y, bPloygonGrid, gPloygonGrid, destroy, radius, shapesType, versions, descriptions, stationId);
			
			
			// 站点路由Id
			Integer stationRouteId = map.get("stationRouteId").equals("") ? null : Integer.parseInt(map.get("stationRouteId").toString());
			
			StationRoute resultS = routeRepository.findOne(stationRouteId); 
			
			// 站点路由序号
			String stationRouteCodeStr = map.get("stationRouteCode").equals("") ? null : map.get("stationRouteCode").toString();
						
			Integer stationRouteCode = null;
						
			if(stationRouteCodeStr!=null) {
							
					String stationRouteCodeAraay[] = stationRouteCodeStr.split("_");
					
					int old_code = resultS.getStationRouteCode();
					
					int new_code = Integer.parseInt(stationRouteCodeAraay[0].toString())+100;
					
					if(new_code==old_code){
						
						stationRouteCode = new_code;
						
					}else {
						
						stationRouteCode = new_code-100+1;
						
					}
					
			}else {
				
				stationRouteCode = resultS.getStationRouteCode();
				
			}
			
			stationRouteCode = stationRouteCode == null ? 100 : stationRouteCode;
			
			Integer LineId = map.get("stationRouteLine").equals("") ? null : Integer.parseInt(map.get("stationRouteLine").toString());
			
			String stationMark = map.get("stationMark").equals("") ? null : map.get("stationMark").toString();
			
			Double distances = map.get("distances").equals("") ? null : Double.parseDouble(map.get("distances").toString());
			
			Double toTime = map.get("toTime").equals("") ? null : Double.parseDouble(map.get("toTime").toString());
			
			Integer directions = map.get("directions").equals("") ? null : Integer.parseInt(map.get("directions").toString());
			
			Station station = repository.findOne(stationId);
			
			Line line = lineRepository.findOne(LineId);
			
			
			StationRoute stationRoute = new StationRoute();
			
			stationRoute.setStationName(stationName);
			
			stationRoute.setId(stationRouteId);
			
			stationRoute.setStationRouteCode(stationRouteCode);
			
			stationRoute.setStation(station);
			
			stationRoute.setStationCode(station.getStationCod());
			
			stationRoute.setLine(line);
			
			stationRoute.setLineCode(line.getLineCode());
			
			stationRoute.setStationMark(stationMark);
			
			stationRoute.setDistances(distances);
			
			stationRoute.setToTime(toTime);
			
			stationRoute.setDirections(directions);
			
			stationRoute.setVersions(versions);
			
			stationRoute.setDestroy(destroy);
			
			stationRoute.setDescriptions(descriptions);
			
			routeRepository.save(stationRoute);
			
			resultMap.put("status", ResponseCode.SUCCESS);
			
		} catch (Exception e) {
			
			resultMap.put("status", ResponseCode.ERROR);
			
			logger.error("save erro.", e);
			
		}
		return resultMap;
	}

	
	/** 百度坐标转WGS坐标 */
	public Location FromBDPointToWGSPoint(String bLonx,String bLatx) {
		
		double lng = Double.parseDouble(bLonx);
		
		double lat = Double.parseDouble(bLatx);
		
		Location bdLoc = TransGPS.LocationMake(lng, lat);
		
		Location location = TransGPS.bd_decrypt(bdLoc);
		
		Location WGSPoint = TransGPS.transformFromGCJToWGS(location);
		
		return WGSPoint;
		
	}
	
	
	@Override
	public Map<String, Object> manualSave(Map<String, Object> map) {
		
		Map<String, Object> resultMap = new HashMap<String,Object>();
		
		try {
			
			// 站点信息字符传
		    String stationJSON = map.get("stationJSON").equals("")  ? "" : map.get("stationJSON").toString();
						
		    // 路段信息字符串
		    String sectionJSON = map.get("sectionJSON").equals("")  ? "" : map.get("sectionJSON").toString();
		   
		    // 方向
		    int directions = Integer.parseInt(map.get("directions").toString());
					
		    // 是否撤销
		    int destroy = map.get("destroy").equals("") ? 0 : Integer.parseInt(map.get("destroy").toString());
					
		    // 版本
		    int versions = map.get("versions").equals("") ? 0 : Integer.parseInt(map.get("versions").toString());
					
			// 坐标类型
			String dbType =  map.get("dbType").equals("") ? "" : map.get("dbType").toString();
					
			// 限速
			String speedLimitStr = map.get("speedLimit").equals("") ? "" : map.get("speedLimit").toString();
			
			// 线路ID
			int lineId = map.get("lineId").equals("") ? 0 : Integer.parseInt(map.get("lineId").toString());
			
			// 半径
			int radius =  map.get("radius").equals("") ? 0 : Integer.parseInt(map.get("radius").toString());
			
			// 图形类型
			String shapesType = map.get("shapesType").equals("") ? "" : map.get("shapesType").toString();
			
			// 线路信息
			Line resultLine = lineRepository.findOne(lineId);
			
			// 路段距离
			Double sectionDistance = 0.0d;
			
			// 路段时长
			Double sectionDuration = 0.0d;
			
			// 里程(上或者下)
			double sumUpOrDownMileage = 0.0d;
			
			Map<String, Object> resultSaveMapm = new HashMap<String,Object>();
			
			String baseRes = map.get("baseRes").equals("") ? "" : map.get("baseRes").toString();
			
			if(!stationJSON.equals("")) {
				
				// 保存站点与站点路由信息
				resultSaveMapm = savaStationAndStationRouteInfo( stationJSON, sectionDistance, sectionDuration, dbType,radius, shapesType, destroy, versions, sumUpOrDownMileage, directions, resultLine,baseRes);
				
			}
			
			// 路段长度
			sectionDistance = Double.valueOf(resultSaveMapm.get("sectionDistance").toString());
			
			// 路段时长
			sectionDuration = Double.valueOf(resultSaveMapm.get("sectionDuration").toString());
			
			// 如果路段信息JSON字符串不为空
			if(!sectionJSON.equals("")) {
				
				manualSaveSectionAndSectionRoute(sectionJSON, speedLimitStr, sectionDistance, sectionDuration, dbType, versions, resultLine, destroy, directions);
				
			}
			
			// 里程
			sumUpOrDownMileage = Double.valueOf(resultSaveMapm.get("sumUpOrDownMileage").toString());
			
			BigDecimal s = new BigDecimal(sumUpOrDownMileage);
			
			sumUpOrDownMileage = s.setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
			
			// 更新里程
			// updateLineInfoUpOrDownMileage( resultLine , directions, sumUpOrDownMileage);
			
			if(directions==0) {
				
				// lineUpdateStationName(resultLine);
				
			}
			
			resultMap.put("status", ResponseCode.SUCCESS);
			
		} catch (Exception e) {

			resultMap.put("status", ResponseCode.ERROR);
			
			logger.error("save erro.", e);
			
		}
		
		return resultMap;
	}
	
	public void manualSaveSectionAndSectionRoute(String sectionJSON,String speedLimitStr,double sectionDistance,
												
												 double sectionTime,String dbType,Integer versions,Line resultLine,
												 
												 Integer destroy,Integer directions) {
		
		// 转换成JSON数组
		JSONArray sectionsArray = JSONArray.parseArray(sectionJSON);
		
		// 遍历
		for(int s = 0 ;s<sectionsArray.size();s++) {
			
			// 站点名称
			String sectionName = sectionsArray.getJSONObject(s).equals("") ? "" : sectionsArray.getJSONObject(s).get("sectionName").toString();
			
			String pointsStr = sectionsArray.getJSONObject(s).equals("") ? "" : sectionsArray.getJSONObject(s).get("points").toString();
			
			// 原始线状图形坐标集合
			String sectionsBpoints = "";
			
			// WGS线状图形坐标集合
			String sectionsWJPpoints = "";
			
			if(!pointsStr.equals("")){
				
				JSONArray pointsArray = JSONArray.parseArray(pointsStr);
				
				for(int p =0;p<pointsArray.size();p++){
					
					String pointsLngStr = pointsArray.getJSONObject(p).get("lng").toString();
					
					String pointsLatStr = pointsArray.getJSONObject(p).get("lat").toString();
					
					Location resultPoint = FromBDPointToWGSPoint(pointsLngStr,pointsLatStr);
					
					String WGSLngStr = String.valueOf(resultPoint.getLng());
					
					String WGSLatStr = String.valueOf(resultPoint.getLat());
					
					if(p==pointsArray.size()-1){
						
						sectionsBpoints = sectionsBpoints + pointsLngStr + " " + pointsLatStr;
						
						sectionsWJPpoints =  sectionsWJPpoints + WGSLngStr + " " + WGSLatStr;
						
						// sectionsWJPpoints = sectionsWJPpoints + pointsArray.getJSONObject(p).getJSONObject("WGSpotion").get("Lng") + " " +pointsArray.getJSONObject(p).getJSONObject("WGSpotion").get("Lat");
						
					}else {
						
						sectionsBpoints = sectionsBpoints + pointsArray.getJSONObject(p).get("lng").toString() + " " +pointsArray.getJSONObject(p).get("lat").toString()+",";
						
						sectionsWJPpoints =  sectionsWJPpoints + WGSLngStr + " " + WGSLatStr + ",";
						
						// sectionsWJPpoints = sectionsWJPpoints + pointsArray.getJSONObject(p).getJSONObject("WGSpotion").get("Lng") + " " +pointsArray.getJSONObject(p).getJSONObject("WGSpotion").get("Lat") +",";
						
						
					}
					
				}
				
			}
		 
			long sectionMaxId = GetUIDAndCode.getSectionId();
			
			String sectionCode = String.valueOf(sectionMaxId);
			
			int sectionId = (int) (sectionMaxId);
			
			// 交出路
			String crosesRoad = "";
			
			// 终止节点
			String endNode = "";
			
			// 开始节点
			String startNode = "";
			
			// 中间节点
			String middleNode = "";
			
			// WGS坐标点集合
			String gsectionVector = "LINESTRING(" + sectionsWJPpoints +")";
			
			// 原坐标点集合
			String bsectionVector = "LINESTRING(" + sectionsBpoints + ")";
			
			// 城建坐标点集合
			String csectionVector = "";
			
			// 路段类型
			String sectionType = "";
			
			// 道路编码
			String roadCoding = "";
			
			// 限速
			double speedLimit = Double.parseDouble(speedLimitStr);
			
			// 说明
			String descriptions = "";
			
			
			sectionRepository.systemSave(sectionCode, sectionName, crosesRoad, endNode, startNode, 
										
										 middleNode, gsectionVector, bsectionVector, sectionType, csectionVector, 
										 
										 roadCoding, sectionDistance, sectionTime, dbType, speedLimit, 
										 
										 descriptions, versions,sectionId);
										 
			
			
			Section section = sectionRepository.findOne(Integer.parseInt(sectionCode));
			
			// 路段路由
			SectionRoute sectionRoute = new SectionRoute();
			
			// 路段序号
			sectionRoute.setSectionrouteCode((s+1)*100);
			
			// 线路编码
			sectionRoute.setLineCode(resultLine.getLineCode());
			
			// 路段ID
			sectionRoute.setSection(section);
			
			// 线路ID
			sectionRoute.setLine(resultLine);
			
			// 路段编码
			sectionRoute.setSectionCode(sectionCode);
			
			// 版本
			sectionRoute.setVersions(versions);
			
			sectionRoute.setDestroy(destroy);
			
			// 方向
			sectionRoute.setDirections(directions);
			
			sectionRouteRepository.save(sectionRoute);
		}
		
	}

}