Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

/[routino]/trunk/src/osmparser.c
ViewVC logotype

Log of /trunk/src/osmparser.c

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:


Revision 306 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 23 18:42:40 2009 UTC (15 years, 4 months ago) by amb
File length: 20280 byte(s)
Diff to previous 302
Add in "steps" as a new highway type.


Revision 302 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Nov 13 19:26:18 2009 UTC (15 years, 4 months ago) by amb
File length: 20159 byte(s)
Diff to previous 299
Added in some more constants with the value ~0.


Revision 299 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 2 19:45:25 2009 UTC (15 years, 5 months ago) by amb
File length: 20152 byte(s)
Diff to previous 298
Allow the tag "paved" as well as "surface=paved".


Revision 298 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 2 19:32:06 2009 UTC (15 years, 5 months ago) by amb
File length: 19966 byte(s)
Diff to previous 297
Added the ability to set routing preferences using highway properties.
Initially the only choice is either paved or unpaved but the code has been
updated to allow any number of properties to be added.


Revision 297 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 27 18:48:53 2009 UTC (15 years, 5 months ago) by amb
File length: 18652 byte(s)
Diff to previous 296
Handle the "designation=..." tag for bridleway, byway and footpath.  (Also
change to using a macro for testing if access is allowed and now allow
"destination").


Revision 296 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 27 17:31:44 2009 UTC (15 years, 5 months ago) by amb
File length: 19193 byte(s)
Diff to previous 294
Added Moped to the list of transports (and incidentally increased the transport
data type to 16 bits and re-ordered the Way data-type in response).


Revision 294 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Oct 26 19:11:41 2009 UTC (15 years, 5 months ago) by amb
File length: 18747 byte(s)
Diff to previous 293
Re-ordered the types so that Horse comes before Bicycle.


Revision 293 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Oct 26 19:04:40 2009 UTC (15 years, 5 months ago) by amb
File length: 18747 byte(s)
Diff to previous 283
Remove the Bridleway and Footway highway types and use the Path type instead
(also re-ordered the types so that Cycleway comes before Path).


Revision 283 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sat Oct 10 16:21:19 2009 UTC (15 years, 5 months ago) by amb
File length: 18767 byte(s)
Diff to previous 277
Corrections after running with valgrind.


Revision 277 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Oct 7 18:53:19 2009 UTC (15 years, 6 months ago) by amb
File length: 18792 byte(s)
Diff to previous 262
AppendSegment adds a single segment and not a pair.


Revision 262 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 17 12:55:15 2009 UTC (15 years, 6 months ago) by amb
File length: 18460 byte(s)
Diff to previous 244
Added the slim mode to Ways as well.


Revision 244 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Aug 20 18:38:41 2009 UTC (15 years, 7 months ago) by amb
File length: 18440 byte(s)
Diff to previous 229
Fix bug with memory allocation.


Revision 229 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Jul 19 12:54:07 2009 UTC (15 years, 8 months ago) by amb
File length: 18438 byte(s)
Diff to previous 228
Store only one copy of each segment but index once for each direction.


Revision 228 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Jul 12 09:01:48 2009 UTC (15 years, 8 months ago) by amb
File length: 18770 byte(s)
Diff to previous 227
Tidy up and fix comments and include files.


Revision 227 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Sun Jul 12 08:38:12 2009 UTC (15 years, 8 months ago) by amb
File length: 18639 byte(s)
Diff to previous 219
Check all print statements and made them more consistent and/or accurate.


Revision 219 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 9 17:31:56 2009 UTC (15 years, 8 months ago) by amb
File length: 18563 byte(s)
Diff to previous 213
Change from float to double for latitude and longitude.
Store latitude and longitude as an integer type rather than float (higher precision).


Revision 213 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 2 16:33:31 2009 UTC (15 years, 9 months ago) by amb
File length: 18556 byte(s)
Diff to previous 209
Removed unused header files, change assert statements, tidy some code.


Revision 209 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jun 30 18:32:42 2009 UTC (15 years, 9 months ago) by amb
File length: 18574 byte(s)
Diff to previous 203
Remove the Segment structure from the SegmentX structure to save memory.


Revision 203 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jun 25 17:46:46 2009 UTC (15 years, 9 months ago) by amb
File length: 18451 byte(s)
Diff to previous 199
Reduce the number of ways in the output by compacting them (sharing the same
information between identical ways).


Revision 199 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 15 18:56:09 2009 UTC (15 years, 9 months ago) by amb
File length: 18429 byte(s)
Diff to previous 198
Put some of types.h into typesx.h (for extended data types).
Put some of functions.h into functionsx.h (for OSM parser).
Change included files to match.


Revision 198 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 15 18:52:54 2009 UTC (15 years, 9 months ago) by amb
File length: 18427 byte(s)
Diff to previous 196
Add a macro for converting degrees to radians and radians to degrees.


Revision 196 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 15 17:33:36 2009 UTC (15 years, 9 months ago) by amb
File length: 18409 byte(s)
Diff to previous 183
Recognise tags "vehicle" and "motor_vehicle".


Revision 183 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jun 5 16:39:11 2009 UTC (15 years, 10 months ago) by amb
File length: 17496 byte(s)
Diff to previous 166
Improve parsing of imperial units (mph, feet & inches).


Revision 166 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 30 17:29:03 2009 UTC (15 years, 11 months ago) by amb
File length: 16183 byte(s)
Diff to previous 159
First attempt at preferences for highways - uses integer arithmetic and doesn't
work well.


Revision 159 - (view) (download) (as text) (annotate) - [select for diffs]
Added Wed Apr 15 16:50:06 2009 UTC (15 years, 11 months ago) by amb
File length: 16184 byte(s)
Diff to previous 151
Fix for parsing nodes from XML (no effect on results).



This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a