Routino SVN Repository Browser

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

ViewVC logotype

Contents of /trunk/doc/USAGE.txt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1157 - (show annotations) (download)
Mon Nov 19 18:30:35 2012 UTC (12 years, 4 months ago) by amb
File MIME type: text/plain
File size: 25009 byte(s)
Do not require that --preserve must be used with --parse-only before changes can
be applied (reverses r1151 for the change to functionality but preserves the
changes to the functions that enable it).

1 Routino : Usage
2 ===============
3
4
5 There are five programs that make up this software. The first one takes
6 the planet.osm datafile from OpenStreetMap (or other source of data
7 using the same formats) and converts it into a local database. The
8 second program uses the database to determine an optimum route between
9 two points. The third program allows visualisation of the data and
10 statistics to be extracted. The fourth program allows dumping the raw
11 parsed data for test purposes and the fifth is a test program for the
12 tag transformations.
13
14 planetsplitter
15 --------------
16
17 This program reads in the OSM format XML file and splits it up to
18 create the database that is used for routing.
19
20 Usage: planetsplitter [--help]
21 [--dir=<dirname>] [--prefix=<name>]
22 [--sort-ram-size=<size>] [--sort-threads=<number>]
23 [--tmpdir=<dirname>]
24 [--tagging=<filename>]
25 [--loggable] [--logtime]
26 [--errorlog[=<name>]]
27 [--parse-only | --process-only]
28 [--append] [--preserve] [--changes]
29 [--max-iterations=<number>]
30 [--prune-none]
31 [--prune-isolated=<len>]
32 [--prune-short=<len>]
33 [--prune-straight=<len>]
34 [<filename.osm> ...]
35
36 --help
37 Prints out the help information.
38
39 --dir=<dirname>
40 Sets the directory name in which to save the results. Defaults
41 to the current directory.
42
43 --prefix=<name>
44 Sets the filename prefix for the files that are created.
45 Defaults to no prefix.
46
47 --sort-ram-size=<size>
48 Specifies the amount of RAM (in MB) to use for sorting the data.
49 If not specified then 64 MB will be used in slim mode or 256 MB
50 otherwise.
51
52 --sort-threads=<number>
53 The number of threads to use for data sorting (the sorting
54 memory is shared between the threads - too many threads and not
55 enough memory will reduce the performance).
56
57 --tmpdir=<dirname>
58 Specifies the name of the directory to store the temporary disk
59 files. If not specified then it defaults to either the value of
60 the --dir option or the current directory.
61
62 --tagging=<filename>
63 Sets the filename containing the list of tagging rules in XML
64 format for the parsing the input files. If the file doesn't
65 exist then dirname, prefix and "profiles.xml" will be combined
66 and used, if that doesn't exist then the file
67 '/usr/local/share/routino/profiles.xml' (or custom installation
68 location) will be used.
69
70 --loggable
71 Print progress messages that are suitable for logging to a file;
72 normally an incrementing counter is printed which is more
73 suitable for real-time display than logging.
74
75 --logtime
76 Print the elapsed time for each processing step.
77
78 --errorlog[=<name>]
79 Log OSM parsing and processing errors to 'error.log' or the
80 specified file name (the '--dir' and '--prefix' options are
81 applied). If the --append option is used then the existing log
82 file will be appended, otherwise a new one will be created.
83
84 --parse-only
85 Parse the input files and store the data in intermediate files
86 but don't process the data into a routing database. This option
87 must be used with the --append option for all except the first
88 file.
89
90 --process-only
91 Don't read in any files but process the existing intermediate
92 files created by using the --parse-only option.
93
94 --append
95 Parse the input file and append the result to the existing
96 intermediate files; the appended file can be either an OSM file
97 or an OSC change file.
98
99 --preserve
100 Store a set of intermediate files after parsing the OSM files,
101 sorting and removing duplicates; this allows appending an OSC
102 file and re-processing later.
103
104 --changes
105 This option indicates that the data being processed contains one
106 or more OSC (OSM changes) files, they must be applied in time
107 sequence if more than one is used. This option implies --append
108 when parsing data files and --preserve when processing data.
109
110 --max-iterations=<number>
111 The maximum number of iterations to use when generating
112 super-nodes and super-segments. Defaults to 5 which is normally
113 enough.
114
115 --prune-none
116 Disable the prune options below, they can be re-enabled by
117 adding them to the command line after this option.
118
119 --prune-isolated=<length>
120 Remove the access permissions for a transport type from small
121 disconnected groups of segments and remove the segments if they
122 nd up with no access permission (defaults to removing groups
123 under 500m).
124
125 --prune-short=<length>
126 Remove short segments (defaults to removing segments up to a
127 maximum length of 5m).
128
129 --prune-straight=<length>
130 Remove nodes in almost straight highways (defaults to removing
131 nodes up to 3m offset from a straight line).
132
133 <filename.osm> ...
134 Specifies the filename(s) to read data from, by default data is
135 read from the standard input.
136
137 Note: In version 1.4 of Routino the --transport, --not-highway and
138 --not-property options have been removed. The same functionality can be
139 achieved by editing the tagging rules file to not output unwanted data.
140
141 Note: In version 1.5 of Routino the --slim option has been removed but
142 at compilation time a separate program called planetsplitter-slim is
143 created that operates in slim mode. In slim mode the temporary files
144 and database files are read as needed rather than being mapped into
145 memory. This allows a database size greater than 2 GB on 32-bit
146 machines or usage with little or no virtual memory (e.g. some virtual
147 machines). The penalty for this is that the program takes about twice
148 as long to run.
149
150 Example usage 1:
151
152 planetsplitter --dir=data --prefix=gb great_britain.osm
153
154 This will generate the output files 'data/gb-nodes.mem',
155 'data/gb-segments.mem' and 'data/gb-ways.mem'. Multiple filenames can
156 be specified on the command line and they will all be read in, combined
157 and processed together.
158
159 Example usage 2:
160
161 planetsplitter --dir=data --prefix=gb --parse-only great_britain_part1.osm
162 planetsplitter --dir=data --prefix=gb --parse-only --append great_britain_part2.osm
163 planetsplitter --dir=data --prefix=gb --parse-only --append ...
164 planetsplitter --dir=data --prefix=gb --process-only
165
166 This will generate the same output files as the first example but
167 parsing the input files is performed separately from the data
168 processing. The first file read in must not use the --append option but
169 the later ones must.
170
171 Example usage 3:
172
173 planetsplitter --dir=data --prefix=gb --preserve great_britain_part.osm
174
175 planetsplitter --dir=data --prefix=gb --changes great_britain.osc
176
177 This will generate the same output files as the first example. The
178 first command will process the complete file and keep some intermediate
179 data for later. The second command will apply a set of changes to the
180 stored intermediate data and keep the updated intermediate files for
181 repeating this step later with more change data.
182
183 The parsing and processing can be split into multiple commands as it
184 was in example 2 with the --preserve option used with --process-only
185 for the initial OSM file(s) and the --changes option used with
186 --parse-only or --process-only for every OSC file.
187
188
189 router
190 ------
191
192 This program performs the calculation of the optimum routes using the
193 database generated by the planetsplitter program.
194
195 Usage: router [--help | --help-profile | --help-profile-xml |
196 --help-profile-json | --help-profile-perl ]
197 [--dir=<dirname>] [--prefix=<name>]
198 [--profiles=<filename>] [--translations=<filename>]
199 [--exact-nodes-only]
200 [--loggable | --quiet]
201 [--output-html]
202 [--output-gpx-track] [--output-gpx-route]
203 [--output-text] [--output-text-all]
204 [--output-none]
205 [--profile=<name>]
206 [--transport=<transport>]
207 [--shortest | --quickest]
208 --lon1=<longitude> --lat1=<latitude>
209 --lon2=<longitude> --lon2=<latitude>
210 [ ... --lon99=<longitude> --lon99=<latitude>]
211 [--heading=<bearing>]
212 [--highway-<highway>=<preference> ...]
213 [--speed-<highway>=<speed> ...]
214 [--property-<property>=<preference> ...]
215 [--oneway=(0|1)] [--turns=(0|1)]
216 [--weight=<weight>]
217 [--height=<height>] [--width=<width>] [--length=<length>]
218
219 --help
220 Prints out the help information.
221
222 --help-profile
223 Prints out the selected transport profile (type, speed limits,
224 highway preferences etc.)
225
226 --help-profile-xml
227 Prints out all the loaded profiles as an XML file in the same
228 format that can be loaded in.
229
230 --help-profile-json
231 Prints out all the loaded profiles in JavaScript Object Notation
232 (JSON) format for use in the interactive webpage.
233
234 --help-profile-perl
235 Prints out all the loaded profiles as a Perl object for use in
236 the router CGI.
237
238 --dir=<dirname>
239 Sets the directory name in which to read the local database.
240 Defaults to the current directory.
241
242 --prefix=<name>
243 Sets the filename prefix for the files in the local database.
244 Defaults to no prefix.
245
246 --profiles=<filename>
247 Sets the filename containing the list of routing profiles in XML
248 format. If the file doesn't exist then dirname, prefix and
249 "profiles.xml" will be combined and used, if that doesn't exist
250 then the file '/usr/local/share/routino/profiles.xml' (or custom
251 installation location) will be used.
252
253 --translations=<filename>
254 Sets the filename containing the list of translations in XML
255 format for the output files. If the file doesn't exist then
256 dirname, prefix and "translations.xml" will be combined and
257 used, if that doesn't exist then the file
258 '/usr/local/share/routino/translations.xml' (or custom
259 installation location) will be used.
260
261 --exact-nodes-only
262 When processing the specified latitude and longitude points only
263 select the nearest node instead of finding the nearest point
264 within a segment (quicker but less accurate unless the points
265 are already near nodes).
266
267 --loggable
268 Print progress messages that are suitable for logging to a file;
269 normally an incrementing counter is printed which is more
270 suitable for real-time display than logging.
271
272 --quiet
273 Don't generate any screen output while running (useful for
274 running in a script).
275
276 --language=<lang>
277 Select the language specified from the file of translations. If
278 this option is not given and the file exists then the first
279 language in the file will be used. If this option is not given
280 and no file exists the compiled-in default language (English)
281 will be used.
282
283 --output-html
284 --output-gpx-track
285 --output-gpx-route
286 --output-text
287 --output-text-all
288 Generate the selected output file formats (HTML, GPX track file,
289 GPX route file, plain text route and/or plain text with all
290 nodes). If no output is specified then all are generated,
291 specifying any automatically disables those not specified.
292
293 --output-none
294 Do not generate any output or read in any translations files.
295
296 --profile=<name>
297 Specifies the name of the profile to use.
298
299 --transport=<transport>
300 Select the type of transport to use, <transport> can be set to:
301
302 + foot = Foot
303 + horse = Horse
304 + wheelchair = Wheelchair
305 + bicycle = Bicycle
306 + moped = Moped (Small motorbike, limited speed)
307 + motorbike = Motorbike
308 + motorcar = Motorcar
309 + goods = Goods (Small lorry, van)
310 + hgv = HGV (Heavy Goods Vehicle - large lorry)
311 + psv = PSV (Public Service Vehicle - bus, coach)
312
313 Defaults to 'motorcar', this option also selects the default
314 profile information if the '--profile' option is not given and a
315 profile matching the transport name is found.
316
317 --shortest
318 Find the shortest route between the waypoints.
319
320 --quickest
321 Find the quickest route between the waypoints.
322
323 --lon1=<longitude>, --lat1=<latitude>
324 --lon2=<longitude>, --lat2=<latitude>
325 ... --lon99=<longitude>, --lat99=<latitude>
326 The location of the waypoints that make up the start, middle and
327 end points of the route. Up to 99 waypoints can be specified and
328 the route will pass through each of the specified ones in
329 sequence. The algorithm will use the closest node or point
330 within a segment that allows the specified traffic type.
331
332 --heading=<bearing>
333 Specifies the initial direction of travel at the start of the
334 route (from the lowest numbered waypoint) as a compass bearing
335 from 0 to 360 degrees.
336
337 --highway-<highway>=<preference>
338 Selects the percentage preference for using each particular type
339 of highway. The value of <highway> can be selected from:
340
341 + motorway = Motorway
342 + trunk = Trunk
343 + primary = Primary
344 + secondary = Secondary
345 + tertiary = Tertiary
346 + unclassified = Unclassified
347 + residential = Residential
348 + service = Service
349 + track = Track
350 + cycleway = Cycleway
351 + path = Path
352 + steps = Steps
353 + ferry = Ferry
354
355 Default value depends on the profile selected by the --transport
356 option.
357
358 --speed-<highway>=<speed>
359 Selects the speed limit in km/hour for each type of highway.
360 Default value depends on the profile selected by the --transport
361 option.
362
363 --property-<property>=<preference>
364 Selects the percentage preference for using each particular
365 highway property The value of <property> can be selected from:
366
367 + paved = Paved (suitable for normal wheels)
368 + multilane = Multiple lanes
369 + bridge = Bridge
370 + tunnel = Tunnel
371 + footroute = A route marked for foot travel
372 + bicycleroute = A route marked for bicycle travel
373
374 Default value depends on the profile selected by the --transport
375 option.
376
377 --oneway=[0|1]
378 Selects if the direction of oneway streets are to be obeyed
379 (useful to not obey them when walking). Default value depends on
380 the profile selected by the --transport option.
381
382 --turns=[0|1]
383 Selects if turn restrictions are to be obeyed (useful to not
384 obey them when walking). Default value depends on the profile
385 selected by the --transport option.
386
387 --weight=<weight>
388 Specifies the weight of the mode of transport in tonnes; ensures
389 that the weight limit on the highway is not exceeded. Default
390 value depends on the profile selected by the --transport option.
391
392 --height=<height>
393 Specifies the height of the mode of transport in metres; ensures
394 that the height limit on the highway is not exceeded. Default
395 value depends on the profile selected by the --transport option.
396
397 --width=<width>
398 Specifies the width of the mode of transport in metres; ensures
399 that the width limit on the highway is not exceeded. Default
400 value depends on the profile selected by the --transport option.
401
402 --length=<length>
403 Specifies the length of the mode of transport in metres; ensures
404 that the length limit on the highway is not exceeded. Default
405 value depends on the profile selected by the --transport option.
406
407 Note: In version 1.5 of Routino a slim option has been added and at
408 compilation time a separate program called router-slim is created that
409 operates in slim mode. In slim mode the database files are read as
410 needed rather than being mapped into memory.
411
412 The meaning of the <preference> parameter in the command line options
413 is slightly different for the highway preferences and the property
414 preferences. For the highway preference consider the choice between two
415 possible highways between the start and finish when looking for the
416 shortest route. If highway A has a preference of 100% and highway B has
417 a preference of 90% then highway A will be chosen even if it is up to
418 11% longer (100/90 = 111%). For the highway properties each highway
419 either has a particular property or not. If the preference for the
420 property is 60% then a highway with the property has a preference of
421 77% (sqrt(60%)) and one without has a preference of 63%
422 (sqrt(100-60%)). A highway with the property will be chosen even if it
423 is up to 22% longer than one without the property (77/63 = 122%). The
424 overall preference for each highway segment is the product of the
425 preference for the highway type and all of the preferences for the
426 highway properties.
427
428 Example usage (motorbike journey, scenic route, not very fast):
429
430 router --dir=data --prefix=gb --transport=motorbike --highway-motorway=0 \
431 --highway-trunk=0 --speed-primary=80 --speed-secondary=80 --quickest
432
433 This will use the files 'data/gb-nodes.mem', 'data/gb-segments.mem' and
434 'data/gb-ways.mem' to find the quickest route by motorbike not using
435 motorways or trunk roads and not exceeding 80 km/hr.
436
437
438 filedumper
439 ----------
440
441 This program is used to extract statistics from the database, extract
442 particular information for visualisation purposes or for dumping the
443 database contents.
444
445 Usage: filedumper [--help]
446 [--dir=<dirname>] [--prefix=<name>]
447 [--statistics]
448 [--visualiser --latmin=<latmin> --latmax=<latmax>
449 --lonmin=<lonmin> --lonmax=<lonmax>
450 --data=<data-type>]
451 [--dump [--node=<node> ...]
452 [--segment=<segment> ...]
453 [--way=<way> ...]
454 [--turn-relation=<relation> ...]]
455 [--dump-osm [--no-super]
456 [--latmin=<latmin> --latmax=<latmax>
457 --lonmin=<lonmin> --lonmax=<lonmax>]]
458
459 --help
460 Prints out the help information.
461
462 --dir=<dirname>
463 Sets the directory name in which to read the local database.
464 Defaults to the current directory.
465
466 --prefix=<name>
467 Sets the filename prefix for the files in the local database.
468
469 --statistics
470 Prints out statistics about the database files.
471
472 --visualiser
473 Selects a data visualiser mode which will output a set of data
474 according to the other parameters below.
475
476 --latmin=<latmin> --latmax=<latmax>
477 The range of latitudes to print the data for.
478
479 --lonmin=<lonmin> --lonmax=<lonmax>
480 The range of longitudes to print the data for.
481
482 --data=<data-type>
483 The type of data to output, <data-type> can be selected
484 from:
485
486 o junctions = segment count at each junction.
487 o super = super-node and super-segments.
488 o oneway = oneway segments.
489 o highway-* = segments of the specified highway type (e.g.
490 highway-primary to display segments ofprimary roads).
491 o transport-* = segments allowing the specified transport
492 type (e.g. transport-foot to display segments accessible
493 on foot).
494 o turns = turn restrictions.
495 o speed = speed limits.
496 o weight = weight limits.
497 o height = height limits.
498 o width = width limits.
499 o length = length limits.
500
501 --dump
502 Selects a data dumping mode which allows looking at individual
503 items in the databases (specifying 'all' instead of a number
504 dumps all of them). More than one of the following parameters
505 can be specified on the command line.
506
507 --node=<node>
508 Prints the information about the selected node number
509 (internal number, not the node id number in the original
510 source file).
511
512 --segment=<segment>
513 Prints the information about the selected segment number.
514
515 --way=<way>
516 Prints the information about the selected way number
517 (internal number, not the way id number in the original
518 source file).
519
520 --turn-relation=<relation>
521 Prints the information about the selected turn relation
522 number (internal number, not the relation id number in the
523 original source file).
524
525 --osm-dump
526 Dumps the contents of the database as an OSM format XML file,
527 the whole database will be dumped unless the latitude and
528 longitude ranges are specified.
529
530 --no-super
531 The super segments will not be output.
532
533 --latmin=<latmin> --latmax=<latmax>
534 The range of latitudes to dump the data for.
535
536 --lonmin=<lonmin> --lonmax=<lonmax>
537 The range of longitudes to dump the data for.
538
539 Note: In version 1.5 of Routino a slim option has been added and at
540 compilation time a separate program called filedumper-slim is created
541 that operates in slim mode. In slim mode the database files are read as
542 needed rather than being mapped into memory.
543
544
545 filedumperx
546 -----------
547
548 This program is a modified version of filedumper that will dump out the
549 contents of the intermediate data that is saved by planetsplitter after
550 processing using the --preserve or --changes option. This is intended
551 for test purposes only and gives no useful information about the
552 routing database.
553
554 Usage: filedumper [--help]
555 [--dir=<dirname>] [--prefix=<name>]
556 [--dump [--nodes]
557 [--segments]
558 [--ways]
559 [--route-relations]
560 [--turn-relations]]
561
562 --help
563 Prints out the help information.
564
565 --dir=<dirname>
566 Sets the directory name in which to read the local database.
567 Defaults to the current directory.
568
569 --prefix=<name>
570 Sets the filename prefix for the files in the local database.
571
572 --dump
573 Dumps the complete set of data in the intermediate files that
574 are written by planetsplitter using the --preserve or --changes
575 options.
576
577 --nodes
578 Dumps the node data.
579
580 --segments
581 Dumps the segment data.
582
583 --ways
584 Dumps the way data.
585
586 --route-relations
587 Dumps the route relation data.
588
589 --turn-relations
590 Dumps the turn relation data.
591
592
593 tagmodifier
594 -----------
595
596 This program is used to run the tag transformation process on an OSM
597 XML file for test purposes.
598
599 Usage: tagmodifier [--help]
600 [--loggable]
601 [--tagging=<filename>]
602 [<filename.osm>]
603
604 --help
605 Prints out the help information.
606
607 --loggable
608 Print progress messages that are suitable for logging to a file;
609 normally an incrementing counter is printed which is more
610 suitable for real-time display than logging.
611
612 --tagging=<filename>
613 The name of the XML file containing the tagging rules (defaults
614 to 'tagging.xml' in the current directory).
615
616 <filename.osm> ...
617 Specifies the filename to read data from, by default data is
618 read from the standard input.
619
620
621 --------
622
623 Copyright 2008-2012 Andrew M. Bishop.

Properties

Name Value
cvs:description Description of program usage.