2013-04-18 23:35:02 +02:00
package net.osmand.router ;
import java.io.IOException ;
import java.text.MessageFormat ;
import java.util.ArrayList ;
import java.util.Arrays ;
import java.util.Collections ;
2014-10-21 14:50:29 +02:00
import java.util.HashSet ;
2013-04-18 23:35:02 +02:00
import java.util.Iterator ;
import java.util.List ;
2014-09-24 22:32:37 +02:00
import org.apache.commons.logging.Log ;
import net.osmand.PlatformUtil ;
2013-04-18 23:35:02 +02:00
import net.osmand.binary.BinaryMapIndexReader ;
2014-03-01 12:30:25 +01:00
import net.osmand.binary.BinaryMapRouteReaderAdapter.RouteTypeRule ;
2013-04-18 23:35:02 +02:00
import net.osmand.binary.RouteDataObject ;
import net.osmand.data.LatLon ;
import net.osmand.router.BinaryRoutePlanner.FinalRouteSegment ;
import net.osmand.router.BinaryRoutePlanner.RouteSegment ;
2014-01-19 23:58:17 +01:00
import net.osmand.router.RoutePlannerFrontEnd.RouteCalculationMode ;
2013-04-18 23:35:02 +02:00
import net.osmand.util.MapUtils ;
public class RouteResultPreparation {
2014-02-01 02:06:36 +01:00
public static boolean PRINT_TO_CONSOLE_ROUTE_INFORMATION_TO_TEST = false ;
2013-04-18 23:35:02 +02:00
private static final float TURN_DEGREE_MIN = 45 ;
2014-09-24 22:32:37 +02:00
private Log log = PlatformUtil . getLog ( RouteResultPreparation . class ) ;
2013-04-18 23:35:02 +02:00
/ * *
* Helper method to prepare final result
* /
2014-01-19 21:29:11 +01:00
List < RouteSegmentResult > prepareResult ( RoutingContext ctx , FinalRouteSegment finalSegment ) throws IOException {
2013-04-18 23:35:02 +02:00
List < RouteSegmentResult > result = convertFinalSegmentToResults ( ctx , finalSegment ) ;
2014-01-19 21:29:11 +01:00
prepareResult ( ctx , result ) ;
2013-04-18 23:35:02 +02:00
return result ;
}
2014-01-19 21:29:11 +01:00
List < RouteSegmentResult > prepareResult ( RoutingContext ctx , List < RouteSegmentResult > result ) throws IOException {
2013-04-18 23:35:02 +02:00
validateAllPointsConnected ( result ) ;
splitRoadsAndAttachRoadSegments ( ctx , result ) ;
// calculate time
calculateTimeSpeed ( ctx , result ) ;
2014-01-19 21:29:11 +01:00
addTurnInfo ( ctx . leftSideNavigation , result ) ;
2013-04-18 23:35:02 +02:00
return result ;
}
private void calculateTimeSpeed ( RoutingContext ctx , List < RouteSegmentResult > result ) throws IOException {
for ( int i = 0 ; i < result . size ( ) ; i + + ) {
RouteSegmentResult rr = result . get ( i ) ;
RouteDataObject road = rr . getObject ( ) ;
double distOnRoadToPass = 0 ;
2014-02-02 14:06:09 +01:00
double speed = ctx . getRouter ( ) . defineVehicleSpeed ( road ) ;
2013-04-18 23:35:02 +02:00
if ( speed = = 0 ) {
speed = ctx . getRouter ( ) . getMinDefaultSpeed ( ) ;
2013-11-06 23:04:55 +01:00
} else {
if ( speed > 15 ) {
// decrease speed proportionally from 15ms=50kmh -
// reference speed 30ms=108kmh - 7kmh
speed = speed - ( ( speed - 15f ) / ( 30f - 15f ) * 2f ) ;
}
2013-04-18 23:35:02 +02:00
}
boolean plus = rr . getStartPointIndex ( ) < rr . getEndPointIndex ( ) ;
int next ;
double distance = 0 ;
for ( int j = rr . getStartPointIndex ( ) ; j ! = rr . getEndPointIndex ( ) ; j = next ) {
next = plus ? j + 1 : j - 1 ;
double d = measuredDist ( road . getPoint31XTile ( j ) , road . getPoint31YTile ( j ) , road . getPoint31XTile ( next ) ,
road . getPoint31YTile ( next ) ) ;
distance + = d ;
double obstacle = ctx . getRouter ( ) . defineObstacle ( road , j ) ;
if ( obstacle < 0 ) {
obstacle = 0 ;
}
distOnRoadToPass + = d / speed + obstacle ;
}
// last point turn time can be added
// if(i + 1 < result.size()) { distOnRoadToPass += ctx.getRouter().calculateTurnTime(); }
rr . setSegmentTime ( ( float ) distOnRoadToPass ) ;
rr . setSegmentSpeed ( ( float ) speed ) ;
rr . setDistance ( ( float ) distance ) ;
}
}
private void splitRoadsAndAttachRoadSegments ( RoutingContext ctx , List < RouteSegmentResult > result ) throws IOException {
for ( int i = 0 ; i < result . size ( ) ; i + + ) {
if ( ctx . checkIfMemoryLimitCritical ( ctx . config . memoryLimitation ) ) {
ctx . unloadUnusedTiles ( ctx . config . memoryLimitation ) ;
}
RouteSegmentResult rr = result . get ( i ) ;
RouteDataObject road = rr . getObject ( ) ;
checkAndInitRouteRegion ( ctx , road ) ;
boolean plus = rr . getStartPointIndex ( ) < rr . getEndPointIndex ( ) ;
int next ;
for ( int j = rr . getStartPointIndex ( ) ; j ! = rr . getEndPointIndex ( ) ; j = next ) {
next = plus ? j + 1 : j - 1 ;
if ( j = = rr . getStartPointIndex ( ) ) {
attachRoadSegments ( ctx , result , i , j , plus ) ;
}
if ( next ! = rr . getEndPointIndex ( ) ) {
attachRoadSegments ( ctx , result , i , next , plus ) ;
}
List < RouteSegmentResult > attachedRoutes = rr . getAttachedRoutes ( next ) ;
2013-11-26 16:23:05 +01:00
boolean tryToSplit = next ! = rr . getEndPointIndex ( ) & & ! rr . getObject ( ) . roundabout ( ) & & attachedRoutes ! = null ;
if ( rr . getDistance ( next , plus ) = = 0 ) {
// same point will be processed next step
tryToSplit = false ;
}
if ( tryToSplit ) {
// avoid small zigzags
2013-04-18 23:35:02 +02:00
float before = rr . getBearing ( next , ! plus ) ;
float after = rr . getBearing ( next , plus ) ;
2013-11-26 16:23:05 +01:00
if ( rr . getDistance ( next , plus ) < 5 ) {
after = before + 180 ;
} else if ( rr . getDistance ( next , ! plus ) < 5 ) {
before = after - 180 ;
}
2013-04-18 23:35:02 +02:00
boolean straight = Math . abs ( MapUtils . degreesDiff ( before + 180 , after ) ) < TURN_DEGREE_MIN ;
boolean isSplit = false ;
// split if needed
for ( RouteSegmentResult rs : attachedRoutes ) {
double diff = MapUtils . degreesDiff ( before + 180 , rs . getBearingBegin ( ) ) ;
if ( Math . abs ( diff ) < = TURN_DEGREE_MIN ) {
isSplit = true ;
} else if ( ! straight & & Math . abs ( diff ) < 100 ) {
isSplit = true ;
}
}
if ( isSplit ) {
int endPointIndex = rr . getEndPointIndex ( ) ;
RouteSegmentResult split = new RouteSegmentResult ( rr . getObject ( ) , next , endPointIndex ) ;
split . copyPreattachedRoutes ( rr , Math . abs ( next - rr . getStartPointIndex ( ) ) ) ;
rr . setEndPointIndex ( next ) ;
result . add ( i + 1 , split ) ;
i + + ;
// switch current segment to the splitted
rr = split ;
}
}
}
}
}
private void checkAndInitRouteRegion ( RoutingContext ctx , RouteDataObject road ) throws IOException {
BinaryMapIndexReader reader = ctx . reverseMap . get ( road . region ) ;
if ( reader ! = null ) {
reader . initRouteRegion ( road . region ) ;
}
}
private void validateAllPointsConnected ( List < RouteSegmentResult > result ) {
for ( int i = 1 ; i < result . size ( ) ; i + + ) {
RouteSegmentResult rr = result . get ( i ) ;
RouteSegmentResult pr = result . get ( i - 1 ) ;
double d = MapUtils . getDistance ( pr . getPoint ( pr . getEndPointIndex ( ) ) , rr . getPoint ( rr . getStartPointIndex ( ) ) ) ;
if ( d > 0 ) {
System . err . println ( " Points are not connected : " + pr . getObject ( ) + " ( " + pr . getEndPointIndex ( ) + " ) -> " + rr . getObject ( )
+ " ( " + rr . getStartPointIndex ( ) + " ) " + d + " meters " ) ;
}
}
}
private List < RouteSegmentResult > convertFinalSegmentToResults ( RoutingContext ctx , FinalRouteSegment finalSegment ) {
List < RouteSegmentResult > result = new ArrayList < RouteSegmentResult > ( ) ;
if ( finalSegment ! = null ) {
ctx . routingTime = finalSegment . distanceFromStart ;
println ( " Routing calculated time distance " + finalSegment . distanceFromStart ) ;
// Get results from opposite direction roads
2014-01-31 01:43:52 +01:00
RouteSegment segment = finalSegment . reverseWaySearch ? finalSegment :
finalSegment . opposite . getParentRoute ( ) ;
int parentSegmentStart = finalSegment . reverseWaySearch ? finalSegment . opposite . getSegmentStart ( ) :
finalSegment . opposite . getParentSegmentEnd ( ) ;
2014-01-28 21:03:25 +01:00
float parentRoutingTime = - 1 ;
2013-04-18 23:35:02 +02:00
while ( segment ! = null ) {
RouteSegmentResult res = new RouteSegmentResult ( segment . road , parentSegmentStart , segment . getSegmentStart ( ) ) ;
2014-01-28 21:03:25 +01:00
parentRoutingTime = calcRoutingTime ( parentRoutingTime , finalSegment , segment , res ) ;
2013-04-18 23:35:02 +02:00
parentSegmentStart = segment . getParentSegmentEnd ( ) ;
segment = segment . getParentRoute ( ) ;
2014-01-19 23:58:17 +01:00
addRouteSegmentToResult ( ctx , result , res , false ) ;
2013-04-18 23:35:02 +02:00
}
// reverse it just to attach good direction roads
Collections . reverse ( result ) ;
segment = finalSegment . reverseWaySearch ? finalSegment . opposite . getParentRoute ( ) : finalSegment ;
int parentSegmentEnd = finalSegment . reverseWaySearch ? finalSegment . opposite . getParentSegmentEnd ( ) : finalSegment . opposite . getSegmentStart ( ) ;
2014-01-28 21:03:25 +01:00
parentRoutingTime = - 1 ;
2013-04-18 23:35:02 +02:00
while ( segment ! = null ) {
RouteSegmentResult res = new RouteSegmentResult ( segment . road , segment . getSegmentStart ( ) , parentSegmentEnd ) ;
2014-01-28 21:03:25 +01:00
parentRoutingTime = calcRoutingTime ( parentRoutingTime , finalSegment , segment , res ) ;
2013-04-18 23:35:02 +02:00
parentSegmentEnd = segment . getParentSegmentEnd ( ) ;
segment = segment . getParentRoute ( ) ;
// happens in smart recalculation
2014-01-19 23:58:17 +01:00
addRouteSegmentToResult ( ctx , result , res , true ) ;
2013-04-18 23:35:02 +02:00
}
Collections . reverse ( result ) ;
2014-01-28 21:03:25 +01:00
// checkTotalRoutingTime(result);
2013-04-18 23:35:02 +02:00
}
return result ;
}
2014-01-28 21:03:25 +01:00
protected void checkTotalRoutingTime ( List < RouteSegmentResult > result ) {
float totalRoutingTime = 0 ;
for ( RouteSegmentResult r : result ) {
totalRoutingTime + = r . getRoutingTime ( ) ;
}
println ( " Total routing time ! " + totalRoutingTime ) ;
}
private float calcRoutingTime ( float parentRoutingTime , RouteSegment finalSegment , RouteSegment segment ,
RouteSegmentResult res ) {
if ( segment ! = finalSegment ) {
if ( parentRoutingTime ! = - 1 ) {
res . setRoutingTime ( parentRoutingTime - segment . distanceFromStart ) ;
}
parentRoutingTime = segment . distanceFromStart ;
}
return parentRoutingTime ;
}
2013-04-18 23:35:02 +02:00
2014-01-19 23:58:17 +01:00
private void addRouteSegmentToResult ( RoutingContext ctx , List < RouteSegmentResult > result , RouteSegmentResult res , boolean reverse ) {
2013-04-18 23:35:02 +02:00
if ( res . getStartPointIndex ( ) ! = res . getEndPointIndex ( ) ) {
if ( result . size ( ) > 0 ) {
RouteSegmentResult last = result . get ( result . size ( ) - 1 ) ;
2014-01-19 23:58:17 +01:00
if ( last . getObject ( ) . id = = res . getObject ( ) . id & & ctx . calculationMode ! = RouteCalculationMode . BASE ) {
2013-04-18 23:35:02 +02:00
if ( combineTwoSegmentResult ( res , last , reverse ) ) {
return ;
}
}
}
result . add ( res ) ;
}
}
private boolean combineTwoSegmentResult ( RouteSegmentResult toAdd , RouteSegmentResult previous ,
boolean reverse ) {
boolean ld = previous . getEndPointIndex ( ) > previous . getStartPointIndex ( ) ;
boolean rd = toAdd . getEndPointIndex ( ) > toAdd . getStartPointIndex ( ) ;
if ( rd = = ld ) {
if ( toAdd . getStartPointIndex ( ) = = previous . getEndPointIndex ( ) & & ! reverse ) {
previous . setEndPointIndex ( toAdd . getEndPointIndex ( ) ) ;
2014-01-28 21:03:25 +01:00
previous . setRoutingTime ( previous . getRoutingTime ( ) + toAdd . getRoutingTime ( ) ) ;
2013-04-18 23:35:02 +02:00
return true ;
} else if ( toAdd . getEndPointIndex ( ) = = previous . getStartPointIndex ( ) & & reverse ) {
previous . setStartPointIndex ( toAdd . getStartPointIndex ( ) ) ;
2014-01-28 21:03:25 +01:00
previous . setRoutingTime ( previous . getRoutingTime ( ) + toAdd . getRoutingTime ( ) ) ;
2013-04-18 23:35:02 +02:00
return true ;
}
}
return false ;
}
void printResults ( RoutingContext ctx , LatLon start , LatLon end , List < RouteSegmentResult > result ) {
float completeTime = 0 ;
float completeDistance = 0 ;
for ( RouteSegmentResult r : result ) {
completeTime + = r . getSegmentTime ( ) ;
completeDistance + = r . getDistance ( ) ;
}
println ( " ROUTE : " ) ;
double startLat = start . getLatitude ( ) ;
double startLon = start . getLongitude ( ) ;
double endLat = end . getLatitude ( ) ;
double endLon = end . getLongitude ( ) ;
2014-09-24 22:32:37 +02:00
String msg = MessageFormat . format ( " <test regions= \" \" description= \" \" best_percent= \" \" vehicle= \" {4} \" \ n "
2014-01-09 01:33:46 +01:00
+ " start_lat= \" {0} \" start_lon= \" {1} \" target_lat= \" {2} \" target_lon= \" {3} \" {5} > " ,
startLat + " " , startLon + " " , endLat + " " , endLon + " " , ctx . config . routerName ,
" loadedTiles = \" " + ctx . loadedTiles + " \" " + " visitedSegments = \" " + ctx . visitedSegments + " \" " +
" complete_distance = \" " + completeDistance + " \" " + " complete_time = \" " + completeTime + " \" " +
2014-09-24 22:32:37 +02:00
" routing_time = \" " + ctx . routingTime + " \" " ) ;
log . info ( msg ) ;
println ( msg ) ;
2013-04-18 23:35:02 +02:00
if ( PRINT_TO_CONSOLE_ROUTE_INFORMATION_TO_TEST ) {
for ( RouteSegmentResult res : result ) {
String name = res . getObject ( ) . getName ( ) ;
String ref = res . getObject ( ) . getRef ( ) ;
if ( name = = null ) {
name = " " ;
}
if ( ref ! = null ) {
name + = " ( " + ref + " ) " ;
}
StringBuilder additional = new StringBuilder ( ) ;
additional . append ( " time = \" " ) . append ( res . getSegmentTime ( ) ) . append ( " \" " ) ;
2014-01-28 21:03:25 +01:00
additional . append ( " rtime = \" " ) . append ( res . getRoutingTime ( ) ) . append ( " \" " ) ;
2013-04-18 23:35:02 +02:00
additional . append ( " name = \" " ) . append ( name ) . append ( " \" " ) ;
// float ms = res.getSegmentSpeed();
float ms = res . getObject ( ) . getMaximumSpeed ( ) ;
if ( ms > 0 ) {
additional . append ( " maxspeed = \" " ) . append ( ms * 3 . 6f ) . append ( " \" " ) . append ( res . getObject ( ) . getHighway ( ) ) . append ( " " ) ;
}
additional . append ( " distance = \" " ) . append ( res . getDistance ( ) ) . append ( " \" " ) ;
if ( res . getTurnType ( ) ! = null ) {
additional . append ( " turn = \" " ) . append ( res . getTurnType ( ) ) . append ( " \" " ) ;
additional . append ( " turn_angle = \" " ) . append ( res . getTurnType ( ) . getTurnAngle ( ) ) . append ( " \" " ) ;
if ( res . getTurnType ( ) . getLanes ( ) ! = null ) {
additional . append ( " lanes = \" " ) . append ( Arrays . toString ( res . getTurnType ( ) . getLanes ( ) ) ) . append ( " \" " ) ;
}
}
additional . append ( " start_bearing = \" " ) . append ( res . getBearingBegin ( ) ) . append ( " \" " ) ;
additional . append ( " end_bearing = \" " ) . append ( res . getBearingEnd ( ) ) . append ( " \" " ) ;
additional . append ( " description = \" " ) . append ( res . getDescription ( ) ) . append ( " \" " ) ;
println ( MessageFormat . format ( " \ t<segment id= \" {0} \" start= \" {1} \" end= \" {2} \" {3}/> " , ( res . getObject ( ) . getId ( ) ) + " " ,
res . getStartPointIndex ( ) + " " , res . getEndPointIndex ( ) + " " , additional . toString ( ) ) ) ;
2014-03-01 12:30:25 +01:00
printAdditionalPointInfo ( res ) ;
2013-04-18 23:35:02 +02:00
}
}
println ( " </test> " ) ;
}
2014-03-01 12:30:25 +01:00
private void printAdditionalPointInfo ( RouteSegmentResult res ) {
boolean plus = res . getStartPointIndex ( ) < res . getEndPointIndex ( ) ;
for ( int k = res . getStartPointIndex ( ) ; k ! = res . getEndPointIndex ( ) ; ) {
int [ ] tp = res . getObject ( ) . getPointTypes ( k ) ;
if ( tp ! = null ) {
for ( int t = 0 ; t < tp . length ; t + + ) {
RouteTypeRule rr = res . getObject ( ) . region . quickGetEncodingRule ( tp [ t ] ) ;
println ( " \ t<point tag= \" " + rr . getTag ( ) + " \" " + " value= \" " + rr . getValue ( ) + " \" /> " ) ;
}
}
if ( plus ) {
k + + ;
} else {
k - - ;
}
}
}
2013-04-18 23:35:02 +02:00
private void addTurnInfo ( boolean leftside , List < RouteSegmentResult > result ) {
int prevSegment = - 1 ;
float dist = 0 ;
int next = 1 ;
for ( int i = 0 ; i < = result . size ( ) ; i = next ) {
TurnType t = null ;
next = i + 1 ;
if ( i < result . size ( ) ) {
t = getTurnInfo ( result , i , leftside ) ;
// justify turn
if ( t ! = null & & i < result . size ( ) - 1 ) {
2014-10-02 13:47:34 +02:00
boolean tl = TurnType . TL = = t . getValue ( ) ;
boolean tr = TurnType . TR = = t . getValue ( ) ;
2013-04-18 23:35:02 +02:00
if ( tl | | tr ) {
TurnType tnext = getTurnInfo ( result , i + 1 , leftside ) ;
2014-07-06 16:17:46 +02:00
if ( tnext ! = null & & result . get ( i ) . getDistance ( ) < 35 ) { //
boolean ut = true ;
if ( i > 0 ) {
double uTurn = MapUtils . degreesDiff ( result . get ( i - 1 ) . getBearingEnd ( ) , result
. get ( i + 1 ) . getBearingBegin ( ) ) ;
if ( Math . abs ( uTurn ) < 120 ) {
ut = false ;
}
}
2014-07-11 18:48:08 +02:00
String highway = result . get ( i ) . getObject ( ) . getHighway ( ) ;
if ( highway = = null | | highway . endsWith ( " track " ) | | highway . endsWith ( " services " ) | | highway . endsWith ( " service " )
| | highway . endsWith ( " path " ) ) {
ut = false ;
}
2014-07-06 16:17:46 +02:00
if ( ut ) {
2014-10-02 13:47:34 +02:00
if ( tl & & TurnType . TL = = tnext . getValue ( ) ) {
2014-07-06 16:17:46 +02:00
next = i + 2 ;
t = TurnType . valueOf ( TurnType . TU , false ) ;
2014-10-02 13:47:34 +02:00
} else if ( tr & & TurnType . TR = = tnext . getValue ( ) ) {
2014-07-06 16:17:46 +02:00
next = i + 2 ;
t = TurnType . valueOf ( TurnType . TU , true ) ;
}
2013-04-18 23:35:02 +02:00
}
}
}
}
result . get ( i ) . setTurnType ( t ) ;
}
if ( t ! = null | | i = = result . size ( ) ) {
if ( prevSegment > = 0 ) {
String turn = result . get ( prevSegment ) . getTurnType ( ) . toString ( ) ;
if ( result . get ( prevSegment ) . getTurnType ( ) . getLanes ( ) ! = null ) {
turn + = Arrays . toString ( result . get ( prevSegment ) . getTurnType ( ) . getLanes ( ) ) ;
}
result . get ( prevSegment ) . setDescription ( turn + MessageFormat . format ( " and go {0,number,#.##} meters " , dist ) ) ;
if ( result . get ( prevSegment ) . getTurnType ( ) . isSkipToSpeak ( ) ) {
result . get ( prevSegment ) . setDescription ( " -* " + result . get ( prevSegment ) . getDescription ( ) ) ;
}
}
prevSegment = i ;
dist = 0 ;
}
if ( i < result . size ( ) ) {
dist + = result . get ( i ) . getDistance ( ) ;
}
}
}
private static final int MAX_SPEAK_PRIORITY = 5 ;
private int highwaySpeakPriority ( String highway ) {
if ( highway = = null | | highway . endsWith ( " track " ) | | highway . endsWith ( " services " ) | | highway . endsWith ( " service " )
| | highway . endsWith ( " path " ) ) {
return MAX_SPEAK_PRIORITY ;
}
if ( highway . endsWith ( " _link " ) | | highway . endsWith ( " unclassified " ) | | highway . endsWith ( " road " )
| | highway . endsWith ( " living_street " ) | | highway . endsWith ( " residential " ) ) {
return 1 ;
}
return 0 ;
}
private TurnType getTurnInfo ( List < RouteSegmentResult > result , int i , boolean leftSide ) {
if ( i = = 0 ) {
return TurnType . valueOf ( TurnType . C , false ) ;
}
RouteSegmentResult prev = result . get ( i - 1 ) ;
if ( prev . getObject ( ) . roundabout ( ) ) {
// already analyzed!
return null ;
}
RouteSegmentResult rr = result . get ( i ) ;
if ( rr . getObject ( ) . roundabout ( ) ) {
return processRoundaboutTurn ( result , i , leftSide , prev , rr ) ;
}
TurnType t = null ;
if ( prev ! = null ) {
boolean noAttachedRoads = rr . getAttachedRoutes ( rr . getStartPointIndex ( ) ) . size ( ) = = 0 ;
// add description about turn
double mpi = MapUtils . degreesDiff ( prev . getBearingEnd ( ) , rr . getBearingBegin ( ) ) ;
if ( noAttachedRoads ) {
// TODO VICTOR : look at the comment inside direction route
2014-01-09 01:33:46 +01:00
// ? avoid small zigzags is covered at (search for "zigzags")
2013-04-18 23:35:02 +02:00
// double begin = rr.getObject().directionRoute(rr.getStartPointIndex(), rr.getStartPointIndex() <
// rr.getEndPointIndex(), 25);
// mpi = MapUtils.degreesDiff(prev.getBearingEnd(), begin);
}
if ( mpi > = TURN_DEGREE_MIN ) {
if ( mpi < 60 ) {
t = TurnType . valueOf ( TurnType . TSLL , leftSide ) ;
} else if ( mpi < 120 ) {
t = TurnType . valueOf ( TurnType . TL , leftSide ) ;
} else if ( mpi < 135 | | leftSide ) {
t = TurnType . valueOf ( TurnType . TSHL , leftSide ) ;
} else {
t = TurnType . valueOf ( TurnType . TU , leftSide ) ;
}
2014-10-15 05:17:08 +02:00
assignLanesInfo ( prev , t , leftSide ) ;
2013-04-18 23:35:02 +02:00
} else if ( mpi < - TURN_DEGREE_MIN ) {
if ( mpi > - 60 ) {
t = TurnType . valueOf ( TurnType . TSLR , leftSide ) ;
} else if ( mpi > - 120 ) {
t = TurnType . valueOf ( TurnType . TR , leftSide ) ;
} else if ( mpi > - 135 | | ! leftSide ) {
t = TurnType . valueOf ( TurnType . TSHR , leftSide ) ;
} else {
t = TurnType . valueOf ( TurnType . TU , leftSide ) ;
}
2014-10-15 05:17:08 +02:00
assignLanesInfo ( prev , t , leftSide ) ;
2013-04-18 23:35:02 +02:00
} else {
t = attachKeepLeftInfoAndLanes ( leftSide , prev , rr , t ) ;
}
if ( t ! = null ) {
t . setTurnAngle ( ( float ) - mpi ) ;
}
}
return t ;
}
2014-10-15 05:17:08 +02:00
private void assignLanesInfo ( RouteSegmentResult prevSegm , TurnType t , boolean leftSide ) {
2014-10-13 15:32:35 +02:00
int lanes = prevSegm . getObject ( ) . getLanes ( ) ;
if ( prevSegm . getObject ( ) . getOneway ( ) = = 0 ) {
lanes = countLanes ( prevSegm , lanes ) ;
}
if ( lanes < = 0 ) {
return ;
}
String turnLanes = getTurnLanesString ( prevSegm ) ;
if ( turnLanes = = null ) {
return ;
}
String [ ] splitLaneOptions = turnLanes . split ( " \\ | " , - 1 ) ;
if ( splitLaneOptions . length ! = lanes ) {
// Error in data or missing data
return ;
}
int [ ] lanesArray = new int [ lanes ] ;
t . setLanes ( lanesArray ) ;
assignTurns ( splitLaneOptions , t ) ;
2014-10-13 16:53:52 +02:00
// In some cases (at least in the US), the rightmost lane might not have a right turn indicated as per turn:lanes, but is allowed and being used here. This section adds in that indicator. The same applies for where leftSide is true.
if ( leftSide ) {
if ( t . getValue ( ) = = TurnType . TL
& & TurnType . getPrimaryTurn ( lanesArray [ 0 ] ) ! = TurnType . TL
& & TurnType . getPrimaryTurn ( lanesArray [ 0 ] ) ! = TurnType . TSLL
& & TurnType . getPrimaryTurn ( lanesArray [ 0 ] ) ! = TurnType . TSHL ) {
if ( TurnType . getPrimaryTurn ( lanesArray [ 0 ] ) ! = 0 ) {
// This was just to make sure that there's no bad data.
t . setSecondaryTurn ( 0 , TurnType . getPrimaryTurn ( lanesArray [ 0 ] ) ) ;
t . setPrimaryTurn ( 0 , TurnType . TL ) ;
}
}
} else {
int lastIndex = lanesArray . length - 1 ;
if ( t . getValue ( ) = = TurnType . TR
& & TurnType . getPrimaryTurn ( lanesArray [ lastIndex ] ) ! = TurnType . TR
& & TurnType . getPrimaryTurn ( lanesArray [ lastIndex ] ) ! = TurnType . TSLR
& & TurnType . getPrimaryTurn ( lanesArray [ lastIndex ] ) ! = TurnType . TSHR ) {
if ( TurnType . getPrimaryTurn ( lanesArray [ lastIndex ] ) ! = 0 ) {
// This was just to make sure that there's no bad data.
t . setSecondaryTurn ( lastIndex , TurnType . getPrimaryTurn ( lanesArray [ lastIndex ] ) ) ;
t . setPrimaryTurn ( lastIndex , TurnType . TR ) ;
}
}
}
2014-10-13 15:32:35 +02:00
// Manually set the allowed lanes.
for ( int i = 0 ; i < lanesArray . length ; i + + ) {
if ( TurnType . getPrimaryTurn ( lanesArray [ i ] ) = = t . getValue ( ) ) {
lanesArray [ i ] | = 1 ;
}
}
}
2013-04-18 23:35:02 +02:00
private TurnType processRoundaboutTurn ( List < RouteSegmentResult > result , int i , boolean leftSide , RouteSegmentResult prev ,
RouteSegmentResult rr ) {
int exit = 1 ;
RouteSegmentResult last = rr ;
for ( int j = i ; j < result . size ( ) ; j + + ) {
RouteSegmentResult rnext = result . get ( j ) ;
last = rnext ;
if ( rnext . getObject ( ) . roundabout ( ) ) {
boolean plus = rnext . getStartPointIndex ( ) < rnext . getEndPointIndex ( ) ;
int k = rnext . getStartPointIndex ( ) ;
if ( j = = i ) {
// first exit could be immediately after roundabout enter
// k = plus ? k + 1 : k - 1;
}
while ( k ! = rnext . getEndPointIndex ( ) ) {
int attachedRoads = rnext . getAttachedRoutes ( k ) . size ( ) ;
if ( attachedRoads > 0 ) {
exit + + ;
}
k = plus ? k + 1 : k - 1 ;
}
} else {
break ;
}
}
// combine all roundabouts
2014-10-02 13:47:34 +02:00
TurnType t = TurnType . getExitTurn ( exit , 0 , leftSide ) ;
2013-04-18 23:35:02 +02:00
t . setTurnAngle ( ( float ) MapUtils . degreesDiff ( last . getBearingBegin ( ) , prev . getBearingEnd ( ) ) ) ;
return t ;
}
private TurnType attachKeepLeftInfoAndLanes ( boolean leftSide , RouteSegmentResult prevSegm , RouteSegmentResult currentSegm , TurnType t ) {
// keep left/right
int [ ] lanes = null ;
boolean kl = false ;
boolean kr = false ;
List < RouteSegmentResult > attachedRoutes = currentSegm . getAttachedRoutes ( currentSegm . getStartPointIndex ( ) ) ;
int ls = prevSegm . getObject ( ) . getLanes ( ) ;
if ( ls > = 0 & & prevSegm . getObject ( ) . getOneway ( ) = = 0 ) {
ls = ( ls + 1 ) / 2 ;
}
int left = 0 ;
int right = 0 ;
boolean speak = false ;
int speakPriority = Math . max ( highwaySpeakPriority ( prevSegm . getObject ( ) . getHighway ( ) ) , highwaySpeakPriority ( currentSegm . getObject ( ) . getHighway ( ) ) ) ;
if ( attachedRoutes ! = null ) {
for ( RouteSegmentResult attached : attachedRoutes ) {
double ex = MapUtils . degreesDiff ( attached . getBearingBegin ( ) , currentSegm . getBearingBegin ( ) ) ;
double mpi = Math . abs ( MapUtils . degreesDiff ( prevSegm . getBearingEnd ( ) , attached . getBearingBegin ( ) ) ) ;
int rsSpeakPriority = highwaySpeakPriority ( attached . getObject ( ) . getHighway ( ) ) ;
if ( rsSpeakPriority ! = MAX_SPEAK_PRIORITY | | speakPriority = = MAX_SPEAK_PRIORITY ) {
if ( ( ex < TURN_DEGREE_MIN | | mpi < TURN_DEGREE_MIN ) & & ex > = 0 ) {
kl = true ;
int lns = attached . getObject ( ) . getLanes ( ) ;
if ( attached . getObject ( ) . getOneway ( ) = = 0 ) {
2014-10-04 16:41:30 +02:00
lns = countLanes ( attached , lns ) ;
2013-04-18 23:35:02 +02:00
}
2014-10-13 15:37:00 +02:00
if ( lns < = 0 ) {
right + = 1 ;
} else {
2013-04-18 23:35:02 +02:00
right + = lns ;
}
speak = speak | | rsSpeakPriority < = speakPriority ;
} else if ( ( ex > - TURN_DEGREE_MIN | | mpi < TURN_DEGREE_MIN ) & & ex < = 0 ) {
kr = true ;
int lns = attached . getObject ( ) . getLanes ( ) ;
if ( attached . getObject ( ) . getOneway ( ) = = 0 ) {
2014-10-04 16:41:30 +02:00
lns = countLanes ( attached , lns ) ;
2013-04-18 23:35:02 +02:00
}
2014-10-13 15:37:00 +02:00
if ( lns < = 0 ) {
left + = 1 ;
} else {
2013-04-18 23:35:02 +02:00
left + = lns ;
}
speak = speak | | rsSpeakPriority < = speakPriority ;
}
}
}
}
if ( kr & & left = = 0 ) {
left = 1 ;
} else if ( kl & & right = = 0 ) {
right = 1 ;
}
int current = currentSegm . getObject ( ) . getLanes ( ) ;
2014-10-02 17:50:02 +02:00
// attachedRoutes covers all allowed outbound routes at that point except currentSegm.
if ( currentSegm . getObject ( ) . getOneway ( ) = = 0 ) {
2014-10-04 16:41:30 +02:00
current = countLanes ( currentSegm , current ) ;
2013-04-18 23:35:02 +02:00
}
if ( current < = 0 ) {
current = 1 ;
}
// if(ls >= 0 /*&& current + left + right >= ls*/){
lanes = new int [ current + left + right ] ;
ls = current + left + right ;
for ( int it = 0 ; it < ls ; it + + ) {
if ( it < left | | it > = left + current ) {
lanes [ it ] = 0 ;
} else {
lanes [ it ] = 1 ;
}
}
// sometimes links are
if ( ( current < = left + right ) & & ( left > 1 | | right > 1 ) ) {
speak = true ;
}
// }
double devation = Math . abs ( MapUtils . degreesDiff ( prevSegm . getBearingEnd ( ) , currentSegm . getBearingBegin ( ) ) ) ;
2013-04-21 13:08:21 +02:00
boolean makeSlightTurn = devation > 5 & & ( ! isMotorway ( prevSegm ) | | ! isMotorway ( currentSegm ) ) ;
2013-04-18 23:35:02 +02:00
if ( kl ) {
2013-11-26 16:23:05 +01:00
t = TurnType . valueOf ( makeSlightTurn ? TurnType . TSLL : TurnType . KL , leftSide ) ;
2013-04-18 23:35:02 +02:00
t . setSkipToSpeak ( ! speak ) ;
}
if ( kr ) {
2013-11-26 16:23:05 +01:00
t = TurnType . valueOf ( makeSlightTurn ? TurnType . TSLR : TurnType . KR , leftSide ) ;
2013-04-18 23:35:02 +02:00
t . setSkipToSpeak ( ! speak ) ;
}
if ( t ! = null & & lanes ! = null ) {
t . setLanes ( lanes ) ;
2014-10-04 16:39:25 +02:00
2014-10-22 16:31:19 +02:00
t = attachTurnLanesData ( leftSide , prevSegm , t ) ;
2013-04-18 23:35:02 +02:00
}
return t ;
}
2014-10-02 17:50:02 +02:00
2014-10-04 16:41:30 +02:00
protected int countLanes ( RouteSegmentResult attached , int lns ) {
2014-10-02 17:50:02 +02:00
try {
if ( attached . isForwardDirection ( ) & & attached . getObject ( ) . getValue ( " lanes:forward " ) ! = null ) {
return Integer . parseInt ( attached . getObject ( ) . getValue ( " lanes:forward " ) ) ;
} else if ( ! attached . isForwardDirection ( ) & & attached . getObject ( ) . getValue ( " lanes:backward " ) ! = null ) {
return Integer . parseInt ( attached . getObject ( ) . getValue ( " lanes:backward " ) ) ;
}
} catch ( NumberFormatException e ) {
e . printStackTrace ( ) ;
}
return ( lns + 1 ) / 2 ;
}
2014-10-04 16:39:25 +02:00
protected String getTurnLanesString ( RouteSegmentResult segment ) {
if ( segment . getObject ( ) . getOneway ( ) = = 0 ) {
if ( segment . isForwardDirection ( ) ) {
return segment . getObject ( ) . getValue ( " turn:lanes:forward " ) ;
} else {
return segment . getObject ( ) . getValue ( " turn:lanes:backward " ) ;
}
} else {
return segment . getObject ( ) . getValue ( " turn:lanes " ) ;
}
}
2014-10-21 14:50:29 +02:00
private TurnType attachTurnLanesData ( boolean leftSide , RouteSegmentResult prevSegm , TurnType t ) {
2014-10-04 16:39:25 +02:00
int lanes = prevSegm . getObject ( ) . getLanes ( ) ;
String turnLanes = getTurnLanesString ( prevSegm ) ;
if ( turnLanes = = null ) {
2014-10-21 14:50:29 +02:00
return t ;
2014-10-04 16:39:25 +02:00
}
String [ ] splitLaneOptions = turnLanes . split ( " \\ | " , - 1 ) ;
if ( splitLaneOptions . length ! = lanes ) {
// Error in data or missing data
2014-10-21 14:50:29 +02:00
return t ;
2014-10-04 16:39:25 +02:00
}
if ( t . getLanes ( ) . length ! = lanes ) {
// The turn:lanes don't easily match up to the target road.
2014-10-08 04:38:48 +02:00
List < Integer > sourceLanes = new ArrayList < Integer > ( ) ;
int outgoingLanesIndex = 0 ;
int sourceLanesIndex = 0 ;
while ( outgoingLanesIndex < t . getLanes ( ) . length & & sourceLanesIndex < lanes ) {
if ( splitLaneOptions [ sourceLanesIndex ] . contains ( " ; " ) ) {
// Two or more allowed turns for this lane
int options = countOccurrences ( splitLaneOptions [ sourceLanesIndex ] , ';' ) ;
if ( options = = 1 ) {
if ( outgoingLanesIndex + 1 > = t . getLanes ( ) . length ) {
// Likely an error in data
2014-10-21 14:50:29 +02:00
return t ;
2014-10-08 04:38:48 +02:00
}
int usability = t . getLanes ( ) [ outgoingLanesIndex ] | t . getLanes ( ) [ outgoingLanesIndex + 1 ] ;
sourceLanes . add ( usability ) ;
outgoingLanesIndex + = 2 ;
sourceLanesIndex + + ;
} else {
// Not supported
2014-10-21 14:50:29 +02:00
return t ;
2014-10-08 04:38:48 +02:00
}
} else {
// Only one allowed turn; behave normally
sourceLanes . add ( t . getLanes ( ) [ outgoingLanesIndex ] ) ;
outgoingLanesIndex + + ;
sourceLanesIndex + + ;
}
}
int [ ] newLanes = new int [ sourceLanes . size ( ) ] ;
for ( int i = 0 ; i < sourceLanes . size ( ) ; i + + ) {
newLanes [ i ] = sourceLanes . get ( i ) ;
}
t . setLanes ( newLanes ) ;
2014-10-04 16:39:25 +02:00
}
assignTurns ( splitLaneOptions , t ) ;
2014-10-21 14:50:29 +02:00
t = inferTurnFromLanes ( t , leftSide ) ;
return t ;
2014-10-04 16:39:25 +02:00
}
2014-10-08 04:38:48 +02:00
private int countOccurrences ( String haystack , char needle ) {
int count = 0 ;
for ( int i = 0 ; i < haystack . length ( ) ; i + + ) {
if ( haystack . charAt ( i ) = = needle ) {
count + + ;
}
}
return count ;
}
2014-10-04 16:39:25 +02:00
private void assignTurns ( String [ ] splitLaneOptions , TurnType t ) {
for ( int i = 0 ; i < splitLaneOptions . length ; i + + ) {
String [ ] laneOptions = splitLaneOptions [ i ] . split ( " ; " ) ;
for ( int j = 0 ; j < laneOptions . length ; j + + ) {
int turn ;
if ( laneOptions [ j ] . equals ( " none " ) | | laneOptions [ j ] . equals ( " through " ) ) {
turn = TurnType . C ;
} else if ( laneOptions [ j ] . equals ( " slight_right " ) ) {
turn = TurnType . TSLR ;
} else if ( laneOptions [ j ] . equals ( " slight_left " ) ) {
turn = TurnType . TSLL ;
} else if ( laneOptions [ j ] . equals ( " right " ) ) {
turn = TurnType . TR ;
} else if ( laneOptions [ j ] . equals ( " left " ) ) {
turn = TurnType . TL ;
} else if ( laneOptions [ j ] . equals ( " sharp_right " ) ) {
turn = TurnType . TSHR ;
} else if ( laneOptions [ j ] . equals ( " sharp_left " ) ) {
turn = TurnType . TSHL ;
} else if ( laneOptions [ j ] . equals ( " reverse " ) ) {
turn = TurnType . TU ;
} else {
// Unknown string
continue ;
}
if ( TurnType . getPrimaryTurn ( t . getLanes ( ) [ i ] ) = = 0 ) {
t . setPrimaryTurn ( i , turn ) ;
} else {
2014-10-06 20:10:57 +02:00
if ( turn = = t . getValue ( ) ) {
t . setSecondaryTurn ( i , TurnType . getPrimaryTurn ( t . getLanes ( ) [ i ] ) ) ;
t . setPrimaryTurn ( i , turn ) ;
} else {
t . setSecondaryTurn ( i , turn ) ;
}
2014-10-04 16:39:25 +02:00
break ; // Move on to the next lane
}
}
}
}
2014-10-21 14:50:29 +02:00
private TurnType inferTurnFromLanes ( TurnType t , boolean leftSide ) {
List < Integer > possibleTurns = new ArrayList < Integer > ( ) ;
for ( int i = 0 ; i < t . getLanes ( ) . length ; i + + ) {
if ( ( t . getLanes ( ) [ i ] & 1 ) = = 0 ) {
continue ;
}
if ( possibleTurns . isEmpty ( ) ) {
// Nothing is in the list to compare to, so add the first elements
possibleTurns . add ( TurnType . getPrimaryTurn ( t . getLanes ( ) [ i ] ) ) ;
if ( TurnType . getSecondaryTurn ( t . getLanes ( ) [ i ] ) ! = 0 ) {
possibleTurns . add ( TurnType . getSecondaryTurn ( t . getLanes ( ) [ i ] ) ) ;
}
} else {
List < Integer > laneTurns = new ArrayList < Integer > ( ) ;
laneTurns . add ( TurnType . getPrimaryTurn ( t . getLanes ( ) [ i ] ) ) ;
if ( TurnType . getSecondaryTurn ( t . getLanes ( ) [ i ] ) ! = 0 ) {
laneTurns . add ( TurnType . getSecondaryTurn ( t . getLanes ( ) [ i ] ) ) ;
}
possibleTurns . retainAll ( laneTurns ) ;
if ( possibleTurns . isEmpty ( ) ) {
// No common turns, so can't determine anything.
return t ;
}
}
}
// Remove all turns from lanes not selected...because those aren't it
for ( int i = 0 ; i < t . getLanes ( ) . length ; i + + ) {
if ( ( t . getLanes ( ) [ i ] & 1 ) = = 0 & & ! possibleTurns . isEmpty ( ) ) {
List < Integer > notLaneTurns = new ArrayList < Integer > ( ) ;
notLaneTurns . add ( TurnType . getPrimaryTurn ( t . getLanes ( ) [ i ] ) ) ;
if ( TurnType . getSecondaryTurn ( t . getLanes ( ) [ i ] ) ! = 0 ) {
notLaneTurns . add ( TurnType . getSecondaryTurn ( t . getLanes ( ) [ i ] ) ) ;
}
possibleTurns . removeAll ( notLaneTurns ) ;
}
}
// Checking to see that there is only one unique turn
if ( new HashSet < Integer > ( possibleTurns ) . size ( ) = = 1 ) {
TurnType derivedTurnType = TurnType . valueOf ( possibleTurns . get ( 0 ) , leftSide ) ;
derivedTurnType . setLanes ( t . getLanes ( ) ) ;
derivedTurnType . setSkipToSpeak ( t . isSkipToSpeak ( ) ) ;
t = derivedTurnType ;
2014-10-22 17:23:13 +02:00
// Because only the primary turn is displayed, if the turn to be taken is currently set as the secondary turn, then that needs to be switched around.
for ( int i = 0 ; i < t . getLanes ( ) . length ; i + + ) {
if ( TurnType . getSecondaryTurn ( t . getLanes ( ) [ i ] ) = = t . getValue ( ) ) {
int temp = TurnType . getSecondaryTurn ( t . getLanes ( ) [ i ] ) ;
t . setSecondaryTurn ( i , TurnType . getPrimaryTurn ( t . getLanes ( ) [ i ] ) ) ;
t . setPrimaryTurn ( i , temp ) ;
}
}
2014-10-21 14:50:29 +02:00
}
return t ;
}
2013-04-21 13:08:21 +02:00
private boolean isMotorway ( RouteSegmentResult s ) {
String h = s . getObject ( ) . getHighway ( ) ;
return " motorway " . equals ( h ) | | " motorway_link " . equals ( h ) | |
" trunk " . equals ( h ) | | " trunk_link " . equals ( h ) ;
}
2013-04-18 23:35:02 +02:00
private void attachRoadSegments ( RoutingContext ctx , List < RouteSegmentResult > result , int routeInd , int pointInd , boolean plus ) throws IOException {
RouteSegmentResult rr = result . get ( routeInd ) ;
RouteDataObject road = rr . getObject ( ) ;
long nextL = pointInd < road . getPointsLength ( ) - 1 ? getPoint ( road , pointInd + 1 ) : 0 ;
long prevL = pointInd > 0 ? getPoint ( road , pointInd - 1 ) : 0 ;
// attach additional roads to represent more information about the route
RouteSegmentResult previousResult = null ;
// by default make same as this road id
long previousRoadId = road . getId ( ) ;
if ( pointInd = = rr . getStartPointIndex ( ) & & routeInd > 0 ) {
previousResult = result . get ( routeInd - 1 ) ;
previousRoadId = previousResult . getObject ( ) . getId ( ) ;
if ( previousRoadId ! = road . getId ( ) ) {
if ( previousResult . getStartPointIndex ( ) < previousResult . getEndPointIndex ( )
& & previousResult . getEndPointIndex ( ) < previousResult . getObject ( ) . getPointsLength ( ) - 1 ) {
rr . attachRoute ( pointInd , new RouteSegmentResult ( previousResult . getObject ( ) , previousResult . getEndPointIndex ( ) ,
previousResult . getObject ( ) . getPointsLength ( ) - 1 ) ) ;
} else if ( previousResult . getStartPointIndex ( ) > previousResult . getEndPointIndex ( )
& & previousResult . getEndPointIndex ( ) > 0 ) {
rr . attachRoute ( pointInd , new RouteSegmentResult ( previousResult . getObject ( ) , previousResult . getEndPointIndex ( ) , 0 ) ) ;
}
}
}
Iterator < RouteSegment > it ;
if ( rr . getPreAttachedRoutes ( pointInd ) ! = null ) {
final RouteSegmentResult [ ] list = rr . getPreAttachedRoutes ( pointInd ) ;
it = new Iterator < BinaryRoutePlanner . RouteSegment > ( ) {
int i = 0 ;
@Override
public boolean hasNext ( ) {
return i < list . length ;
}
@Override
public RouteSegment next ( ) {
RouteSegmentResult r = list [ i + + ] ;
return new RouteSegment ( r . getObject ( ) , r . getStartPointIndex ( ) ) ;
}
@Override
public void remove ( ) {
}
} ;
} else {
RouteSegment rt = ctx . loadRouteSegment ( road . getPoint31XTile ( pointInd ) , road . getPoint31YTile ( pointInd ) , ctx . config . memoryLimitation ) ;
it = rt = = null ? null : rt . getIterator ( ) ;
}
// try to attach all segments except with current id
while ( it ! = null & & it . hasNext ( ) ) {
RouteSegment routeSegment = it . next ( ) ;
if ( routeSegment . road . getId ( ) ! = road . getId ( ) & & routeSegment . road . getId ( ) ! = previousRoadId ) {
RouteDataObject addRoad = routeSegment . road ;
checkAndInitRouteRegion ( ctx , addRoad ) ;
// TODO restrictions can be considered as well
int oneWay = ctx . getRouter ( ) . isOneWay ( addRoad ) ;
if ( oneWay > = 0 & & routeSegment . getSegmentStart ( ) < addRoad . getPointsLength ( ) - 1 ) {
long pointL = getPoint ( addRoad , routeSegment . getSegmentStart ( ) + 1 ) ;
if ( pointL ! = nextL & & pointL ! = prevL ) {
// if way contains same segment (nodes) as different way (do not attach it)
rr . attachRoute ( pointInd , new RouteSegmentResult ( addRoad , routeSegment . getSegmentStart ( ) , addRoad . getPointsLength ( ) - 1 ) ) ;
}
}
if ( oneWay < = 0 & & routeSegment . getSegmentStart ( ) > 0 ) {
long pointL = getPoint ( addRoad , routeSegment . getSegmentStart ( ) - 1 ) ;
// if way contains same segment (nodes) as different way (do not attach it)
if ( pointL ! = nextL & & pointL ! = prevL ) {
rr . attachRoute ( pointInd , new RouteSegmentResult ( addRoad , routeSegment . getSegmentStart ( ) , 0 ) ) ;
}
}
}
}
}
private static void println ( String logMsg ) {
// log.info(logMsg);
System . out . println ( logMsg ) ;
}
private long getPoint ( RouteDataObject road , int pointInd ) {
return ( ( ( long ) road . getPoint31XTile ( pointInd ) ) < < 31 ) + ( long ) road . getPoint31YTile ( pointInd ) ;
}
private static double measuredDist ( int x1 , int y1 , int x2 , int y2 ) {
return MapUtils . getDistance ( MapUtils . get31LatitudeY ( y1 ) , MapUtils . get31LongitudeX ( x1 ) ,
MapUtils . get31LatitudeY ( y2 ) , MapUtils . get31LongitudeX ( x2 ) ) ;
}
}