Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
traffic-signal-platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
signal
traffic-signal-platform
Commits
eb593da5
Commit
eb593da5
authored
Dec 11, 2024
by
duanruiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[add] 重点路口时间优化
parent
425c88b0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
TrendServiceImpl.java
...ain/java/net/wanji/opt/service/impl/TrendServiceImpl.java
+6
-2
No files found.
signal-optimize-service/src/main/java/net/wanji/opt/service/impl/TrendServiceImpl.java
View file @
eb593da5
...
@@ -1817,6 +1817,9 @@ public class TrendServiceImpl implements TrendService {
...
@@ -1817,6 +1817,9 @@ public class TrendServiceImpl implements TrendService {
}
}
}
}
}
}
if
(
StringUtils
.
isNotBlank
(
crossId
))
{
return
hotspotCrossVOS
.
stream
().
sorted
(
Comparator
.
comparing
(
HotspotCrossVO:
:
getTimeStamp
).
reversed
()).
collect
(
Collectors
.
toList
());
}
return
hotspotCrossVOS
.
stream
().
sorted
(
Comparator
.
comparing
(
HotspotCrossVO:
:
getTimeStamp
)).
collect
(
Collectors
.
toList
());
return
hotspotCrossVOS
.
stream
().
sorted
(
Comparator
.
comparing
(
HotspotCrossVO:
:
getTimeStamp
)).
collect
(
Collectors
.
toList
());
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
log
.
error
(
"重点路口监测异常:"
,
e
);
log
.
error
(
"重点路口监测异常:"
,
e
);
...
@@ -2051,6 +2054,7 @@ public class TrendServiceImpl implements TrendService {
...
@@ -2051,6 +2054,7 @@ public class TrendServiceImpl implements TrendService {
/**
/**
* 设置状态时间比例
* 设置状态时间比例
*
* @param crossStatusTimeRateVO
* @param crossStatusTimeRateVO
* @param status
* @param status
* @param rate
* @param rate
...
@@ -2159,7 +2163,7 @@ public class TrendServiceImpl implements TrendService {
...
@@ -2159,7 +2163,7 @@ public class TrendServiceImpl implements TrendService {
resultPojo
.
setDirName
(
BaseEnum
.
SignalDirectionEnum
.
getNameByCode
(
dir
));
resultPojo
.
setDirName
(
BaseEnum
.
SignalDirectionEnum
.
getNameByCode
(
dir
));
resultPojo
.
setOverflowId
(
String
.
valueOf
(
dir
));
resultPojo
.
setOverflowId
(
String
.
valueOf
(
dir
));
resultPojo
.
setOverflowNums
(
overflowNums
);
resultPojo
.
setOverflowNums
(
overflowNums
);
resultPojo
.
setSpeed
(
Math
.
round
((
meanV
/
dirList
.
size
())
*
100
)
/
100.0
);
resultPojo
.
setSpeed
(
Math
.
round
((
meanV
/
dirList
.
size
())
*
100
)
/
100.0
);
resultPojo
.
setVehicleLengthRatio
(
Math
.
round
(
vehicleLengthRatio
/
dirList
.
size
()
*
100
));
resultPojo
.
setVehicleLengthRatio
(
Math
.
round
(
vehicleLengthRatio
/
dirList
.
size
()
*
100
));
return
resultPojo
;
return
resultPojo
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment