|
|
@ -289,8 +289,12 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
* @param periodType 时间粒子 |
|
|
|
*/ |
|
|
|
@ApiOperation(value = "导出全路段车流量状况分析", tags = {"ECharts导出"}) |
|
|
|
@GetMapping("/history/exportRealTimeTrafficFlow") |
|
|
|
public void exportRealTimeTrafficFlow(HttpServletResponse response, String startDate, String direction, String periodType) { |
|
|
|
@PostMapping("/history/exportRealTimeTrafficFlow") |
|
|
|
public void exportRealTimeTrafficFlow(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException { |
|
|
|
String startDate = params.get("startDate"); |
|
|
|
String direction = params.get("direction"); |
|
|
|
String periodType = params.get("periodType"); |
|
|
|
String fileUrl = params.get("fileUrl"); |
|
|
|
if (StringUtils.isEmpty(startDate) || StringUtils.isEmpty(direction) || StringUtils.isEmpty(periodType)) { |
|
|
|
return; |
|
|
|
} |
|
|
@ -346,7 +350,14 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
ExcelUtil<RealTimeTrafficFlow> util = new ExcelUtil<>(RealTimeTrafficFlow.class); |
|
|
|
util.exportExcel(response, list, UniversalEnum.THE_WHOLE_SECTION_TWO_WAY_REAL_TIME_TRAFFIC_FLOW.getValue()); |
|
|
|
|
|
|
|
int commaIndex = fileUrl.indexOf(','); |
|
|
|
if (commaIndex == -1) { |
|
|
|
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data"); |
|
|
|
} |
|
|
|
String base64Data = fileUrl.substring(commaIndex + 1); |
|
|
|
byte[] imageBytes = Base64.getDecoder().decode(base64Data); |
|
|
|
util.exportImgExcel(response, list, UniversalEnum.THE_WHOLE_SECTION_TWO_WAY_REAL_TIME_TRAFFIC_FLOW.getValue(),imageBytes,5,12); |
|
|
|
// 将查询结果封装为成功响应并返回
|
|
|
|
} |
|
|
|
|
|
|
@ -397,8 +408,12 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
* @param periodType 时间粒子 |
|
|
|
*/ |
|
|
|
@ApiOperation(value = "导出车流量时段分析", tags = {"ECharts导出"}) |
|
|
|
@GetMapping("/history/exportTrafficPeriodAnalysis") |
|
|
|
public void exportTrafficPeriodAnalysis(HttpServletResponse response, String startDate, String direction, String periodType) { |
|
|
|
@PostMapping("/history/exportTrafficPeriodAnalysis") |
|
|
|
public void exportTrafficPeriodAnalysis(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException { |
|
|
|
String startDate = params.get("startDate"); |
|
|
|
String direction = params.get("direction"); |
|
|
|
String periodType = params.get("periodType"); |
|
|
|
String fileUrl = params.get("fileUrl"); |
|
|
|
if (StringUtils.isEmpty(startDate) || StringUtils.isEmpty(direction) || StringUtils.isEmpty(periodType)) { |
|
|
|
return; |
|
|
|
} |
|
|
@ -454,7 +469,14 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
ExcelUtil<TrafficPeriodAnalysis> util = new ExcelUtil<>(TrafficPeriodAnalysis.class); |
|
|
|
util.exportExcel(response, list, UniversalEnum.TRAFFIC_PERIOD_ANALYSIS.getValue()); |
|
|
|
|
|
|
|
int commaIndex = fileUrl.indexOf(','); |
|
|
|
if (commaIndex == -1) { |
|
|
|
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data"); |
|
|
|
} |
|
|
|
String base64Data = fileUrl.substring(commaIndex + 1); |
|
|
|
byte[] imageBytes = Base64.getDecoder().decode(base64Data); |
|
|
|
util.exportImgExcel(response, list, UniversalEnum.TRAFFIC_PERIOD_ANALYSIS.getValue(),imageBytes,5,12); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation("断面车流量排名") |
|
|
@ -474,8 +496,12 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
* @param periodType 时间粒子 |
|
|
|
*/ |
|
|
|
@ApiOperation(value = "导出断面车流量排名", tags = {"ECharts导出"}) |
|
|
|
@GetMapping("/history/exportSectionTrafficRanking") |
|
|
|
public void exportSectionTrafficRanking(HttpServletResponse response, String startDate, String direction, String periodType) { |
|
|
|
@PostMapping("/history/exportSectionTrafficRanking") |
|
|
|
public void exportSectionTrafficRanking(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException { |
|
|
|
String startDate = params.get("startDate"); |
|
|
|
String direction = params.get("direction"); |
|
|
|
String periodType = params.get("periodType"); |
|
|
|
String fileUrl = params.get("fileUrl"); |
|
|
|
List<SectionTrafficRanking> list = new ArrayList<>(); |
|
|
|
List<Map<String, String>> dcStatisticsData = dcGantryStatisticsDataService.sectionTrafficRanking(startDate, direction, periodType); |
|
|
|
for (int i = UniversalEnum.ZERO.getNumber(); i < dcStatisticsData.size(); i++) { |
|
|
@ -487,7 +513,15 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
ExcelUtil<SectionTrafficRanking> util = new ExcelUtil<>(SectionTrafficRanking.class); |
|
|
|
util.exportExcel(response, list, UniversalEnum.SECTION_TRAFFIC_RANKING.getValue()); |
|
|
|
|
|
|
|
int commaIndex = fileUrl.indexOf(','); |
|
|
|
if (commaIndex == -1) { |
|
|
|
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data"); |
|
|
|
} |
|
|
|
String base64Data = fileUrl.substring(commaIndex + 1); |
|
|
|
byte[] imageBytes = Base64.getDecoder().decode(base64Data); |
|
|
|
|
|
|
|
util.exportImgExcel(response, list, UniversalEnum.SECTION_TRAFFIC_RANKING.getValue(),imageBytes,3,28); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
@ -508,8 +542,17 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation(value = "导出路段交通指标分析", tags = {"ECharts导出"}) |
|
|
|
@GetMapping("/history/exportSectionTrafficIndexAnalysis") |
|
|
|
public void exportSectionTrafficIndexAnalysis(HttpServletResponse response, String startDate, String direction, String periodType, Long ranking) { |
|
|
|
@PostMapping("/history/exportSectionTrafficIndexAnalysis") |
|
|
|
public void exportSectionTrafficIndexAnalysis(HttpServletResponse response,@RequestBody Map<String,Object> params) throws IOException { |
|
|
|
String startDate = params.get("startDate").toString(); |
|
|
|
String direction = params.get("direction").toString(); |
|
|
|
String periodType = params.get("periodType").toString(); |
|
|
|
Long ranking = null; |
|
|
|
if (params.containsKey("ranking")){ |
|
|
|
ranking = Long.valueOf(params.get("ranking").toString()); |
|
|
|
} |
|
|
|
String fileUrl = params.get("fileUrl").toString(); |
|
|
|
|
|
|
|
List<SectionTrafficIndexAnalysis> list = new ArrayList<>(); |
|
|
|
|
|
|
|
String endDate = UniversalEnum.EMPTY_STRING.getValue(); |
|
|
@ -571,7 +614,13 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
ExcelUtil<SectionTrafficIndexAnalysis> util = new ExcelUtil<>(SectionTrafficIndexAnalysis.class); |
|
|
|
util.exportExcel(response, list, UniversalEnum.SECTION_TRAFFIC_INDEX_ANALYSIS.getValue()); |
|
|
|
int commaIndex = fileUrl.indexOf(','); |
|
|
|
if (commaIndex == -1) { |
|
|
|
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data"); |
|
|
|
} |
|
|
|
String base64Data = fileUrl.substring(commaIndex + 1); |
|
|
|
byte[] imageBytes = Base64.getDecoder().decode(base64Data); |
|
|
|
util.exportImgExcel(response, list, UniversalEnum.SECTION_TRAFFIC_INDEX_ANALYSIS.getValue(),imageBytes,7,14); |
|
|
|
// 将查询结果封装为成功响应并返回
|
|
|
|
} |
|
|
|
|
|
|
@ -584,8 +633,13 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation(value = "导出交通指标时间分布", tags = {"ECharts导出"}) |
|
|
|
@GetMapping("/history/exportPassIndicatorTimeDistribution") |
|
|
|
public void exportPassIndicatorTimeDistribution(HttpServletResponse response, String startDate, String direction, String periodType) { |
|
|
|
@PostMapping("/history/exportPassIndicatorTimeDistribution") |
|
|
|
public void exportPassIndicatorTimeDistribution(HttpServletResponse response, @RequestBody Map<String,String> params) throws IOException { |
|
|
|
String startDate = params.get("startDate"); |
|
|
|
String direction = params.get("direction"); |
|
|
|
String periodType = params.get("periodType"); |
|
|
|
String fileUrl = params.get("fileUrl"); |
|
|
|
|
|
|
|
List<PassIndicatorTimeDistribution> list = new ArrayList<>(); |
|
|
|
|
|
|
|
String endDate = UniversalEnum.EMPTY_STRING.getValue(); |
|
|
@ -686,7 +740,14 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
} |
|
|
|
|
|
|
|
ExcelUtil<PassIndicatorTimeDistribution> util = new ExcelUtil<>(PassIndicatorTimeDistribution.class); |
|
|
|
util.exportExcel(response, list, "交通指标时间分布"); |
|
|
|
|
|
|
|
int commaIndex = fileUrl.indexOf(','); |
|
|
|
if (commaIndex == -1) { |
|
|
|
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data"); |
|
|
|
} |
|
|
|
String base64Data = fileUrl.substring(commaIndex + 1); |
|
|
|
byte[] imageBytes = Base64.getDecoder().decode(base64Data); |
|
|
|
util.exportImgExcel(response, list, "交通指标时间分布",imageBytes,7,14); |
|
|
|
// 将查询结果封装为成功响应并返回
|
|
|
|
} |
|
|
|
|
|
|
@ -922,8 +983,8 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
* 导出收费站出入口实时车流量 |
|
|
|
*/ |
|
|
|
@ApiOperation(value = "导出收费站出入口实时车流量", tags = {"ECharts导出"}) |
|
|
|
@GetMapping("/history/exportTrafficFlowAtTollStationEntranceHour") |
|
|
|
public void exportTrafficFlowAtTollStationEntranceHour(HttpServletResponse response) throws IOException, HttpException { |
|
|
|
@PostMapping("/history/exportTrafficFlowAtTollStationEntranceHour") |
|
|
|
public void exportTrafficFlowAtTollStationEntranceHour(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException, HttpException { |
|
|
|
|
|
|
|
response.setContentType(UniversalEnum.DERIVE_THE_TWO_WAY_REAL_TIME_TRAFFIC_FLOW_OF_THE_WHOLE_SECTION.getValue()); |
|
|
|
response.setCharacterEncoding(UniversalEnum.LOWERCASE_UTF_8.getValue()); |
|
|
@ -1104,6 +1165,21 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
|
|
|
|
// 写入文件
|
|
|
|
try (ServletOutputStream outputStream = response.getOutputStream()) { |
|
|
|
String fileUrl = params.get("fileUrl"); |
|
|
|
int commaIndex = fileUrl.indexOf(','); |
|
|
|
if (commaIndex == -1) { |
|
|
|
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data"); |
|
|
|
} |
|
|
|
String base64Data = fileUrl.substring(commaIndex + 1); |
|
|
|
byte[] imageBytes = Base64.getDecoder().decode(base64Data); |
|
|
|
// 添加图片到工作簿并获取图片索引
|
|
|
|
int pictureIdx = workbook.addPicture(imageBytes, Workbook.PICTURE_TYPE_JPEG); |
|
|
|
// 创建绘图对象
|
|
|
|
Drawing<?> drawing = sheet.createDrawingPatriarch(); |
|
|
|
// 设置图片位置
|
|
|
|
ClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, LocationEnum.values().length+3, 12, LocationEnum.values().length + 3 + 12); |
|
|
|
Picture pict = drawing.createPicture(anchor, pictureIdx); |
|
|
|
|
|
|
|
workbook.write(outputStream); |
|
|
|
} finally { |
|
|
|
workbook.close(); |
|
|
@ -1171,8 +1247,8 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
* 导出全路段双向实时车流量 |
|
|
|
*/ |
|
|
|
@ApiOperation(value = "导出全路段双向实时车流量", tags = {"ECharts导出"}) |
|
|
|
@GetMapping("/history/exportRealTimeTrafficFlowHour") |
|
|
|
public void exportRealTimeTrafficFlowHour(HttpServletResponse response) throws IOException, HttpException { |
|
|
|
@PostMapping("/history/exportRealTimeTrafficFlowHour") |
|
|
|
public void exportRealTimeTrafficFlowHour(HttpServletResponse response,@RequestBody Map<String,String> params) throws IOException, HttpException { |
|
|
|
|
|
|
|
response.setContentType(UniversalEnum.DERIVE_THE_TWO_WAY_REAL_TIME_TRAFFIC_FLOW_OF_THE_WHOLE_SECTION.getValue()); |
|
|
|
response.setCharacterEncoding(UniversalEnum.LOWERCASE_UTF_8.getValue()); |
|
|
@ -1289,6 +1365,21 @@ public class DcTrafficStatisticsController extends BaseController { |
|
|
|
|
|
|
|
// 写入文件
|
|
|
|
try (ServletOutputStream outputStream = response.getOutputStream()) { |
|
|
|
String fileUrl = params.get("fileUrl"); |
|
|
|
int commaIndex = fileUrl.indexOf(','); |
|
|
|
if (commaIndex == -1) { |
|
|
|
throw new IllegalArgumentException("Invalid Data URL, no comma found to separate base64 data"); |
|
|
|
} |
|
|
|
String base64Data = fileUrl.substring(commaIndex + 1); |
|
|
|
byte[] imageBytes = Base64.getDecoder().decode(base64Data); |
|
|
|
// 添加图片到工作簿并获取图片索引
|
|
|
|
int pictureIdx = workbook.addPicture(imageBytes, Workbook.PICTURE_TYPE_JPEG); |
|
|
|
// 创建绘图对象
|
|
|
|
Drawing<?> drawing = sheet.createDrawingPatriarch(); |
|
|
|
// 设置图片位置
|
|
|
|
ClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, thisYearHZ.size()+3, 12, thisYearHZ.size() + 3 + 12); |
|
|
|
Picture pict = drawing.createPicture(anchor, pictureIdx); |
|
|
|
|
|
|
|
workbook.write(outputStream); |
|
|
|
} finally { |
|
|
|
workbook.close(); |
|
|
|