Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							6bfe3a2d41 
							
						 
					 
					
						
						
							
							Merge pull request  #2733  from gavinsherry/master  
						
						... 
						
						
						
						Remove unused variable node_info_list 
						
					 
					
						2016-08-04 11:24:33 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							7f71f0ed12 
							
						 
					 
					
						
						
							
							Warn on unused return values in guidance code,  resolves   #2686 .  
						
						... 
						
						
						
						https://github.com/Project-OSRM/osrm-backend/pull/2685/files 
fixes an issue where we did
    elongate(fstStep, sndStep);
instead of
    newStep = elongate(fstStep, sndStep);
we didn't get any warnings.
The only way to trigger a warning here is to use
```cpp
__attribute__((warn_unused_result))
```
This changeset does exactly that: for the new guidance code prone to
these kind of issue we add such an attribute to the declaration. 
					
						2016-08-03 12:26:07 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							b24f5c7c1a 
							
						 
					 
					
						
						
							
							Adapt lane dump to lanes at intersection ( #2675 ),  resolves   #2709  
						
						
						
					 
					
						2016-08-03 12:19:14 +02:00 
						 
				 
			
				
					
						
							
							
								Gavin Sherry 
							
						 
					 
					
						
						
						
						
							
						
						
							b09f637d02 
							
						 
					 
					
						
						
							
							Remove unused variable node_info_list  
						
						
						
					 
					
						2016-08-02 14:17:57 -07:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0d36d472c9 
							
						 
					 
					
						
						
							
							change paradigm of merge to only emit on motorway-like roads  
						
						
						
					 
					
						2016-07-30 23:55:39 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d012b44b7f 
							
						 
					 
					
						
						
							
							Filter out edges that have any speed=0 segments.  
						
						... 
						
						
						
						They become non-snappable and non-routable.  Note that a single segment
of speed=0 will eliminate the entire edge. 
						
					 
					
						2016-07-30 23:53:38 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							63c86198a3 
							
						 
					 
					
						
						
							
							Fix compilation of components.cpp  
						
						
						
					 
					
						2016-07-30 23:49:35 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a87c5998a1 
							
						 
					 
					
						
						
							
							Fix   #2706  by using correct fallback u-turn  
						
						... 
						
						
						
						Regression is due to a combination of 08248e3853http://www.openstreetmap.org/changeset/40938983 
where in ways http://www.openstreetmap.org/way/27292481 
and http://www.openstreetmap.org/way/432488408 
nodes
4315134884 (part of way 432488408)
4315134891 (part of way 432488408)
4315134886 (part of way 432488408)
form a u-turn that has index 0 after sorting and used as an allowed one
with a reversed edge.
A u-turn that corresponds to the condition uturn_could_be_valid == true has index 1
and ignored. 
						
					 
					
						2016-07-30 12:15:22 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c918a7957b 
							
						 
					 
					
						
						
							
							Updated format and ChangeLog  
						
						
						
					 
					
						2016-07-28 22:59:22 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							95dc36e908 
							
						 
					 
					
						
						
							
							addressed comments  
						
						... 
						
						
						
						Signed-off-by: Lauren Budorick <lauren@mapbox.com> 
						
					 
					
						2016-07-28 22:59:22 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c09b9b4c99 
							
						 
					 
					
						
						
							
							Initial left hand driving implementation  
						
						
						
					 
					
						2016-07-28 22:59:22 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							280b000f07 
							
						 
					 
					
						
						
							
							Include datasources for each segment in route annotation.  
						
						
						
					 
					
						2016-07-27 15:51:11 -07:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							fb4834458e 
							
						 
					 
					
						
						
							
							No longer hard crash datastore on unrecognised options  
						
						
						
					 
					
						2016-07-27 11:33:56 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c7a1576100 
							
						 
					 
					
						
						
							
							Apply clang-format again  
						
						
						
					 
					
						2016-07-26 15:00:58 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							eaf42ba437 
							
						 
					 
					
						
						
							
							Moves invalid id warnings to debug,  closes   #2630  
						
						
						
					 
					
						2016-07-26 13:01:31 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e83905b783 
							
						 
					 
					
						
						
							
							Fix exception handling around unrecognised options  
						
						
						
					 
					
						2016-07-26 11:43:08 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0b868969be 
							
						 
					 
					
						
						
							
							Remove generic std::exception handlers, they don't seem to be adding value, and they hide useful info.  
						
						
						
					 
					
						2016-07-26 11:43:08 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7d076e9344 
							
						 
					 
					
						
						
							
							handle access flags for lanes  
						
						
						
					 
					
						2016-07-25 20:01:58 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							748fd3efa9 
							
						 
					 
					
						
						
							
							Remove lanes from roundabouts,  closes   #2626  
						
						... 
						
						
						
						After half a day of looking at the tagging and the data came to the
following conclusion:
We can't keep the user to the innermost / outermost lanes depending on
the exit the route takes: we found situations where both heuristics were
wrong.
Even on popular roundabouts the tagging is often wrong or in the best
case not present at all.
There are at least two different ways to interpret roundabout
indications: 1/ where e.g. a right arrow on the lane indicates turn
restrictions for the roundabout and the need to take this lane to exit
the roundabout to the right (possibly skipping multiple exits) and 2/
where a right arrow just means this is a lane in a immediate right turn.
Example: Australia marks lanes with arrows that seem to indicate
"angles you can exit the roundabout from", for example, these two ways:
- http://www.openstreetmap.org/way/320941710 
- http://www.openstreetmap.org/way/42918021 
Whereas Germany marks lanes with "directions you can travel in these
lanes immediately after entering the roundabout":
- http://www.openstreetmap.org/way/52578338 
These two different interpretations of how to draw the arrows on the
roads mean we have conflicting solutions to "which lanes can you use to
take exit B from entry A" based on locality.
Continuing to tag ways based on lane markings is no problem, but
unfortunately, we can't reliably resolve good advice for navigation
system users (like "use the inside lane to take the second exit at the
roundabout"), there are too many situations that would generate bad
instructions (instructions that tell users to go into a lane they
shouldn't use). 
						
					 
					
						2016-07-25 19:29:55 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1fc63e1e72 
							
						 
					 
					
						
						
							
							move hardcoded road priorities into profiles, change road classification  
						
						
						
					 
					
						2016-07-25 13:07:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							fd6bb5ec1f 
							
						 
					 
					
						
						
							
							Lane Handling for multiple indications per lane as in left;left|,  fixes   #2694  
						
						... 
						
						
						
						Before we asserted on unique lane indications per lane. Turns out the
OSM data contains lane strings such as:
    left;left|right
Which represents two lanes as in:
    <<     >
     ||    |
The two left indications _on a single lane_ look like data issue.
And we can't represent this with our enum-approach at the moment.
We don't want to crash there, so silently swallow this and
generate a single left|right for it. 
						
					 
					
						2016-07-25 12:17:23 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							261dbf3edd 
							
						 
					 
					
						
						
							
							Fix log output of osrm-extract  
						
						
						
					 
					
						2016-07-25 12:03:30 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9e323d2d42 
							
						 
					 
					
						
						
							
							improve sliproad / fork handling  
						
						
						
					 
					
						2016-07-22 15:16:59 +02:00 
						 
				 
			
				
					
						
							
							
								Konstantin Käfer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1309dd2a0f 
							
						 
					 
					
						
						
							
							Switch profiles from Lua to library interface  
						
						... 
						
						
						
						There's now an abstracted interface and no direct calls to Lua anymore.
fixes  #1974  
						
					 
					
						2016-07-22 15:03:57 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							060ec99678 
							
						 
					 
					
						
						
							
							Fix devide by zero when updating speeds  
						
						
						
					 
					
						2016-07-21 18:57:21 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							41ba20ca9a 
							
						 
					 
					
						
						
							
							switch api format to new structure  
						
						
						
					 
					
						2016-07-21 17:42:10 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							b25011ee60 
							
						 
					 
					
						
						
							
							fix use-lane handling  
						
						
						
					 
					
						2016-07-21 16:37:54 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							0e017a6ce5 
							
						 
					 
					
						
						
							
							collapse use-lane instructions if possible  
						
						
						
					 
					
						2016-07-20 10:23:26 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							2431e15ffa 
							
						 
					 
					
						
						
							
							mark second case as todo, see  https://github.com/Project-OSRM/osrm-backend/issues/2661  
						
						
						
					 
					
						2016-07-20 09:55:30 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							396add1e9d 
							
						 
					 
					
						
						
							
							make roundabout maneuvers continuous with respect to lane changes  
						
						
						
					 
					
						2016-07-20 09:55:30 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							ee47afbe17 
							
						 
					 
					
						
						
							
							fix 2672  
						
						
						
					 
					
						2016-07-19 17:06:47 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							8831ca2f32 
							
						 
					 
					
						
						
							
							fix roundabouts with traffic lights  
						
						
						
					 
					
						2016-07-19 14:49:09 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							abde215bc3 
							
						 
					 
					
						
						
							
							Remove semantically wrong ordering for LaneTupel  
						
						
						
					 
					
						2016-07-18 12:33:56 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							130d5298fc 
							
						 
					 
					
						
						
							
							Fixes Undefined Behavior in LaneTupel (Strict Aliasing), resolves 2665  
						
						... 
						
						
						
						It's complicated :sigh: read this please:
http://dbp-consulting.com/tutorials/StrictAliasing.html 
tl;dr: has to go through a memcpy (in C++) as in:
184cc11cee/src/support/utilities.h (L29-L40) 
						
					 
					
						2016-07-18 12:32:25 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							4fcb5d28a4 
							
						 
					 
					
						
						
							
							Merge pull request  #2624  from oxidase/issues/2617  
						
						... 
						
						
						
						Fix ambiguous data issues 
						
					 
					
						2016-07-13 11:20:40 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2ddc00c21e 
							
						 
					 
					
						
						
							
							update cucumber to 1.2.1 and remove hack  
						
						
						
					 
					
						2016-07-13 11:04:35 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e76e39a398 
							
						 
					 
					
						
						
							
							Improves Lane Handling for Multi-Hop Roundabout Instruction  
						
						... 
						
						
						
						This changeset implements Lane Anticipation on roundabouts, delimited
by enter / leave step pairs. It does not handle lane anticipation
within a roundabout.
Lane anticipation happens on the granularity of a valid roundbaout:
We discard partial roundabout (enter without exit or exit without
enter) or data issues (no roundabout, exit before enter).
Related:
- https://github.com/Project-OSRM/osrm-backend/issues/2626  for lanes
  within a roundabout
- https://github.com/Project-OSRM/osrm-backend/issues/2625  for handling
  going straight in lane anticipation 
						
					 
					
						2016-07-13 10:44:12 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							04667f1ed8 
							
						 
					 
					
						
						
							
							Log incoming requests before they are processed  
						
						
						
					 
					
						2016-07-11 16:50:09 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2b466b2fb2 
							
						 
					 
					
						
						
							
							Fix ambiguity in edges by using names lexicographical order  
						
						
						
					 
					
						2016-07-11 05:54:30 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e17b306265 
							
						 
					 
					
						
						
							
							Fix ambiguity in edge weights by using minimal weight  
						
						
						
					 
					
						2016-07-08 18:20:55 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							b00b15ab98 
							
						 
					 
					
						
						
							
							Manual modernize run with LLVM 3.8  
						
						... 
						
						
						
						More is blocked by:
- https://github.com/Project-OSRM/osrm-backend/issues/2631  
						
					 
					
						2016-07-07 12:45:24 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							f4db79fe9b 
							
						 
					 
					
						
						
							
							fix obvious turn collapsing for straight turns  
						
						
						
					 
					
						2016-07-06 10:50:47 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							043a1446e1 
							
						 
					 
					
						
						
							
							adjust changelog (mention both files) and update a typo  
						
						
						
					 
					
						2016-06-30 10:39:05 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6265b8fa77 
							
						 
					 
					
						
						
							
							fix broken assertion  
						
						
						
					 
					
						2016-06-28 10:30:02 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							311b348d09 
							
						 
					 
					
						
						
							
							handle sliproads at traffic lights  
						
						
						
					 
					
						2016-06-28 10:23:22 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							ec02cdc4cc 
							
						 
					 
					
						
						
							
							Use mmap instead of read - it's a lot faster here.  
						
						... 
						
						
						
						Also clean up construction of STRONG_TYPEDEF so that it can be
packed properly in structs (this explains all the () -> {}) changes
here. 
						
					 
					
						2016-06-27 17:24:30 -07:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							5905708111 
							
						 
					 
					
						
						
							
							expose lanes as enums, adjusted for comments  
						
						
						
					 
					
						2016-06-27 11:12:02 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							5d91b759d1 
							
						 
					 
					
						
						
							
							Implement Turn Lane Api  
						
						
						
					 
					
						2016-06-27 10:07:48 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							ec0a1a4ab1 
							
						 
					 
					
						
						
							
							Anticipate Lane Changes  
						
						
						
					 
					
						2016-06-27 10:07:43 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							efa29edf09 
							
						 
					 
					
						
						
							
							basic turn lane handling  
						
						
						
					 
					
						2016-06-27 10:07:41 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2a05b70dfc 
							
						 
					 
					
						
						
							
							reduce number of end-of-road instructions in unnecessary cases  
						
						
						
					 
					
						2016-06-26 16:40:15 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e03d132823 
							
						 
					 
					
						
						
							
							fix invalid circle centers  
						
						
						
					 
					
						2016-06-24 15:12:51 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4629a20fe4 
							
						 
					 
					
						
						
							
							improve handling of obvious for end-of-road situations  
						
						
						
					 
					
						2016-06-24 12:05:42 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							df877aca1b 
							
						 
					 
					
						
						
							
							Hard-abort on assertion and show detailed information, solves  #2579  
						
						... 
						
						
						
						From
> [warn} oops
to
> [assert] /tmp/osrm-backend/src/extractor/extractor.cpp:79
> in: int osrm::extractor::Extractor::run(): false
> terminate called without an active exception 
						
					 
					
						2016-06-23 18:57:35 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							6dedd9cb72 
							
						 
					 
					
						
						
							
							Fix segfault when route includes very short segments.  
						
						
						
					 
					
						2016-06-22 14:48:57 -07:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fddc19e98d 
							
						 
					 
					
						
						
							
							Fix regressed formating  
						
						
						
					 
					
						2016-06-21 22:25:48 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							93b6438cea 
							
						 
					 
					
						
						
							
							Fix fromTop and fromLeft calculation  
						
						
						
					 
					
						2016-06-21 19:31:46 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f6746d88b7 
							
						 
					 
					
						
						
							
							Removes unused -s from osrm-datastore, use osrm-springclean tool,  closes   #2561  
						
						
						
					 
					
						2016-06-21 18:09:11 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2868f702a5 
							
						 
					 
					
						
						
							
							fix issues with roundabouts and intersections and sliproads  
						
						
						
					 
					
						2016-06-21 16:56:57 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8c378191df 
							
						 
					 
					
						
						
							
							Fix omitting the last point's coordinates in the geometry field  
						
						
						
					 
					
						2016-06-21 07:06:43 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3c8781855e 
							
						 
					 
					
						
						
							
							handle steep off-ramps  
						
						
						
					 
					
						2016-06-21 00:47:43 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							04e334e3e2 
							
						 
					 
					
						
						
							
							Make storage blocks aligned to 4 bytes for ARM NEON/VFP instructions  
						
						... 
						
						
						
						Aligned blocks prevent bus errors in NEON/VFP instructions.
Block pointers are aligned to 4 bytes, that is guaranteed
by aligned mmaped-pointers, the 4 bytes size of the CANARY block and
aligned sizes of blocks. 
						
					 
					
						2016-06-20 22:45:40 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							12d4832037 
							
						 
					 
					
						
						
							
							Fix platform-independent data in data files  
						
						
						
					 
					
						2016-06-20 22:45:40 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3881ead8e5 
							
						 
					 
					
						
						
							
							Fix rounding issue due to non-associative floating arithmetic  
						
						... 
						
						
						
						Failing test
features/car/traffic_turn_penalties.feature:33
Tables were not identical:
    from |     to |     route |     speed |     time
|     a |     h |     ad,dhk,dhk |     63 km/h |     11.5s +-1 |
|     i |     g |     fim,fg,fg |     59 km/h |     12s  +-1 |
| (-) a | (-) e | (-) ad,de,de | (-) 57 km/h | (-) 12.5s +-1 |
| (+) a | (+) e | (+) ad,de,de | (+) 58 km/h | (+) 12.5s +-1 |
|     c |     g |     cd,de,ef,fg,fg |     63 km/h |     23s +-1 |
|     p |     g |     mp,fim,fg,fg |     61 km/h |     23.5s +-1 |
|     a |     l |     ad,dhk,kl,kl |     60 km/h |     24s +-1 |
|     l |     e |     kl,dhk,de,de |     59 km/h |     24.5s +-1 |
|     g |     n |     fg,fim,mn,mn |     57 km/h |     25s +-1 | 
						
					 
					
						2016-06-20 22:45:40 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							306744e5cb 
							
						 
					 
					
						
						
							
							fix roundabout-handling when name changes  
						
						
						
					 
					
						2016-06-17 11:02:14 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3ca32898a1 
							
						 
					 
					
						
						
							
							move guidance decision into debug header  
						
						
						
					 
					
						2016-06-15 11:30:30 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							494845b160 
							
						 
					 
					
						
						
							
							Copy data to beginning of buffer, not end. ( #2542 )  
						
						... 
						
						
						
						Copy data to beginning of buffer, not end. 
						
					 
					
						2016-06-13 12:59:42 -07:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0fc823041e 
							
						 
					 
					
						
						
							
							Removed debug code  
						
						
						
					 
					
						2016-06-13 17:57:33 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							47b19f209b 
							
						 
					 
					
						
						
							
							prefer obvious turn assignment over forks  
						
						
						
					 
					
						2016-06-13 15:00:18 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2b5355edca 
							
						 
					 
					
						
						
							
							improve slipway handling to allow multiple styles of turn lanes / turn roads  
						
						
						
					 
					
						2016-06-13 11:56:50 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e9a0beb4e8 
							
						 
					 
					
						
						
							
							Fix shared memory encoding for node-ids  
						
						
						
					 
					
						2016-06-12 20:50:57 +02:00 
						 
				 
			
				
					
						
							
							
								Vladimir Kurchatkin 
							
						 
					 
					
						
						
						
						
							
						
						
							6bdfe68897 
							
						 
					 
					
						
						
							
							Add feature name to vector tiles ( #2488 )  
						
						
						
					 
					
						2016-06-10 11:15:14 -07:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							033dc0a72d 
							
						 
					 
					
						
						
							
							Pre-allocate up-front whenever possible  
						
						
						
					 
					
						2016-06-09 16:06:27 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1c140a112a 
							
						 
					 
					
						
						
							
							Make sure we also reserve space for destination and pronunciation  
						
						
						
					 
					
						2016-06-08 10:58:11 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							312e86eb58 
							
						 
					 
					
						
						
							
							handle merge on collapsed instructions  
						
						
						
					 
					
						2016-06-06 11:55:14 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							1dfdb38d4a 
							
						 
					 
					
						
						
							
							improve collapse-handling  
						
						
						
					 
					
						2016-06-06 10:05:18 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							6f322d2140 
							
						 
					 
					
						
						
							
							Silence multiline comment warning  
						
						
						
					 
					
						2016-06-03 14:47:45 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							801cc72691 
							
						 
					 
					
						
						
							
							Sync with Clang38 Format  
						
						
						
					 
					
						2016-06-02 14:43:27 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
						
						
							
						
						
							058b8c3b31 
							
						 
					 
					
						
						
							
							Template vector  
						
						
						
					 
					
						2016-06-02 14:27:25 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
						
						
							
						
						
							ae3ccb009e 
							
						 
					 
					
						
						
							
							Formatting [ci skip]  
						
						
						
					 
					
						2016-06-02 14:27:25 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
						
						
							
						
						
							44fdf86702 
							
						 
					 
					
						
						
							
							IT WORKS  
						
						
						
					 
					
						2016-06-02 14:27:25 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
						
						
							
						
						
							a4ac07866a 
							
						 
					 
					
						
						
							
							Recreate feature/expose_node_ids  
						
						
						
					 
					
						2016-06-02 14:27:25 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							448f8377fb 
							
						 
					 
					
						
						
							
							Sync with Clang38 Format  
						
						
						
					 
					
						2016-06-02 13:14:33 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							6edc565c01 
							
						 
					 
					
						
						
							
							Add destinations API feature  
						
						
						
					 
					
						2016-06-02 12:00:23 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							bdc66049a5 
							
						 
					 
					
						
						
							
							fix INVALID_NAME_ID vs INVALID_NAMEID -> EMPTY_NAMEID  
						
						
						
					 
					
						2016-06-01 23:19:26 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0a53775fb3 
							
						 
					 
					
						
						
							
							Expose pronunciation in RouteStep  
						
						... 
						
						
						
						Uses name:pronunciation by default for cars. 
						
					 
					
						2016-06-01 23:17:57 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							503137221d 
							
						 
					 
					
						
						
							
							Let osrm-routed log status code,  fixes   #512 .  
						
						... 
						
						
						
						Disclaimer: osrm-routed is not recommended for production usage.
Use node-osrm instead: https://github.com/Project-OSRM/node-osrm  
						
					 
					
						2016-05-31 14:44:50 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							cd30f370b8 
							
						 
					 
					
						
						
							
							Remove the use of atomics and use thread-local accumulation instead  
						
						
						
					 
					
						2016-05-29 00:06:18 +02:00 
						 
				 
			
				
					
						
							
							
								Dane Springmeyer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4ae8abe6a3 
							
						 
					 
					
						
						
							
							run clang-format [skip ci]  
						
						
						
					 
					
						2016-05-27 22:35:17 +02:00 
						 
				 
			
				
					
						
							
							
								Dane Springmeyer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							82bfd4ee40 
							
						 
					 
					
						
						
							
							fix compile with clang-3.5  
						
						
						
					 
					
						2016-05-27 22:35:17 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6e16eab6ec 
							
						 
					 
					
						
						
							
							Format with clang-format 3.8  
						
						
						
					 
					
						2016-05-27 21:05:04 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d6de2ca71c 
							
						 
					 
					
						
						
							
							Really place annotations in RouteLeg and not Route  
						
						
						
					 
					
						2016-05-27 16:46:28 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							498370330d 
							
						 
					 
					
						
						
							
							String bulk insertion  
						
						
						
					 
					
						2016-05-26 22:50:17 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1418c0dbbc 
							
						 
					 
					
						
						
							
							Move ExtractionWays and ExtractionNodes into container to avoid copying  
						
						
						
					 
					
						2016-05-26 22:50:17 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							bbc79dd49f 
							
						 
					 
					
						
						
							
							ExtractionContainers already owns its data  
						
						
						
					 
					
						2016-05-26 22:50:17 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8036320d94 
							
						 
					 
					
						
						
							
							Do not bind primitives per ref  
						
						
						
					 
					
						2016-05-26 22:50:17 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							3d03797e53 
							
						 
					 
					
						
						
							
							Distinguish between offramps and sliproads.  
						
						
						
					 
					
						2016-05-26 21:31:04 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							baf8e4784b 
							
						 
					 
					
						
						
							
							Transfer match benchmark to own binary  
						
						
						
					 
					
						2016-05-26 20:25:33 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d53350b263 
							
						 
					 
					
						
						
							
							be more verbose on broken configs  
						
						
						
					 
					
						2016-05-26 20:04:24 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							797f2a196b 
							
						 
					 
					
						
						
							
							handle intersection-access for roundabout correctly  
						
						
						
					 
					
						2016-05-26 16:25:26 +02:00 
						 
				 
			
				
					
						
							
							
								Freenerd 
							
						 
					 
					
						
						
						
						
							
						
						
							a21fd2ea18 
							
						 
					 
					
						
						
							
							Contractor: log stats for loaded speed files  
						
						
						
					 
					
						2016-05-24 14:35:16 -04:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0587c5f5c4 
							
						 
					 
					
						
						
							
							Trim datasource names before writing to datafile.  
						
						
						
					 
					
						2016-05-24 15:20:14 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b5225f07cb 
							
						 
					 
					
						
						
							
							Fix   #2413  by converting enums to unsigned char constants  
						
						
						
					 
					
						2016-05-23 18:33:24 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							abed7690d0 
							
						 
					 
					
						
						
							
							fix continue on obvious  
						
						
						
					 
					
						2016-05-23 17:55:30 +02:00 
						 
				 
			
				
					
						
							
							
								Mathias Gug 
							
						 
					 
					
						
						
						
						
							
						
						
							e5b713841a 
							
						 
					 
					
						
						
							
							Fix style.  
						
						
						
					 
					
						2016-05-20 12:47:47 -07:00 
						 
				 
			
				
					
						
							
							
								Mathias Gug 
							
						 
					 
					
						
						
						
						
							
						
						
							1635f7351d 
							
						 
					 
					
						
						
							
							Support environment variable to disable http requests logging.  
						
						
						
					 
					
						2016-05-20 12:47:47 -07:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ce5ae411c1 
							
						 
					 
					
						
						
							
							Resurrect Flat Map + Binary Search commit from PR 2412  
						
						
						
					 
					
						2016-05-20 20:43:45 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d1bc32fb31 
							
						 
					 
					
						
						
							
							Add comments and debug code  
						
						
						
					 
					
						2016-05-20 18:52:29 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f9f87f25d4 
							
						 
					 
					
						
						
							
							Use elogate() to fixup geometry when merging steps,  fixes   #2424  
						
						
						
					 
					
						2016-05-20 18:52:29 +02:00 
						 
				 
			
				
					
						
							
							
								Dane Springmeyer 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7649187095 
							
						 
					 
					
						
						
							
							workaround  boostorg/numeric_conversion#4  
						
						
						
					 
					
						2016-05-20 16:03:19 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							57321979ae 
							
						 
					 
					
						
						
							
							Remove leftover debugging code  
						
						
						
					 
					
						2016-05-19 16:44:31 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							95af72c70c 
							
						 
					 
					
						
						
							
							Make intersection backwards compatible  
						
						... 
						
						
						
						For `depart` and `arrive` `step.intersections[0].{bearings|entry}` will have
only one entry. 
						
					 
					
						2016-05-19 16:44:31 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							98fe0badbe 
							
						 
					 
					
						
						
							
							fix loading in storage  
						
						
						
					 
					
						2016-05-19 16:44:31 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							44b841a25d 
							
						 
					 
					
						
						
							
							fix storage  
						
						
						
					 
					
						2016-05-19 16:44:31 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9c8bf820de 
							
						 
					 
					
						
						
							
							adjusted to in/out. only emit one of them for depart/arrive  
						
						
						
					 
					
						2016-05-19 16:44:31 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4d9aa65e78 
							
						 
					 
					
						
						
							
							intersection classes with variable degree of discretization  
						
						
						
					 
					
						2016-05-19 16:44:31 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0f3942558f 
							
						 
					 
					
						
						
							
							version using discrete values stored directly at intersection  
						
						
						
					 
					
						2016-05-19 16:43:46 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ba074b0116 
							
						 
					 
					
						
						
							
							initial version of intersection classification  
						
						
						
					 
					
						2016-05-19 16:43:46 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6aa97048df 
							
						 
					 
					
						
						
							
							Rip out custom CSV parser code and its third_party dependency  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d9a5c79ea6 
							
						 
					 
					
						
						
							
							Map leaf nodes to RAM and iterate over them potentially in parallel  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							9d7714c714 
							
						 
					 
					
						
						
							
							Make looping through all leaf nodes less confusing  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							8291be375a 
							
						 
					 
					
						
						
							
							Expose concurrency in saving files  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							0a73737f69 
							
						 
					 
					
						
						
							
							Fold parsing and data loading in concurrently executing action  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2fd1b6c913 
							
						 
					 
					
						
						
							
							Expose concurrency between intern/external node map and geometries  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ea38a1d880 
							
						 
					 
					
						
						
							
							Parse multiple files concurrently  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f576e13c51 
							
						 
					 
					
						
						
							
							Concurrent lookup hashtables  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ee7bb8731a 
							
						 
					 
					
						
						
							
							Expose concurrency between segment speeds and turn penalties  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							da0c3ff394 
							
						 
					 
					
						
						
							
							Refactor edge weight parsing code  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6ae559b42b 
							
						 
					 
					
						
						
							
							Throw error if edge based graph file could not be loaded  
						
						
						
					 
					
						2016-05-19 00:01:54 +02:00 
						 
				 
			
				
					
						
							
							
								Mathias Gug 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b5ffb51e18 
							
						 
					 
					
						
						
							
							Signal the parent process when we're ready to serve requests.  
						
						... 
						
						
						
						This can be used for a hot reload of the process binary. The supervising
process can be told when the new process is ready to serve requests. 
						
					 
					
						2016-05-18 23:59:52 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a9f674497a 
							
						 
					 
					
						
						
							
							emit turn-straight for obvious turns where the main road continues  
						
						
						
					 
					
						2016-05-18 19:54:53 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							fa525ad610 
							
						 
					 
					
						
						
							
							Return an array with meta-data for each coordinate.  
						
						... 
						
						
						
						Currently supports duration and distance for each coordinate.
This is particularly useful in map-matching, comparing how
a trip progresses compared to a real GPS trace that is
map-matched. 
						
					 
					
						2016-05-12 01:11:09 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c520c7a24a 
							
						 
					 
					
						
						
							
							Fix rtree benchmark  
						
						
						
					 
					
						2016-05-07 23:52:11 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ddd128ce0e 
							
						 
					 
					
						
						
							
							Only use const-ref for coordinate vector  
						
						
						
					 
					
						2016-05-07 23:52:11 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2acde49f0f 
							
						 
					 
					
						
						
							
							Make LeafNode aligned to memory pages.  
						
						... 
						
						
						
						Changes:
* LeafNode is aligned to LEAF_PAGE_SIZE.
  Alignment brings 24 bytes memory overhead for 4096, but reduces
  cache misses rate.
* Unused m_element_count from leaf nodes file.
  The size is computed as m_leaves_region.size() / LEAF_PAGE_SIZE.
* Added try/catch for mmap exceptions messages. 
						
					 
					
						2016-05-07 23:52:11 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							363d2145bd 
							
						 
					 
					
						
						
							
							Register a way's .nodes() function for use in the profile's way_function.  
						
						... 
						
						
						
						Can be used as in:
    function way_function(way, result)
      for node in way:get_nodes() do
        local id = node:id()
        io.write(">>> " .. id .. "\n")
      end
      -- ...
    end
Warning: we do not use libosmium's location cache, therefore .location()
on the nodes will crash at runtime. Once we switch to using libosmium's
cache this should work. Until then, you can use the node id now. 
						
					 
					
						2016-05-04 15:28:34 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6018fcf490 
							
						 
					 
					
						
						
							
							Introduce on_ramp and off_ramp, deprecate ramp  
						
						
						
					 
					
						2016-05-04 12:09:54 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							1e6888c0d3 
							
						 
					 
					
						
						
							
							fix new-name on empty strings  
						
						
						
					 
					
						2016-05-04 10:52:55 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d8acf76f2d 
							
						 
					 
					
						
						
							
							Fix wrong assertion size in CompressedEdgeContainer::GetLastEdgeSourceID  
						
						
						
					 
					
						2016-05-03 21:50:27 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							08248e3853 
							
						 
					 
					
						
						
							
							fix 2349  
						
						
						
					 
					
						2016-05-03 21:14:31 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a4f1dc536d 
							
						 
					 
					
						
						
							
							Trip plugin does not have a continue_straight parameter, use false  
						
						
						
					 
					
						2016-05-03 21:13:22 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							5517ee334f 
							
						 
					 
					
						
						
							
							Remove typename prefix from non-dependent type alias  
						
						... 
						
						
						
						I think VS is predantic but actually right here.
References:
- http://eel.is/c++draft/namespace.udecl#19  
						
					 
					
						2016-05-03 12:00:40 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							206bdff9e7 
							
						 
					 
					
						
						
							
							Inline and vectorize haversine for GetPathDistance  
						
						
						
					 
					
						2016-05-02 19:53:42 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c32270b2b8 
							
						 
					 
					
						
						
							
							Make projectOnLine inline-able  
						
						
						
					 
					
						2016-05-02 19:53:05 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							cc03402570 
							
						 
					 
					
						
						
							
							Use pass-by-copy for Coordinate  
						
						
						
					 
					
						2016-05-02 19:51:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							21a76f1867 
							
						 
					 
					
						
						
							
							Move coordinate constructors to header to enable inlining  
						
						
						
					 
					
						2016-05-02 19:50:52 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							212ad94c90 
							
						 
					 
					
						
						
							
							x2 speedup in Douglas Peucker by projecting all coordinates first  
						
						
						
					 
					
						2016-05-02 19:50:33 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							378d9f4112 
							
						 
					 
					
						
						
							
							Remove debug ouput from post-processing  
						
						
						
					 
					
						2016-05-02 19:47:59 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							59168e21b4 
							
						 
					 
					
						
						
							
							remove unnecessary warnings, initialize correctly  
						
						
						
					 
					
						2016-05-02 17:29:37 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d12a95b4ef 
							
						 
					 
					
						
						
							
							Fix naming convention of Percent  
						
						
						
					 
					
						2016-05-02 17:25:58 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							83482afa02 
							
						 
					 
					
						
						
							
							Fix naming conventions of TrajanSCC  
						
						
						
					 
					
						2016-05-02 17:25:58 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e470d1ae1c 
							
						 
					 
					
						
						
							
							Fix naming convention in RasterSource  
						
						
						
					 
					
						2016-05-02 17:25:58 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							5ce465ce23 
							
						 
					 
					
						
						
							
							Remove extra ; in PostProcessing  
						
						
						
					 
					
						2016-05-02 17:25:58 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
						
						
							
						
						
							b8f7569e93 
							
						 
					 
					
						
						
							
							Implement arbitrary turn penalty file IO and integration ( #2306 )  
						
						... 
						
						
						
						Closes  #1830  
					
						2016-04-29 00:48:13 -07:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							930f6df2cb 
							
						 
					 
					
						
						
							
							Fixes   #2335 , map matching was using shortest path with uturns disabled  
						
						
						
					 
					
						2016-04-28 12:02:31 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
						
						
							
						
						
							5186b9490d 
							
						 
					 
					
						
						
							
							Fix syntax error position indicators in parameters queries  
						
						... 
						
						
						
						To fix  #2193  prefix_length member variable has been added to ParsedURL
that is set to the length of "/service/version/profile/" prefix
when the prefix is accepted by the parser.
Also BOOST_FUSION_ADAPT_STRUCT for osrm::server::api::ParsedURL
has been moved from header to url_parser.cpp to speed up compilation
of CUs that do not use the fusion adaption. 
						
					 
					
						2016-04-27 19:52:23 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							a154d71841 
							
						 
					 
					
						
						
							
							enable suppression name suffix changes  
						
						
						
					 
					
						2016-04-27 18:10:56 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							fddb035539 
							
						 
					 
					
						
						
							
							suppress name additions (xxx -> xxxbridge)  
						
						
						
					 
					
						2016-04-27 12:13:42 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							1544a08ea2 
							
						 
					 
					
						
						
							
							introduce roundabout-turns into instruction set  
						
						
						
					 
					
						2016-04-27 12:13:42 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							c5e1742150 
							
						 
					 
					
						
						
							
							fix post-processing for local paths,  fixes   #2310  
						
						
						
					 
					
						2016-04-26 13:15:46 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							754bc2d274 
							
						 
					 
					
						
						
							
							handle combined turns at segregated roads  
						
						
						
					 
					
						2016-04-26 13:13:20 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							3ac061c546 
							
						 
					 
					
						
						
							
							fix guidance issues / improve tests  
						
						
						
					 
					
						2016-04-26 10:34:39 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e59a7926a2 
							
						 
					 
					
						
						
							
							roundabout for segregated entry roads  
						
						
						
					 
					
						2016-04-26 01:01:09 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							7b32d3184c 
							
						 
					 
					
						
						
							
							remove unused instruction types  
						
						
						
					 
					
						2016-04-25 19:24:59 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d770c35245 
							
						 
					 
					
						
						
							
							refactor guidance  
						
						
						
					 
					
						2016-04-25 19:24:59 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							e04baef3bb 
							
						 
					 
					
						
						
							
							Do not copy geometries in loop  
						
						
						
					 
					
						2016-04-25 12:12:32 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
						
						
							
						
						
							dac2f93383 
							
						 
					 
					
						
						
							
							Refactoring of parameter garammars  
						
						... 
						
						
						
						* signature changed from void() to void(engine::api::Parameters&)
* performance increase due to use "static const GrammarT" and avoid
  construction and destruction of grammars during parsing
* removed code duplication in inherited grammars
* rule unlimited changed to qi::lit
* added rule size_t_
* parser accepts "&geometries=" and "&overview=" and fails at "foo"
  instead of "&geometries=foo" and &overview=foo
* added expectations checks for derived grammars
* changed rules qi::list(".") to character rules '.' 
						
					 
					
						2016-04-23 21:15:21 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							da6dbd2159 
							
						 
					 
					
						
						
							
							Revert "Removes summary from legs property"  
						
						... 
						
						
						
						This adds the summary back to the RouteLeg, it now depends on if
`steps=true`.
This reverts commit eaf9993dd9 
						
					 
					
						2016-04-21 22:39:16 +02:00 
						 
				 
			
				
					
						
							
							
								karenzshea 
							
						 
					 
					
						
						
						
						
							
						
						
							58c13d2c07 
							
						 
					 
					
						
						
							
							remove movable bridge travel mode references  
						
						
						
					 
					
						2016-04-19 12:59:33 -04:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							6979763292 
							
						 
					 
					
						
						
							
							Refactor the vector tile constants  
						
						
						
					 
					
						2016-04-15 14:48:21 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							1c1f407f67 
							
						 
					 
					
						
						
							
							Fix formatting.  
						
						
						
					 
					
						2016-04-14 14:39:20 -07:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							8fb631417b 
							
						 
					 
					
						
						
							
							Abort processing if there are no snappable edges remaining.  
						
						
						
					 
					
						2016-04-14 13:07:23 -07:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							589767fe6d 
							
						 
					 
					
						
						
							
							uturns -> continue_straight  
						
						
						
					 
					
						2016-04-12 23:16:02 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							2f7b02c96f 
							
						 
					 
					
						
						
							
							Fix std::min  
						
						
						
					 
					
						2016-04-12 18:11:08 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							1554916639 
							
						 
					 
					
						
						
							
							Include <iterator> for back_inserter  
						
						
						
					 
					
						2016-04-12 18:11:08 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							dbd4ecf89b 
							
						 
					 
					
						
						
							
							Remove boost::irange  
						
						
						
					 
					
						2016-04-12 18:11:08 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							7416653874 
							
						 
					 
					
						
						
							
							Force correct type deduction for irange on windows  
						
						
						
					 
					
						2016-04-12 18:11:08 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							5dff83c6e9 
							
						 
					 
					
						
						
							
							Report progress for gennerating edge expanded edges in the edge based graph factory  
						
						
						
					 
					
						2016-04-12 12:16:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							43725bae89 
							
						 
					 
					
						
						
							
							Fix Radius Calculation for points collinear in latidue  
						
						
						
					 
					
						2016-04-12 11:25:59 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							5052c4ae3a 
							
						 
					 
					
						
						
							
							Move projection function into own header and inline  
						
						
						
					 
					
						2016-04-09 17:31:36 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							4886d46d91 
							
						 
					 
					
						
						
							
							Use DouglasPeucker with squaredEuclideanDistance  
						
						
						
					 
					
						2016-04-09 17:26:27 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							68ee4eab61 
							
						 
					 
					
						
						
							
							Switch squaredEuclideanDistance to uint64_t  
						
						
						
					 
					
						2016-04-09 01:38:22 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							fa6d4ac0bc 
							
						 
					 
					
						
						
							
							Add faster version of WGS84 -> Web Mercator  
						
						
						
					 
					
						2016-04-09 01:38:22 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							8a2bd09fd0 
							
						 
					 
					
						
						
							
							Adapts all grammars to use expectation parsers without backtracking.  
						
						... 
						
						
						
						Sequence parsers using `>>` allow for backtracking, expectation parsers
`>` do not. This allows us to properly report the position where parsing
failed, by catching the expectation_failure exception and adapting the
iterator ourselves.
References:
- https://github.com/Project-OSRM/osrm-backend/pull/2188 
- https://github.com/Project-OSRM/osrm-backend/issues/2168 
- http://www.boost.org/doc/libs/1_55_0/libs/spirit/doc/html/spirit/qi/reference/operator/expect.html  
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							996a27dbd1 
							
						 
					 
					
						
						
							
							Report position where parsing failed;  resolves   #2168  
						
						
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Michael Krasnyk 
							
						 
					 
					
						
						
						
						
							
						
						
							cae06ba2c1 
							
						 
					 
					
						
						
							
							Fix type "osrm::server::api::ParsedURL ()"  
						
						
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							221f70ac7b 
							
						 
					 
					
						
						
							
							Synthesize parser only once from DSL: static storage duration  
						
						
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							d3dbca374d 
							
						 
					 
					
						
						
							
							Do not modify the end iterator for parameter parsing, too  
						
						
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							6f0b6a8158 
							
						 
					 
					
						
						
							
							Re-factor URL parser: make grammar stateless  
						
						
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							d27025003a 
							
						 
					 
					
						
						
							
							Do not move from references in grammar handlers  
						
						
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							66eb90d9d0 
							
						 
					 
					
						
						
							
							Adapts move(*optional) to *move(optional) to get rvalue operator* overload  
						
						
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							6a81a9d191 
							
						 
					 
					
						
						
							
							Extra semicolon  
						
						
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							64cb134113 
							
						 
					 
					
						
						
							
							Align Spirit rules for URL parser  
						
						
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							891ff7dd80 
							
						 
					 
					
						
						
							
							Do not modify the end iterator, make const  
						
						
						
					 
					
						2016-04-08 21:03:50 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							fcbf527ba5 
							
						 
					 
					
						
						
							
							refactor of turn analysis into turn handlers  
						
						
						
					 
					
						2016-04-08 18:14:43 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							dfd180a292 
							
						 
					 
					
						
						
							
							fixing unit tests  
						
						
						
					 
					
						2016-04-08 11:21:14 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							fa0a5040e5 
							
						 
					 
					
						
						
							
							adding tests for guidance  
						
						
						
					 
					
						2016-04-08 10:43:22 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							dea12779cf 
							
						 
					 
					
						
						
							
							basename -> filename,  fixes   #2027  
						
						
						
					 
					
						2016-04-08 01:50:25 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							4d864b8267 
							
						 
					 
					
						
						
							
							fix warnings in compilation on clang  
						
						
						
					 
					
						2016-04-06 18:44:42 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							a516245c94 
							
						 
					 
					
						
						
							
							Modularize benchmarks subproject  
						
						
						
					 
					
						2016-04-06 18:36:08 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							f2443c64db 
							
						 
					 
					
						
						
							
							adds distinction between rotaries/rounabouts  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							eaf9993dd9 
							
						 
					 
					
						
						
							
							Removes summary from legs property  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							849baea544 
							
						 
					 
					
						
						
							
							Fix uturn detection in match plugin  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							59f5e364c1 
							
						 
					 
					
						
						
							
							Suppress pedantic ISO C++ warning about argv[0] size check  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							9b52dd8bf7 
							
						 
					 
					
						
						
							
							Remove leftover debug output.  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							2cf19010e3 
							
						 
					 
					
						
						
							
							Fix context returned in JSON error (had null bytes).  
						
						... 
						
						
						
						Update status test cases to match new API. 
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							89d56e1cd1 
							
						 
					 
					
						
						
							
							fix duration of direct connection  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							ef1fb08723 
							
						 
					 
					
						
						
							
							fix cucumber tests and issues  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							f45daad6ca 
							
						 
					 
					
						
						
							
							Fix code of InternalError  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							97722adbfa 
							
						 
					 
					
						
						
							
							Adjust threshold when trimming steps (needs to be bigger).  
						
						... 
						
						
						
						Also, when trimming the last step, we need to copy name values from the new next-to-last step, otherwise
we can still end up with an arrive step on a different road to the last maneuver. 
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							2c4ba90abb 
							
						 
					 
					
						
						
							
							Remove leftover hello_world and timestamp plugins  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							30a9bc3179 
							
						 
					 
					
						
						
							
							Fix mathematical assumptions in StaticRTree  
						
						... 
						
						
						
						StaticRTree now uses projected coordinates internally. That means we can
use a euclidean distance measure (squared distance) for sorting the
query queue. 
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							f9350a276c 
							
						 
					 
					
						
						
							
							fix same segment routes  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							cd9addf0e2 
							
						 
					 
					
						
						
							
							Removed debug code  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							2219b6507c 
							
						 
					 
					
						
						
							
							correctly handle roundabouts in a wide set of special cases  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							09931d7ad8 
							
						 
					 
					
						
						
							
							Removes server-side support for POST requests.  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
						
						
							
						
						
							49e2cb6c36 
							
						 
					 
					
						
						
							
							Fix raster_source + tests  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							5c8b7542d0 
							
						 
					 
					
						
						
							
							Fix staticrtree benchmark  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								karenzshea 
							
						 
					 
					
						
						
						
						
							
						
						
							c726001a0e 
							
						 
					 
					
						
						
							
							console error which files are missing for osrm-routed  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
						
						
							
						
						
							e9be9dd8d0 
							
						 
					 
					
						
						
							
							Bind use_turn_restrictions to ProfileProperties in scripting environment  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							5e6d638c6f 
							
						 
					 
					
						
						
							
							perform zero-length segment removal  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							cc09df1961 
							
						 
					 
					
						
						
							
							Use correct perpendicular distance measure when simplifying line geometries.  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							fda4656630 
							
						 
					 
					
						
						
							
							Implement re-enabling of PhantomNode directions after bearing filtering  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							5829bbe22d 
							
						 
					 
					
						
						
							
							Move Centroid to coordinate_calculation  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							f4cfde719d 
							
						 
					 
					
						
						
							
							Round integers to remove fake precision  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							51d153a5f7 
							
						 
					 
					
						
						
							
							Fixes integer overflow due to fixed / floating mismatch in coordinate interpolation  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							61c9c69718 
							
						 
					 
					
						
						
							
							Make unit tests compile again after rebasing  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							5beaab97da 
							
						 
					 
					
						
						
							
							Make Tile plugin validate its parameters,  fixes   #2109  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							843a4b8eae 
							
						 
					 
					
						
						
							
							Make Route plugin validate its parameters  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							9ec46222e3 
							
						 
					 
					
						
						
							
							Makes Nearest plugin adhere to v5 spec for precondition violations,  fixes   #2108  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							224c66e0dc 
							
						 
					 
					
						
						
							
							Makes table plugin adhere to v5 spec for limit violations,  fixes   #2100  
						
						
						
					 
					
						2016-04-05 22:59:14 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							1486098065 
							
						 
					 
					
						
						
							
							Adapts all unit tests and benchmarks to compile under v5 again  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							3c5f6bd8ac 
							
						 
					 
					
						
						
							
							Makes hint Equatable and Printable for tests  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							b6b59e5c08 
							
						 
					 
					
						
						
							
							Make Hint encoding safe for passing them as GET parameter in URLs  
						
						... 
						
						
						
						Thanks @TheMarex for flagging this! 
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							a7aa27c87c 
							
						 
					 
					
						
						
							
							Completely re-write base64 logic, make API suck less in doing so  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							f948380fa2 
							
						 
					 
					
						
						
							
							Object Encoder -> Base64, kill false dependencies while doing so  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							79cf1880fc 
							
						 
					 
					
						
						
							
							Adapts Hint encoding and decoding to new fixed data facade  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							ec1a84c57a 
							
						 
					 
					
						
						
							
							Always safe the absolute path to .fileIndex  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Aleksei Potov 
							
						 
					 
					
						
						
						
						
							
						
						
							419cf9e2b0 
							
						 
					 
					
						
						
							
							compilation error on debian jessie with boost 1.54  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							95c78eac9c 
							
						 
					 
					
						
						
							
							Fix boost geometry constructor.  
						
						... 
						
						
						
						Versions older than 1.58 don't support the initializer-list form. 
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							51a4cf5e46 
							
						 
					 
					
						
						
							
							syncronize geometry and steps after post-processing  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							2472c5d6a1 
							
						 
					 
					
						
						
							
							added list of intersections to the step-maneuver, not in api so far  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							59fbb289b9 
							
						 
					 
					
						
						
							
							fix initial maneuvers  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							e82bc20422 
							
						 
					 
					
						
						
							
							post processing moved onto route-steps, looses sync with geometry segments  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							1e753e98ce 
							
						 
					 
					
						
						
							
							Simplify the timestamp handling  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							39b3cab1da 
							
						 
					 
					
						
						
							
							Check all streams  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							87fbfc6475 
							
						 
					 
					
						
						
							
							std::string -> boost::filesystem::path  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							cb8bfa027e 
							
						 
					 
					
						
						
							
							Only allow to specify the common base path  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							38db495879 
							
						 
					 
					
						
						
							
							Address PR comments  
						
						... 
						
						
						
						Renamed lua_function_exists and removes unused print function 
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							a781c36876 
							
						 
					 
					
						
						
							
							Use uturn default from .properties file  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							71c336d9dd 
							
						 
					 
					
						
						
							
							Adds .properties file to osrm-extract ouput  
						
						... 
						
						
						
						This file contains global properties set by the lua
profile, such as enabling uturns at vias and penalties.
This file will be consumed by the server. 
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							e10e8910f3 
							
						 
					 
					
						
						
							
							Use global uturns parameter.  
						
						... 
						
						
						
						Instead of previously per-via settings like uturns=true;false;true;; it
now only supports a global setting uturns=true. 
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							253496c7ee 
							
						 
					 
					
						
						
							
							improves consistency of fork handling  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							663a7c52c7 
							
						 
					 
					
						
						
							
							Properly clip lines so that we don't get crazy coords with long linestrings (relative to tile coords)  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							4e8ccd6f7d 
							
						 
					 
					
						
						
							
							Include edge duration information.  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							879ccfc8c2 
							
						 
					 
					
						
						
							
							Implement viewport code to fix simplification  
						
						... 
						
						
						
						This fixes  #2083  
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							50738f8ce0 
							
						 
					 
					
						
						
							
							Consolidate math functions  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							5c01878542 
							
						 
					 
					
						
						
							
							get_name_for_id -> GetNameForID  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							7bab34eeda 
							
						 
					 
					
						
						
							
							fix division by zero  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							0cc23dec6f 
							
						 
					 
					
						
						
							
							restructured to only return valid turns to the outside + cleanup  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							71c0d5253d 
							
						 
					 
					
						
						
							
							less new names, forks consider road classes, api clean-up  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							a674028c37 
							
						 
					 
					
						
						
							
							implement basic turn handling  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							4309ccfa02 
							
						 
					 
					
						
						
							
							Don't sum up durations of merged steps since we do that in a different place now  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							8218d5a47e 
							
						 
					 
					
						
						
							
							Limit zoomlevel to 18  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							4bbb587280 
							
						 
					 
					
						
						
							
							Fix shared memory  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							11b356e55f 
							
						 
					 
					
						
						
							
							Enables the use of multiple segment-speed-files on the osrm-contract  
						
						... 
						
						
						
						command line, and exposes the file name used for each edge in the debug
tiles. 
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							80f008684d 
							
						 
					 
					
						
						
							
							Fix ingestion fixed duration values from UnpackPath  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							ac9a4d1e0d 
							
						 
					 
					
						
						
							
							fixes a broken assertion  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							d7dd6acd9d 
							
						 
					 
					
						
						
							
							fix merging of turn instructions  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							b5739cb3d8 
							
						 
					 
					
						
						
							
							Include reverse edges again  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							ea93d56ca8 
							
						 
					 
					
						
						
							
							Formating and logging changes for turn classification  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							10097a946f 
							
						 
					 
					
						
						
							
							Handle case of dead-end edges by inserting an invalid turn  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							c439594403 
							
						 
					 
					
						
						
							
							report depart/arrive in addition to waypoint  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							0b3289ea37 
							
						 
					 
					
						
						
							
							Remove the encoder/decoder dependecy from Hint  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							5f457bff12 
							
						 
					 
					
						
						
							
							Rename alternative -> alternatives  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							6c00ccca9a 
							
						 
					 
					
						
						
							
							Remove obsolete debug information  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							7e679ab252 
							
						 
					 
					
						
						
							
							Just return NoSegment in map matching if all candidates are empty  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							d2590f1078 
							
						 
					 
					
						
						
							
							Fix missing capitalization of error codes  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							eb3f550e26 
							
						 
					 
					
						
						
							
							encapsulated into class  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							06aa6dedab 
							
						 
					 
					
						
						
							
							improving fork handling on three-way turns  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							f769478abe 
							
						 
					 
					
						
						
							
							fix comparison for ramps on three-way turns  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							ba5f0af5a4 
							
						 
					 
					
						
						
							
							Minor auto iterator cleanup  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							5e5f72ae57 
							
						 
					 
					
						
						
							
							Don't pass down unsnapped coordinates. All information is already there  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							f36037ebf2 
							
						 
					 
					
						
						
							
							Fix camMergeTrivially  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							0c276ac71e 
							
						 
					 
					
						
						
							
							fixes roundabout counting  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							9e95d1f1fd 
							
						 
					 
					
						
						
							
							fixes assignment for basic turn types / invalid ramp assignment  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							e00bda37a5 
							
						 
					 
					
						
						
							
							Add edge id assertions  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							e7ea5f500d 
							
						 
					 
					
						
						
							
							Don't pass shared_ptr down to functions  
						
						... 
						
						
						
						"Don’t pass a smart pointer as a function parameter unless you want to
use or manipulate the smart pointer itself, such as to share or transfer
ownership."
Source:
http://herbsutter.com/2013/06/05/gotw-91-solution-smart-pointer-parameters/  
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							aa4b786ab3 
							
						 
					 
					
						
						
							
							Hide functional road classification based on tags in implementation file  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							90add9f840 
							
						 
					 
					
						
						
							
							Moves route assembly into implementation file  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							15752335f4 
							
						 
					 
					
						
						
							
							Puts step maneuver handling into implementation file  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							3e4b48e206 
							
						 
					 
					
						
						
							
							Removes penalizing move  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							25c685527a 
							
						 
					 
					
						
						
							
							Uses static_casts for underlying type in post processing  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							fbabd137c2 
							
						 
					 
					
						
						
							
							Fix asymmetry in min/max from using -max  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							6e7cf68164 
							
						 
					 
					
						
						
							
							Adapts MakeResponse to not pass vector by pointer  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							b47a532eb4 
							
						 
					 
					
						
						
							
							Fixes multi-line comment  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							7c30ea32bf 
							
						 
					 
					
						
						
							
							Runs scripts/format.sh  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							bb06e044f5 
							
						 
					 
					
						
						
							
							Fix coodinate include and unused warnings  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							01318a08b4 
							
						 
					 
					
						
						
							
							start of four way turns  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							119487f1aa 
							
						 
					 
					
						
						
							
							improved fork handling  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							911427a361 
							
						 
					 
					
						
						
							
							Fix crash on extracting Berlin in guidance  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							58628a4bfc 
							
						 
					 
					
						
						
							
							bugfixing/classification  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							b08b360f38 
							
						 
					 
					
						
						
							
							Big Restructuring / Cleanup  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							adb8d0e845 
							
						 
					 
					
						
						
							
							starting on conflict resolution  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
						
						
							
						
						
							e0f009b3b9 
							
						 
					 
					
						
						
							
							Fixes for gcc compiling, temporary hacks to remove later  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							f1aa03c360 
							
						 
					 
					
						
						
							
							handle segregated roads (merge for turn analysis)  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							2ba417cf9f 
							
						 
					 
					
						
						
							
							structural changes, motorway handling  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							d8af074ff6 
							
						 
					 
					
						
						
							
							enter and exit roundabout feature - currently not showing turn  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							daf2bbf991 
							
						 
					 
					
						
						
							
							migrated out of edge based graph factory  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							6605f293b4 
							
						 
					 
					
						
						
							
							relative waypoint locations  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							482e18ccdb 
							
						 
					 
					
						
						
							
							handling of roundabouts (simple version)  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							ef1e0e14ec 
							
						 
					 
					
						
						
							
							advanced guidance on 5.0  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							33f083b213 
							
						 
					 
					
						
						
							
							Fix numerical problems with polyline  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							00d75ece64 
							
						 
					 
					
						
						
							
							Return NoMatch  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							58fb633df3 
							
						 
					 
					
						
						
							
							Add support for tile plugin  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							36f9366f3f 
							
						 
					 
					
						
						
							
							Preliminary integration of the tile plugin  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							70fb12b10e 
							
						 
					 
					
						
						
							
							Fixes ownership semantics and forwarding references misplacements in the JSON factory  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							86de53eb9a 
							
						 
					 
					
						
						
							
							Passes coordinates by value  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							e1616953db 
							
						 
					 
					
						
						
							
							Asserts on unknown TurnInstruction  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							c1dbab50fe 
							
						 
					 
					
						
						
							
							Fixes header includes in the JSON factory  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Dane Springmeyer 
							
						 
					 
					
						
						
						
						
							
						
						
							b6bb6a92a9 
							
						 
					 
					
						
						
							
							fix compile of osrm-components  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							8eb98982f3 
							
						 
					 
					
						
						
							
							Fix travel mode passing from profiles up to the API  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							1090339331 
							
						 
					 
					
						
						
							
							Fix geometries type in steps  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							51e8318224 
							
						 
					 
					
						
						
							
							Fix behaviour of table if sources/destinations arrays are empty  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							0d38a50dba 
							
						 
					 
					
						
						
							
							Fuck. this. shit.  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							1bd67943bb 
							
						 
					 
					
						
						
							
							Fix stream operator for coordinate  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							9bb31678a6 
							
						 
					 
					
						
						
							
							Add euclideanDistance to coordinate_calculation  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							d9d4742130 
							
						 
					 
					
						
						
							
							First round of lat,lng -> lng,lat switcheroo  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							14c36bc405 
							
						 
					 
					
						
						
							
							Finish the nearest plugin  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							fcd7b05900 
							
						 
					 
					
						
						
							
							Adapt to feedback in  #519  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							8378d95588 
							
						 
					 
					
						
						
							
							Add trip plugin  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							b34f9b1795 
							
						 
					 
					
						
						
							
							Hook up map matching  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							35b098e656 
							
						 
					 
					
						
						
							
							First compiling version of map_match plugin  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							bd371a11ad 
							
						 
					 
					
						
						
							
							Enable all plugins with aStatus::Error return code fallback for not implemented ones  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							2200d0b678 
							
						 
					 
					
						
						
							
							Temporarily comment out match.cpp as to not break the build process  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							25834b89dd 
							
						 
					 
					
						
						
							
							Fix classes for service member function definitions  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							4d20dea271 
							
						 
					 
					
						
						
							
							Service skeletons for nearest, trip, match  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							c59647ad2f 
							
						 
					 
					
						
						
							
							Fix grammar constraint and enable all plugin links  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							a24de2d22a 
							
						 
					 
					
						
						
							
							Enforce parameter and grammar type to catch subtle bugs  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							f452a3025d 
							
						 
					 
					
						
						
							
							Link parameters to grammars  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							3c58eaf49f 
							
						 
					 
					
						
						
							
							Require a BaseParameters type at compile time via enable_if  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							c75b497b2e 
							
						 
					 
					
						
						
							
							Adapts Nearest plugin to new API  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							d572d77b48 
							
						 
					 
					
						
						
							
							Fix deleting incomplete type and make Engine moveable only  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							a4074332cc 
							
						 
					 
					
						
						
							
							Adapts publicly facing new API  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							b0863d8628 
							
						 
					 
					
						
						
							
							Initial non-building match plugin  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Lauren Budorick 
							
						 
					 
					
						
						
						
						
							
						
						
							c38a6d74dd 
							
						 
					 
					
						
						
							
							Include numeric in assemble_overview.cpp (needed on OSX for std::accumulate)  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							277829c280 
							
						 
					 
					
						
						
							
							Add table service  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							c127aaae6b 
							
						 
					 
					
						
						
							
							Add table API  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							64e5ebb55f 
							
						 
					 
					
						
						
							
							Fix parameter parsing tests  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							83addd6bba 
							
						 
					 
					
						
						
							
							Fix table plugin  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							d87a19b2f9 
							
						 
					 
					
						
						
							
							First take at distance table API re-write  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							f3e72623e9 
							
						 
					 
					
						
						
							
							Add viaroute suport for new API  
						
						
						
					 
					
						2016-04-05 22:58:32 +02:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							c70d138eb9 
							
						 
					 
					
						
						
							
							Spelling: Hierachy vs Hierarchy  
						
						
						
					 
					
						2016-04-04 13:58:55 +02:00 
						 
				 
			
				
					
						
							
							
								bergwerkgis 
							
						 
					 
					
						
						
						
						
							
						
						
							d0636a9f6d 
							
						 
					 
					
						
						
							
							make AppVeyor work again  
						
						
						
					 
					
						2016-03-31 16:49:30 +02:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							21245273b4 
							
						 
					 
					
						
						
							
							Also exclude the compressed flag from the data format  
						
						
						
					 
					
						2016-03-24 21:24:08 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							8d7821c84e 
							
						 
					 
					
						
						
							
							Remove geometry indicator  
						
						
						
					 
					
						2016-03-24 21:24:08 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							c78dff9a15 
							
						 
					 
					
						
						
							
							Write out unsigned with a check for edge counter overflow  
						
						
						
					 
					
						2016-03-19 00:27:55 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							25fea558ba 
							
						 
					 
					
						
						
							
							Fixes the edge-based-graph factory's edge counter serialization.  
						
						... 
						
						
						
						The counter for original edges is of type `std::size_t`, but we
serialized `sizeof(unsigned)` number of bytes out to the `.osrm.edges`
file.
We should probably check all writes (analogous for reads) and make the
count parameter dependent on `sizeof(variable)`.
    ag '\.write\((.*), sizeof\((.*)\)\);' 
						
					 
					
						2016-03-19 00:27:55 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							a6aa0a4cb0 
							
						 
					 
					
						
						
							
							Adapts routed to always print port and ip it listens on,  fixed   #2097  
						
						
						
					 
					
						2016-03-16 11:21:20 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							a013da860e 
							
						 
					 
					
						
						
							
							Fixes unneeded includes in contractor header and self-include  
						
						
						
					 
					
						2016-03-15 10:44:33 +01:00 
						 
				 
			
				
					
						
							
							
								akaiser 
							
						 
					 
					
						
						
						
						
							
						
						
							2cf8309987 
							
						 
					 
					
						
						
							
							Bugfix: set initial uturn indicators  
						
						
						
					 
					
						2016-03-14 17:14:01 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							ac0279aa83 
							
						 
					 
					
						
						
							
							RAII for auto-closing file streams  
						
						... 
						
						
						
						Small fixes I didn't want to include in unrelated PRs.
There are a few left in `storage.cpp` but since it's a single function
in 600 lines of code, I didn't want to touch the mess. The others are
safe to remove, cucumber and test run on Finland gives 👍 . 
						
					 
					
						2016-03-09 17:46:02 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							ae4161b780 
							
						 
					 
					
						
						
							
							Fix extraction in case of ways referencing invalid node ids  
						
						
						
					 
					
						2016-03-08 20:59:11 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							13378a4b55 
							
						 
					 
					
						
						
							
							Only attempt to return PBF if the call to the tile plugin actually returned PBF data.  This may occur if bad parameters are passed (e.g. zoom level is < 12))  
						
						
						
					 
					
						2016-03-04 17:49:20 -08:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							ac6218eef2 
							
						 
					 
					
						
						
							
							Simplify EBGF code  
						
						
						
					 
					
						2016-03-04 16:37:25 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							a98cc51ac2 
							
						 
					 
					
						
						
							
							Fix up some PR comments  
						
						
						
					 
					
						2016-03-04 16:13:30 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							e595bdb20a 
							
						 
					 
					
						
						
							
							More cleanup.  
						
						
						
					 
					
						2016-03-03 19:28:48 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							9bd2446901 
							
						 
					 
					
						
						
							
							Cleanup.  
						
						
						
					 
					
						2016-03-03 19:27:36 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							27babfec3d 
							
						 
					 
					
						
						
							
							Add the uncompressible edges to the compressed edge container during the graph compressor run, rather than in the EdgeBasedGraphFactory.  This keeps the logic a lot simpler to follow, although it's not quite as fast.  
						
						
						
					 
					
						2016-03-03 18:48:39 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							017ff53702 
							
						 
					 
					
						
						
							
							Code review updates.  
						
						
						
					 
					
						2016-03-03 13:25:01 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							49441fe204 
							
						 
					 
					
						
						
							
							Make forward/reverse weight/offset calculated at query time,  
						
						... 
						
						
						
						rather than being cached in the StaticRTree.  This means we
can freely apply traffic data and not have stale values lying
around.  It reduces the size of the RTree on disk, at the expense
of some additional data in RAM. 
						
					 
					
						2016-03-03 10:49:12 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							53542abbb7 
							
						 
					 
					
						
						
							
							Disable compression across traffic lights.  Previously, we merged the traffic light penalty into the edge weight.  When later considering traffic data, we need to be able to update just the edge weight, and it was impossible to extricate the traffic penalty.  This increases the number of edge-based-nodes a little bit, but some quick tests show it should only be about 0.1% overall (only affects traffic signals on edges with no intersections (i.e. degree=2))  
						
						
						
					 
					
						2016-03-02 18:00:31 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							fc908d4687 
							
						 
					 
					
						
						
							
							Fix naming of variable so it's a lot less confusing.  
						
						
						
					 
					
						2016-03-02 18:00:31 -08:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							0eaa393065 
							
						 
					 
					
						
						
							
							Limit tile zoomlevel to 12+  
						
						
						
					 
					
						2016-03-02 19:59:49 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							aeee565115 
							
						 
					 
					
						
						
							
							Formats all the files we touch..  
						
						
						
					 
					
						2016-03-01 23:51:25 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							22bf0ead18 
							
						 
					 
					
						
						
							
							We don't need this header.  
						
						
						
					 
					
						2016-03-01 23:51:25 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							b9dd6369d4 
							
						 
					 
					
						
						
							
							Remove draft tiler tool, we moved everything into  
						
						
						
					 
					
						2016-03-01 23:51:25 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							3d6c0ac512 
							
						 
					 
					
						
						
							
							Remove some commented out code that's not used any more.  
						
						
						
					 
					
						2016-03-01 23:51:25 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							56e35e8ef2 
							
						 
					 
					
						
						
							
							Remove GeoJSON based debugging output, we can now generate vector tiles with roughly the same data on-the-fly.  
						
						
						
					 
					
						2016-03-01 23:51:25 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							3869ab6345 
							
						 
					 
					
						
						
							
							Use the correct type when pulling object from variant  
						
						
						
					 
					
						2016-03-01 23:51:25 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							5dc7b79bb6 
							
						 
					 
					
						
						
							
							Implements a vector tileserver so you can see what's going on inside  
						
						... 
						
						
						
						OSRM. 
						
					 
					
						2016-03-01 23:51:25 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							a0b4fcc05a 
							
						 
					 
					
						
						
							
							Remove last bits of GPX support code  
						
						
						
					 
					
						2016-03-01 23:44:07 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							51ae14ec23 
							
						 
					 
					
						
						
							
							Extra ;  
						
						
						
					 
					
						2016-03-01 16:43:34 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							da88cb6a43 
							
						 
					 
					
						
						
							
							Extractor comments wrt. osrm-contract  
						
						
						
					 
					
						2016-03-01 16:43:34 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							96a5e594b3 
							
						 
					 
					
						
						
							
							Removes profiles from osrm-prepare, only needed in osrm-extract.  Fixes   #1950 .  
						
						
						
					 
					
						2016-03-01 16:43:34 +01:00 
						 
				 
			
				
					
						
							
							
								bergwerkgis 
							
						 
					 
					
						
						
						
						
							
						
						
							d38575a011 
							
						 
					 
					
						
						
							
							include lock_types.hpp  
						
						
						
					 
					
						2016-02-17 22:54:45 +01:00 
						 
				 
			
				
					
						
							
							
								karenzshea 
							
						 
					 
					
						
						
						
						
							
						
						
							6ac3d902c9 
							
						 
					 
					
						
						
							
							update help output test  
						
						
						
					 
					
						2016-02-16 18:43:06 +01:00 
						 
				 
			
				
					
						
							
							
								karenzshea 
							
						 
					 
					
						
						
						
						
							
						
						
							3beb8c825b 
							
						 
					 
					
						
						
							
							cf  
						
						
						
					 
					
						2016-02-16 18:43:06 +01:00 
						 
				 
			
				
					
						
							
							
								karenzshea 
							
						 
					 
					
						
						
						
						
							
						
						
							b80e96547e 
							
						 
					 
					
						
						
							
							remove ini parsing  
						
						
						
					 
					
						2016-02-16 18:43:06 +01:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							2679c1cf0a 
							
						 
					 
					
						
						
							
							correct handling of travel modes  
						
						
						
					 
					
						2016-02-16 01:35:04 +01:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							f14352f494 
							
						 
					 
					
						
						
							
							modify turn angles and instructions  
						
						
						
					 
					
						2016-02-15 20:13:55 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							4b8c0ac143 
							
						 
					 
					
						
						
							
							Revert "Folds json_* utilities into json subfolder and adapts includes"  
						
						... 
						
						
						
						This reverts commit cd039c69c0a92a35889e3c875b8eb53cf07377bb. 
						
					 
					
						2016-02-12 15:46:24 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							ec01c2a119 
							
						 
					 
					
						
						
							
							Folds json_* utilities into json subfolder and adapts includes  
						
						
						
					 
					
						2016-02-12 15:46:24 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							ef171f3acd 
							
						 
					 
					
						
						
							
							Properly use typed math constants instead of impl. specific hacks  
						
						... 
						
						
						
						PI is not in the stdlib, neither is 1/pi, pi*2 and so on. Instead
of relying on implementations providing these, use properly typed
math constants.
Main benefits:
- portable and
- returns constexpr, for compile-time computation
References:
- http://www.boost.org/doc/libs/1_60_0/libs/math/doc/html/math_toolkit/constants_intro.html 
- http://www.boost.org/doc/libs/1_60_0/libs/math/doc/html/math_toolkit/constants.html  
						
					 
					
						2016-02-12 15:46:24 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							64b36807d3 
							
						 
					 
					
						
						
							
							Transforms osrm_exception to exception  
						
						
						
					 
					
						2016-02-12 15:46:24 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							5de8f1803c 
							
						 
					 
					
						
						
							
							Folds mercator projections into coordinate_calculation  
						
						
						
					 
					
						2016-02-12 15:46:24 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							d1c4a26791 
							
						 
					 
					
						
						
							
							Remove .restriction reference  
						
						
						
					 
					
						2016-02-11 19:19:28 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							bb06bfbbd7 
							
						 
					 
					
						
						
							
							Same undefined behavior from shifting into the sign bit in Storage  
						
						
						
					 
					
						2016-02-08 11:47:44 -08:00 
						 
				 
			
				
					
						
							
							
								Bas Couwenberg 
							
						 
					 
					
						
						
						
						
							
						
						
							5e15bceaae 
							
						 
					 
					
						
						
							
							Fix 'egdes' typo, replace with 'edges'.  
						
						
						
					 
					
						2016-02-07 02:59:44 +01:00 
						 
				 
			
				
					
						
							
							
								karenzshea 
							
						 
					 
					
						
						
						
						
							
						
						
							f5c12ec433 
							
						 
					 
					
						
						
							
							comments  
						
						
						
					 
					
						2016-01-29 23:49:09 +01:00 
						 
				 
			
				
					
						
							
							
								karenzshea 
							
						 
					 
					
						
						
						
						
							
						
						
							262cdd7bc0 
							
						 
					 
					
						
						
							
							move tribool obj into request_parser  
						
						
						
					 
					
						2016-01-29 23:49:09 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							a48f02e0da 
							
						 
					 
					
						
						
							
							Takes care of proper special member generation globally,  fixes   #1689  
						
						... 
						
						
						
						Phew, a lot of classes were affected by this. The rationale for the
changes are as follows:
- When a type X declares any constructor, the default constructor is
  not declared, so there is no need for X() = delete there. In fact,
  there is brutal difference between those two: deleted members
  participate in overload resolution, but not-declared members do not!
- When a type X wants to be non-copyable (e.g. to be only movable, like
  threads, unique_ptrs, and so on), you can either do it by inheriting
  from boost::noncopyable (the old way), or better declare both (!) the
  copy constructor _and_ the copy assignment operator as deleted:
      X(X const&) = delete;
      X& operator=(X const&) = delete;
  We had tons of types with deleted copy constructors that were lacking
  a corresponding deleted copy assignment operator, making them still
  copyable and you wouldn't even notice (read: scary)!
References:
- http://accu.org/content/conf2014/Howard_Hinnant_Accu_2014.pdf 
- http://www.boost.org/doc/libs/master/libs/core/doc/html/core/noncopyable.html 
Note: I know, I'm quoting Hinnant's extraordinary slides a lot, but
getting the sematic right here is so incredibly important. 
						
					 
					
						2016-01-27 17:25:30 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							d189339495 
							
						 
					 
					
						
						
							
							Makes the extractor no longer depend on the crc32 computation  
						
						
						
					 
					
						2016-01-27 17:18:04 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							d9c281cd7c 
							
						 
					 
					
						
						
							
							Remove boost fusion dependency in RouteParameters  
						
						
						
					 
					
						2016-01-26 22:57:02 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							38e8a90f4e 
							
						 
					 
					
						
						
							
							Make HilbertCode a free standing function  
						
						
						
					 
					
						2016-01-26 22:57:02 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							7a115e93c0 
							
						 
					 
					
						
						
							
							Removes check-hsgr  
						
						
						
					 
					
						2016-01-26 22:57:02 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							d391df52ba 
							
						 
					 
					
						
						
							
							Be kind to the optimizer, pass coordinates by value (just two ints)  
						
						
						
					 
					
						2016-01-26 22:57:02 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							46fc6f8da4 
							
						 
					 
					
						
						
							
							Collapse computeAngle into coordinate calculation  
						
						
						
					 
					
						2016-01-26 22:57:02 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							0fcca04150 
							
						 
					 
					
						
						
							
							TU-local STXXL comparator for OSMNodeIDs, needs {min,max}_value  
						
						... 
						
						
						
						Can not use std::less<>{} because of this. 
						
					 
					
						2016-01-26 22:57:02 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							54a9173107 
							
						 
					 
					
						
						
							
							Make public RouteParameters header no longer depend on Spirit  
						
						... 
						
						
						
						And includes the optional header that was transitively included by the
spirit header before. Hopefully this will speed up compile times, as the
RouteParameters header is used in a lot of translation units. 
						
					 
					
						2016-01-26 22:57:02 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							04e26ba6b8 
							
						 
					 
					
						
						
							
							Adds missing cstdlib header for std::llabs  
						
						
						
					 
					
						2016-01-26 17:54:08 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							0fbdd57835 
							
						 
					 
					
						
						
							
							Quickfixes polyline encoder's undefined behavior via left-shifting negative numbers  
						
						
						
					 
					
						2016-01-26 17:54:08 +01:00 
						 
				 
			
				
					
						
							
							
								Mathias Gug 
							
						 
					 
					
						
						
						
						
							
						
						
							40a3008318 
							
						 
					 
					
						
						
							
							Send the Connection: close response header  
						
						... 
						
						
						
						so that proxy server don't try to reuse the connection. Given that
osrm-routed does *not* support keepalive the Connection: close response
header should be set. 
						
					 
					
						2016-01-25 15:03:37 -08:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							502aedb33e 
							
						 
					 
					
						
						
							
							Provide a way to selectively enable assertions in release mode  
						
						... 
						
						
						
						- Throwing an assertion exception for proper stack unwinding, making
  sure destructors are called
- On in Debug mode, in Release, enable via:
      cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_ASSERTIONS=ON
Current problem that I'm seeing is that some code is not catching
exceptions or worse silently swallowing them. Would like to check the
whole pipeline before merging this in. 
						
					 
					
						2016-01-21 15:37:25 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							17f8e65808 
							
						 
					 
					
						
						
							
							Fail hard if node weights are not there  
						
						
						
					 
					
						2016-01-21 06:47:34 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							439eb9da3d 
							
						 
					 
					
						
						
							
							Create public facing libraries for extractor, contractor and datastore  
						
						... 
						
						
						
						New libraries libosrm_extract, libosrm_contract, libosrm_store 
						
					 
					
						2016-01-21 06:47:34 +01:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							1c1bfd7541 
							
						 
					 
					
						
						
							
							Fix routing when start and target are on the same segment  
						
						... 
						
						
						
						Fixes issue #1864 . Given the simple set-up:
a --> b --> c
^-----------|
This would translate into an edge based graph (ab) -> (bc),
(bc) -> (ca), (ca) -> (ab).
Starting at the end of the one-way street (ab) and going to
the beginning, the query has to find a self-loop within the
graph (ab) -> (bc) -> (ca) -> (ab), as both nodes map to the
same segment (ab). 
						
					 
					
						2016-01-19 23:26:19 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel Patterson 
							
						 
					 
					
						
						
						
						
							
						
						
							e21eaa4b9e 
							
						 
					 
					
						
						
							
							Adds a shared/exclusive lock around queries and CheckAndReloadFacade.  
						
						... 
						
						
						
						Without this, it's possible for CheckAndReloadFacade to start working
while a query is still in progress, leading to undefined behaviour. 
						
					 
					
						2016-01-19 17:44:29 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							4b0e1a4b19 
							
						 
					 
					
						
						
							
							Run modernizer  
						
						
						
					 
					
						2016-01-18 16:54:30 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							22e83013e3 
							
						 
					 
					
						
						
							
							Fix uturns at dead-end streets  
						
						
						
					 
					
						2016-01-15 16:24:21 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							e7d9e42a16 
							
						 
					 
					
						
						
							
							Fix race condition in osrm-routed HTTP server  
						
						... 
						
						
						
						We had a similar issue a few month ago. Stumbled upon this by accident.
It goes like this:
- `output_buffer` is function-local
- we pass it to async_write and leave the scope
- `output_buffers` goes out of scope
- bad things happen, sometimes
The fix is to, again, put it inside the connection that handles itself
via the enable_shared_from_this idiom.
References:
- http://www.boost.org/doc/libs/1_59_0/doc/html/boost_asio/reference/async_write/overload1.html 
- https://github.com/Project-OSRM/osrm-backend/pull/1690  
						
					 
					
						2016-01-13 23:21:45 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							466251287f 
							
						 
					 
					
						
						
							
							Define compile-time constants for coordinate calculation only once  
						
						... 
						
						
						
						Closes  #1327 . 
					
						2016-01-12 19:59:02 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							c93ca02fb8 
							
						 
					 
					
						
						
							
							Rips out dead code from the container.hpp and creates for_each_pai.hpp  
						
						... 
						
						
						
						I added two TODOs that I would like to address in the future. 
						
					 
					
						2016-01-11 20:14:35 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							4813488f84 
							
						 
					 
					
						
						
							
							Split import_edge.hpp: node_based_edge.hpp, edge_based_edge.hpp  closes   #1604  
						
						
						
					 
					
						2016-01-11 20:11:44 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							fc292cc2d8 
							
						 
					 
					
						
						
							
							No need for extra translation units (for edge data structures)  
						
						
						
					 
					
						2016-01-11 20:11:44 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							f875e26fbf 
							
						 
					 
					
						
						
							
							Inline mercator transformations; no need for separate translation unit  
						
						
						
					 
					
						2016-01-11 20:10:45 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							f68247673a 
							
						 
					 
					
						
						
							
							Make ComputeAngle a free standing function  
						
						
						
					 
					
						2016-01-09 19:55:22 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							f65dd63210 
							
						 
					 
					
						
						
							
							Make TurnInstructionsClass functions free standing functions  
						
						
						
					 
					
						2016-01-09 19:55:22 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							0627c3443d 
							
						 
					 
					
						
						
							
							Make PolylineFormatter's encodedAsJSON and unencodedAsJSON free standing functions  
						
						
						
					 
					
						2016-01-09 19:55:22 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							c65dd16460 
							
						 
					 
					
						
						
							
							Make PolylineCompresser's encode and decode free standing functions  
						
						
						
					 
					
						2016-01-09 19:55:22 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							c590596dbe 
							
						 
					 
					
						
						
							
							Make DouglasPeucker a free standing function  
						
						
						
					 
					
						2016-01-09 19:55:21 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							6991a38703 
							
						 
					 
					
						
						
							
							Run clang-format  
						
						
						
					 
					
						2016-01-08 01:31:57 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							6b18e4f7e9 
							
						 
					 
					
						
						
							
							Add namespace around all files  
						
						
						
					 
					
						2016-01-08 01:30:52 +01:00 
						 
				 
			
				
					
						
							
							
								Moritz Kobitzsch 
							
						 
					 
					
						
						
						
						
							
						
						
							efd33b295a 
							
						 
					 
					
						
						
							
							Refactor guidance generation  
						
						
						
					 
					
						2016-01-07 22:51:24 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							1da1fa5a31 
							
						 
					 
					
						
						
							
							Fix naming in PhantomNode  
						
						
						
					 
					
						2016-01-05 12:41:16 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							707931125e 
							
						 
					 
					
						
						
							
							Remove unnecceary pre-define  
						
						
						
					 
					
						2016-01-05 12:06:34 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							f4e82a879b 
							
						 
					 
					
						
						
							
							Fix naming in static_rtree benchmark  
						
						
						
					 
					
						2016-01-05 12:06:34 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							4f7369ed02 
							
						 
					 
					
						
						
							
							Fix naming in FixedPointCoordinate  
						
						
						
					 
					
						2016-01-05 12:06:34 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							4312013552 
							
						 
					 
					
						
						
							
							Fix naming in coordinate_calculation  
						
						
						
					 
					
						2016-01-05 12:06:34 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							e8bc69aa01 
							
						 
					 
					
						
						
							
							Fix naming in springclean  
						
						
						
					 
					
						2016-01-05 12:06:33 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							befb667759 
							
						 
					 
					
						
						
							
							Fix naming of routed  
						
						
						
					 
					
						2016-01-05 12:06:33 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							b35254ec78 
							
						 
					 
					
						
						
							
							Fix naming in io-benchmark  
						
						
						
					 
					
						2016-01-05 12:06:33 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							9956988938 
							
						 
					 
					
						
						
							
							Fix naming in datstore  
						
						
						
					 
					
						2016-01-05 12:06:33 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							5b0e2e487a 
							
						 
					 
					
						
						
							
							Fix naming in components tool  
						
						
						
					 
					
						2016-01-05 12:06:33 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							ccd3872bf1 
							
						 
					 
					
						
						
							
							Fix naming in ScriptingEnvironment  
						
						
						
					 
					
						2016-01-05 12:06:33 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							b209952ce0 
							
						 
					 
					
						
						
							
							Fix naming of methodes for RouteParameters  
						
						
						
					 
					
						2016-01-05 12:06:33 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							028ca5c9d9 
							
						 
					 
					
						
						
							
							Apply clang-format  
						
						
						
					 
					
						2016-01-05 12:04:04 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							552cdbfe20 
							
						 
					 
					
						
						
							
							Apply clang-tidy  
						
						
						
					 
					
						2016-01-05 11:54:31 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							4ca29dd18e 
							
						 
					 
					
						
						
							
							Default initialize (i.e. zero initialize) variables to suppress -Wuninitialized false positive  
						
						
						
					 
					
						2016-01-05 11:29:25 +01:00 
						 
				 
			
				
					
						
							
							
								Daniel J. Hofmann 
							
						 
					 
					
						
						
						
						
							
						
						
							685d330ee2 
							
						 
					 
					
						
						
							
							Remove license headers from project source files; global license  
						
						
						
					 
					
						2016-01-04 19:06:32 +01:00 
						 
				 
			
				
					
						
							
							
								Mortada Mehyar 
							
						 
					 
					
						
						
						
						
							
						
						
							93a2e66704 
							
						 
					 
					
						
						
							
							use double precision calculations instead of mixing double and float  
						
						
						
					 
					
						2016-01-03 20:44:38 -08:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							97585bb26a 
							
						 
					 
					
						
						
							
							Fix include paths  
						
						
						
					 
					
						2016-01-03 18:47:50 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							d936009ea1 
							
						 
					 
					
						
						
							
							DOS -> UNIX file format  
						
						
						
					 
					
						2016-01-03 16:37:38 +01:00 
						 
				 
			
				
					
						
							
							
								Patrick Niklaus 
							
						 
					 
					
						
						
						
						
							
						
						
							bfc6c9b89d 
							
						 
					 
					
						
						
							
							Move files in src/ include/  
						
						
						
					 
					
						2016-01-03 16:37:38 +01:00