Issue 2141
This commit is contained in:
parent
ba33fcd44a
commit
d738f40228
1 changed files with 3 additions and 1 deletions
|
@ -108,7 +108,9 @@ public class AlarmInfo implements LocationPoint {
|
||||||
alarmInfo = new AlarmInfo(AlarmInfoType.HAZARD, locInd);
|
alarmInfo = new AlarmInfo(AlarmInfoType.HAZARD, locInd);
|
||||||
} else if ("railway".equals(ruleType.getTag()) && "level_crossing".equals(ruleType.getValue())) {
|
} else if ("railway".equals(ruleType.getTag()) && "level_crossing".equals(ruleType.getValue())) {
|
||||||
alarmInfo = new AlarmInfo(AlarmInfoType.RAILWAY, locInd);
|
alarmInfo = new AlarmInfo(AlarmInfoType.RAILWAY, locInd);
|
||||||
} else if ("crossing".equals(ruleType.getTag()) && "uncontrolled".equals(ruleType.getValue())){
|
// Issue 2141
|
||||||
|
//} else if ("crossing".equals(ruleType.getTag()) && "uncontrolled".equals(ruleType.getValue())){
|
||||||
|
} else if ("crossing".equals(ruleType.getTag()) && !"traffic_signals".equals(ruleType.getValue())){
|
||||||
alarmInfo = new AlarmInfo(AlarmInfoType.PEDESTRIAN, locInd);
|
alarmInfo = new AlarmInfo(AlarmInfoType.PEDESTRIAN, locInd);
|
||||||
}
|
}
|
||||||
if(alarmInfo != null) {
|
if(alarmInfo != null) {
|
||||||
|
|
Loading…
Reference in a new issue