| | |
| | | |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.data.redis.core.RedisTemplate; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.util.ObjectUtils; |
| | | import org.springframework.web.context.request.RequestContextHolder; |
| | | import org.springframework.web.context.request.ServletRequestAttributes; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Collection; |
| | | import java.util.Date; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | import java.util.Objects; |
| | | import java.util.concurrent.TimeUnit; |
| | | import java.util.regex.Matcher; |
| | | import java.util.regex.Pattern; |
| | | import java.util.stream.Collectors; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.moral.api.entity.ManageAccount; |
| | |
| | | import com.moral.api.pojo.redisBean.AccountInfoDTO; |
| | | import com.moral.api.service.ManageCoordinateDetailService; |
| | | import com.moral.api.util.RoadUtils; |
| | | import com.moral.constant.Constants; |
| | | import com.moral.constant.RedisConstants; |
| | | import com.moral.util.TokenUtils; |
| | | import com.sun.org.apache.regexp.internal.RE; |
| | | |
| | |
| | | |
| | | @Autowired |
| | | private HistorySecondCruiserMapper historySecondCruiserMapper; |
| | | |
| | | @Autowired |
| | | private RedisTemplate redisTemplate; |
| | | /** |
| | | * 新增经纬度 |
| | | * @param params |
| | |
| | | String userName = manageAccount.getUserName(); |
| | | |
| | | int coordinateId = Integer.parseInt(params.get("coordinateId").toString()); |
| | | List<ManageCoordinateDetail> manageCoordinateDetails = (List<ManageCoordinateDetail>) params.get("data"); |
| | | for (ManageCoordinateDetail manageCoordinateDetail : manageCoordinateDetails) { |
| | | if (manageCoordinateDetail.getState().equals("1")){ |
| | | String code = manageCoordinateDetail.getCode(); |
| | | List<Map<String, Object>> data = (List<Map<String, Object>>) params.get("data"); |
| | | |
| | | for (Map<String, Object> datum : data) { |
| | | ManageCoordinateDetail manageCoordinateDetail = new ManageCoordinateDetail(); |
| | | String code = datum.get("code").toString(); |
| | | String state = datum.get("state").toString(); |
| | | if (state.equals("1")){ |
| | | String[] rs = code.split("_"); |
| | | manageCoordinateDetail.setCoordinateId(coordinateId); |
| | | manageCoordinateDetail.setLongitude(Double.parseDouble(rs[0])); |
| | |
| | | if (integer>=1){ |
| | | return null; |
| | | } |
| | | manageCoordinateDetailMapper.insert(manageCoordinateDetail); |
| | | |
| | | manageCoordinateDetailMapper.insert(manageCoordinateDetail); |
| | | }else { |
| | | manageCoordinateDetailMapper.deleteById(manageCoordinateDetail.getId()); |
| | | manageCoordinateDetailMapper.deleteById(manageCoordinateDetail.getId()); |
| | | // manageCoordinateDetailMapper.delete(wrapper); |
| | | |
| | | } |
| | | } |
| | | return 200; |
| | |
| | | * @return |
| | | */ |
| | | @Override |
| | | public Map<String, Object> selectCoordinate(Map<String, Object> params) { |
| | | public Map<String,Object> selectCoordinate(Map<String, Object> params) { |
| | | HashMap<String,Object> rsMap = new HashMap<>(); |
| | | String mac = params.get("mac").toString(); |
| | | String time1 = params.get("time1").toString(); |
| | | ArrayList<ManageCoordinateDetail> rsList1 = new ArrayList<>(); |
| | | params.put("dateFormat", "%Y-%m-%d %H:%i:%s"); |
| | | String coordinateId = params.get("coordinateId").toString(); |
| | | QueryWrapper<ManageCoordinateDetail> queryWrapper = new QueryWrapper<>(); |
| | | queryWrapper.eq("coordinate_id",coordinateId); |
| | | List<ManageCoordinateDetail> manageCoordinateDetails = manageCoordinateDetailMapper.selectList(queryWrapper); |
| | | List<CruiserDTO> cruiserInfo = (List<CruiserDTO>) redisTemplate.opsForHash().get(RedisConstants.DATE_COORDINATE, mac + time1); |
| | | if (ObjectUtils.isEmpty(cruiserInfo)){ |
| | | cruiserInfo = historySecondCruiserMapper.getCruiserInfo(params); |
| | | cruiserInfo = cruiserInfo.stream().distinct().collect(Collectors.toList()); |
| | | cruiserInfo.removeIf(o->{ |
| | | if (ObjectUtils.isEmpty(o.getFlyLon()) || ObjectUtils.isEmpty(o.getFlyLat())) { |
| | | return true; |
| | | } |
| | | double lon = o.getFlyLon(); |
| | | double lat = o.getFlyLat(); |
| | | double[] doubles = RoadUtils.transformWGS84ToBD09(lon, lat); |
| | | Matcher matcher = Pattern.compile("\\d*\\.\\d{8}").matcher(""+doubles[0]); |
| | | matcher.find(); |
| | | String s = matcher.group(); |
| | | Matcher matcher1 = Pattern.compile("\\d*\\.\\d{8}").matcher(""+doubles[1]); |
| | | matcher1.find(); |
| | | String s1 = matcher1.group(); |
| | | o.setFlyLon(Double.parseDouble(s)); |
| | | o.setFlyLat(Double.parseDouble(s1)); |
| | | o.setData(lon+"_"+lat); |
| | | // o.setFlyLon(doubles[0]); |
| | | // o.setFlyLat(doubles[1]); |
| | | if (lon < 70 || lon > 150 || lat < 20 || lat > 60) { |
| | | return true; |
| | | } |
| | | return false; |
| | | }); |
| | | |
| | | redisTemplate.opsForHash().put(RedisConstants.DATE_COORDINATE,mac+time1,cruiserInfo); |
| | | //设置过期时间 |
| | | redisTemplate.opsForHash().getOperations().expire(RedisConstants.DATE_COORDINATE,6000, TimeUnit.SECONDS); |
| | | |
| | | } |
| | | // List<CruiserDTO> cruiserInfo = historySecondCruiserMapper.getCruiserInfo(params); |
| | | if (ObjectUtils.isEmpty(manageCoordinateDetails)){ |
| | | rsMap.put("rsData",cruiserInfo); |
| | | rsMap.put("data",rsList1); |
| | | return rsMap; |
| | | } |
| | | for (int i=cruiserInfo.size()-1;i>0;i--) { |
| | | CruiserDTO cruiserDTO = cruiserInfo.get(i); |
| | | String data = cruiserDTO.getData(); |
| | | String[] rs = data.split("_"); |
| | | String flyLon = rs[0]; |
| | | String flyLat = rs[1]; |
| | | for (ManageCoordinateDetail manageCoordinateDetail : manageCoordinateDetails) { |
| | | String latitude = manageCoordinateDetail.getLatitude().toString(); |
| | | String longitude = manageCoordinateDetail.getLongitude().toString(); |
| | | if (latitude.equals(flyLat) && longitude.equals(flyLon)){ |
| | | manageCoordinateDetail.setLongitude(Double.parseDouble(flyLon)); |
| | | manageCoordinateDetail.setLatitude(Double.parseDouble(flyLat)); |
| | | rsList1.add(manageCoordinateDetail); |
| | | cruiserInfo.remove(i); |
| | | break; |
| | | } |
| | | } |
| | | |
| | | |
| | | return null; |
| | | } |
| | | rsMap.put("rsData",cruiserInfo); |
| | | rsMap.put("data",rsList1); |
| | | return rsMap; |
| | | } |
| | | |
| | | |