Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Contents of /trunk/src/router.c
Parent Directory
|
Revision Log
Revision 362 -
(show annotations)
(download)
(as text)
Sat Apr 10 18:38:35 2010 UTC (15 years ago) by amb
File MIME type: text/x-csrc
File size: 24075 byte(s)
Sat Apr 10 18:38:35 2010 UTC (15 years ago) by amb
File MIME type: text/x-csrc
File size: 24075 byte(s)
Fix usage information.
1 | /*************************************** |
2 | $Header: /home/amb/CVS/routino/src/router.c,v 1.76 2010-04-10 18:38:35 amb Exp $ |
3 | |
4 | OSM router. |
5 | |
6 | Part of the Routino routing software. |
7 | ******************/ /****************** |
8 | This file Copyright 2008-2010 Andrew M. Bishop |
9 | |
10 | This program is free software: you can redistribute it and/or modify |
11 | it under the terms of the GNU Affero General Public License as published by |
12 | the Free Software Foundation, either version 3 of the License, or |
13 | (at your option) any later version. |
14 | |
15 | This program is distributed in the hope that it will be useful, |
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
18 | GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public License |
21 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
22 | ***************************************/ |
23 | |
24 | |
25 | #include <stdio.h> |
26 | #include <string.h> |
27 | #include <stdlib.h> |
28 | #include <ctype.h> |
29 | |
30 | #include "types.h" |
31 | #include "functions.h" |
32 | #include "translations.h" |
33 | #include "profiles.h" |
34 | #include "nodes.h" |
35 | #include "segments.h" |
36 | #include "ways.h" |
37 | |
38 | |
39 | /*+ The number of waypoints allowed to be specified. +*/ |
40 | #define NWAYPOINTS 99 |
41 | |
42 | /*+ The maximum distance from the specified point to search for a node or segment (in km). +*/ |
43 | #define MAXSEARCH 1 |
44 | |
45 | /*+ The minimum distance along a segment from a node to insert a fake node. (in km). +*/ |
46 | #define MINSEGMENT 0.005 |
47 | |
48 | |
49 | /*+ A set of fake segments to allow start/finish in the middle of a segment. +*/ |
50 | static Segment fake_segments[2*NWAYPOINTS]; |
51 | |
52 | /*+ A set of fake node latitudes and longitudes. +*/ |
53 | static double point_lon[NWAYPOINTS+1],point_lat[NWAYPOINTS+1]; |
54 | |
55 | /*+ The option not to print any progress information. +*/ |
56 | int option_quiet=0; |
57 | |
58 | /*+ The options to select the format of the output. +*/ |
59 | int option_html=0,option_gpx_track=0,option_gpx_route=0,option_text=0,option_text_all=0; |
60 | |
61 | /*+ The option to calculate the quickest route insted of the shortest. +*/ |
62 | int option_quickest=0; |
63 | |
64 | |
65 | /* Local functions */ |
66 | |
67 | static void print_usage(int detail); |
68 | |
69 | |
70 | /*++++++++++++++++++++++++++++++++++++++ |
71 | The main program for the router. |
72 | ++++++++++++++++++++++++++++++++++++++*/ |
73 | |
74 | int main(int argc,char** argv) |
75 | { |
76 | Nodes *OSMNodes; |
77 | Segments *OSMSegments; |
78 | Ways *OSMWays; |
79 | Results *results[NWAYPOINTS+1]={NULL}; |
80 | int point_used[NWAYPOINTS+1]={0}; |
81 | int help_profile=0,help_profile_xml=0,help_profile_json=0,help_profile_pl=0; |
82 | char *dirname=NULL,*prefix=NULL; |
83 | char *profiles=NULL,*profilename=NULL; |
84 | char *translations=NULL,*language=NULL; |
85 | int exactnodes=0; |
86 | Transport transport=Transport_None; |
87 | Profile *profile=NULL; |
88 | index_t start=NO_NODE,finish=NO_NODE; |
89 | int arg,point; |
90 | |
91 | /* Parse the command line arguments */ |
92 | |
93 | if(argc<2) |
94 | print_usage(0); |
95 | |
96 | /* Get the non-routing, general program options */ |
97 | |
98 | for(arg=1;arg<argc;arg++) |
99 | { |
100 | if(!strcmp(argv[arg],"--help")) |
101 | print_usage(1); |
102 | else if(!strcmp(argv[arg],"--help-profile")) |
103 | help_profile=1; |
104 | else if(!strcmp(argv[arg],"--help-profile-xml")) |
105 | help_profile_xml=1; |
106 | else if(!strcmp(argv[arg],"--help-profile-json")) |
107 | help_profile_json=1; |
108 | else if(!strcmp(argv[arg],"--help-profile-perl")) |
109 | help_profile_pl=1; |
110 | else if(!strncmp(argv[arg],"--dir=",6)) |
111 | dirname=&argv[arg][6]; |
112 | else if(!strncmp(argv[arg],"--prefix=",9)) |
113 | prefix=&argv[arg][9]; |
114 | else if(!strncmp(argv[arg],"--profiles=",11)) |
115 | profiles=&argv[arg][11]; |
116 | else if(!strncmp(argv[arg],"--translations=",15)) |
117 | translations=&argv[arg][15]; |
118 | else if(!strcmp(argv[arg],"--exact-nodes-only")) |
119 | exactnodes=1; |
120 | else if(!strcmp(argv[arg],"--quiet")) |
121 | option_quiet=1; |
122 | else if(!strcmp(argv[arg],"--output-html")) |
123 | option_html=1; |
124 | else if(!strcmp(argv[arg],"--output-gpx-track")) |
125 | option_gpx_track=1; |
126 | else if(!strcmp(argv[arg],"--output-gpx-route")) |
127 | option_gpx_route=1; |
128 | else if(!strcmp(argv[arg],"--output-text")) |
129 | option_text=1; |
130 | else if(!strcmp(argv[arg],"--output-text-all")) |
131 | option_text_all=1; |
132 | else if(!strncmp(argv[arg],"--profile=",10)) |
133 | profilename=&argv[arg][10]; |
134 | else if(!strncmp(argv[arg],"--language=",11)) |
135 | language=&argv[arg][11]; |
136 | else if(!strncmp(argv[arg],"--transport=",12)) |
137 | { |
138 | transport=TransportType(&argv[arg][12]); |
139 | |
140 | if(transport==Transport_None) |
141 | print_usage(0); |
142 | } |
143 | else |
144 | continue; |
145 | |
146 | argv[arg]=NULL; |
147 | } |
148 | |
149 | /* Load in the profiles */ |
150 | |
151 | if(transport==Transport_None) |
152 | transport=Transport_Motorcar; |
153 | |
154 | if(profiles && ExistsFile(profiles)) |
155 | ; |
156 | else if(!profiles && ExistsFile(FileName(dirname,prefix,"profiles.xml"))) |
157 | profiles=FileName(dirname,prefix,"profiles.xml"); |
158 | |
159 | if(profiles && ParseXMLProfiles(profiles)) |
160 | { |
161 | fprintf(stderr,"Error: Cannot read the profiles in the file '%s'.\n",profiles); |
162 | return(1); |
163 | } |
164 | |
165 | if(!profiles && profile) |
166 | { |
167 | fprintf(stderr,"Error: Cannot use '--profile' option without reading some profiles.\n"); |
168 | return(1); |
169 | } |
170 | |
171 | if(profilename) |
172 | { |
173 | profile=GetProfile(profilename); |
174 | |
175 | if(!profile) |
176 | { |
177 | fprintf(stderr,"Error: Cannot find a profile called '%s' in '%s'.\n",profilename,profiles); |
178 | return(1); |
179 | } |
180 | } |
181 | else |
182 | profile=GetProfile(TransportName(transport)); |
183 | |
184 | if(!profile) |
185 | { |
186 | profile=(Profile*)calloc(1,sizeof(Profile)); |
187 | profile->transport=transport; |
188 | } |
189 | |
190 | /* Parse the other command line arguments */ |
191 | |
192 | for(arg=1;arg<argc;arg++) |
193 | { |
194 | if(!argv[arg]) |
195 | continue; |
196 | else if(!strcmp(argv[arg],"--shortest")) |
197 | option_quickest=0; |
198 | else if(!strcmp(argv[arg],"--quickest")) |
199 | option_quickest=1; |
200 | else if(isdigit(argv[arg][0]) || |
201 | ((argv[arg][0]=='-' || argv[arg][0]=='+') && isdigit(argv[arg][1]))) |
202 | { |
203 | for(point=1;point<=NWAYPOINTS;point++) |
204 | if(point_used[point]!=3) |
205 | { |
206 | if(point_used[point]==0) |
207 | { |
208 | point_lon[point]=degrees_to_radians(atof(argv[arg])); |
209 | point_used[point]=1; |
210 | } |
211 | else /* if(point_used[point]==1) */ |
212 | { |
213 | point_lat[point]=degrees_to_radians(atof(argv[arg])); |
214 | point_used[point]=3; |
215 | } |
216 | break; |
217 | } |
218 | } |
219 | else if(!strncmp(argv[arg],"--lon",5) && isdigit(argv[arg][5])) |
220 | { |
221 | char *p=&argv[arg][6]; |
222 | while(isdigit(*p)) p++; |
223 | if(*p++!='=') |
224 | print_usage(0); |
225 | |
226 | point=atoi(&argv[arg][5]); |
227 | if(point>NWAYPOINTS || point_used[point]&1) |
228 | print_usage(0); |
229 | |
230 | point_lon[point]=degrees_to_radians(atof(p)); |
231 | point_used[point]+=1; |
232 | } |
233 | else if(!strncmp(argv[arg],"--lat",5) && isdigit(argv[arg][5])) |
234 | { |
235 | char *p=&argv[arg][6]; |
236 | while(isdigit(*p)) p++; |
237 | if(*p++!='=') |
238 | print_usage(0); |
239 | |
240 | point=atoi(&argv[arg][5]); |
241 | if(point>NWAYPOINTS || point_used[point]&2) |
242 | print_usage(0); |
243 | |
244 | point_lat[point]=degrees_to_radians(atof(p)); |
245 | point_used[point]+=2; |
246 | } |
247 | else if(!strncmp(argv[arg],"--transport=",12)) |
248 | ; /* Done this already */ |
249 | else if(!strncmp(argv[arg],"--highway-",10)) |
250 | { |
251 | Highway highway; |
252 | char *equal=strchr(argv[arg],'='); |
253 | char *string; |
254 | |
255 | if(!equal) |
256 | print_usage(0); |
257 | |
258 | string=strcpy((char*)malloc(strlen(argv[arg])),argv[arg]+10); |
259 | string[equal-argv[arg]-10]=0; |
260 | |
261 | highway=HighwayType(string); |
262 | |
263 | if(highway==Way_Count) |
264 | print_usage(0); |
265 | |
266 | profile->highway[highway]=atof(equal+1); |
267 | |
268 | free(string); |
269 | } |
270 | else if(!strncmp(argv[arg],"--speed-",8)) |
271 | { |
272 | Highway highway; |
273 | char *equal=strchr(argv[arg],'='); |
274 | char *string; |
275 | |
276 | if(!equal) |
277 | print_usage(0); |
278 | |
279 | string=strcpy((char*)malloc(strlen(argv[arg])),argv[arg]+8); |
280 | string[equal-argv[arg]-8]=0; |
281 | |
282 | highway=HighwayType(string); |
283 | |
284 | if(highway==Way_Count) |
285 | print_usage(0); |
286 | |
287 | profile->speed[highway]=kph_to_speed(atof(equal+1)); |
288 | |
289 | free(string); |
290 | } |
291 | else if(!strncmp(argv[arg],"--property-",11)) |
292 | { |
293 | Property property; |
294 | char *equal=strchr(argv[arg],'='); |
295 | char *string; |
296 | |
297 | if(!equal) |
298 | print_usage(0); |
299 | |
300 | string=strcpy((char*)malloc(strlen(argv[arg])),argv[arg]+11); |
301 | string[equal-argv[arg]-11]=0; |
302 | |
303 | property=PropertyType(string); |
304 | |
305 | if(property==Way_Count) |
306 | print_usage(0); |
307 | |
308 | profile->props_yes[property]=atof(equal+1); |
309 | |
310 | free(string); |
311 | } |
312 | else if(!strncmp(argv[arg],"--oneway=",9)) |
313 | profile->oneway=!!atoi(&argv[arg][9]); |
314 | else if(!strncmp(argv[arg],"--weight=",9)) |
315 | profile->weight=tonnes_to_weight(atof(&argv[arg][9])); |
316 | else if(!strncmp(argv[arg],"--height=",9)) |
317 | profile->height=metres_to_height(atof(&argv[arg][9])); |
318 | else if(!strncmp(argv[arg],"--width=",8)) |
319 | profile->width=metres_to_width(atof(&argv[arg][8])); |
320 | else if(!strncmp(argv[arg],"--length=",9)) |
321 | profile->length=metres_to_length(atof(&argv[arg][9])); |
322 | else |
323 | print_usage(0); |
324 | } |
325 | |
326 | for(point=1;point<=NWAYPOINTS;point++) |
327 | if(point_used[point]==1 || point_used[point]==2) |
328 | print_usage(0); |
329 | |
330 | if(help_profile) |
331 | { |
332 | PrintProfile(profile); |
333 | |
334 | return(0); |
335 | } |
336 | else if(help_profile_xml) |
337 | { |
338 | PrintProfilesXML(); |
339 | |
340 | return(0); |
341 | } |
342 | else if(help_profile_json) |
343 | { |
344 | PrintProfilesJSON(); |
345 | |
346 | return(0); |
347 | } |
348 | else if(help_profile_pl) |
349 | { |
350 | PrintProfilesPerl(); |
351 | |
352 | return(0); |
353 | } |
354 | |
355 | UpdateProfile(profile); |
356 | |
357 | /* Load in the translations */ |
358 | |
359 | if(translations && ExistsFile(translations)) |
360 | ; |
361 | else if(!translations && ExistsFile(FileName(dirname,prefix,"translations.xml"))) |
362 | translations=FileName(dirname,prefix,"translations.xml"); |
363 | |
364 | if(!translations && language) |
365 | { |
366 | fprintf(stderr,"Error: Cannot use '--language' option without reading some translations.\n"); |
367 | return(1); |
368 | } |
369 | |
370 | if(translations && ParseXMLTranslations(translations,language)) |
371 | { |
372 | fprintf(stderr,"Error: Cannot read the translations in the file '%s'.\n",translations); |
373 | return(1); |
374 | } |
375 | |
376 | /* Load in the data - Note: No error checking because Load*List() will call exit() in case of an error. */ |
377 | |
378 | OSMNodes=LoadNodeList(FileName(dirname,prefix,"nodes.mem")); |
379 | |
380 | OSMSegments=LoadSegmentList(FileName(dirname,prefix,"segments.mem")); |
381 | |
382 | OSMWays=LoadWayList(FileName(dirname,prefix,"ways.mem")); |
383 | |
384 | if(!(profile->allow & OSMWays->allow)) |
385 | { |
386 | fprintf(stderr,"Error: Database was not generated for selected transport.\n"); |
387 | return(1); |
388 | } |
389 | |
390 | if(option_html==0 && option_gpx_track==0 && option_gpx_route==0 && option_text==0 && option_text_all==0) |
391 | option_html=option_gpx_track=option_gpx_route=option_text=option_text_all=1; |
392 | |
393 | /* Loop through all pairs of points */ |
394 | |
395 | for(point=1;point<=NWAYPOINTS;point++) |
396 | { |
397 | Results *begin,*end; |
398 | distance_t distmax=km_to_distance(MAXSEARCH); |
399 | distance_t distmin; |
400 | Segment *segment=NULL; |
401 | index_t node1,node2; |
402 | |
403 | if(point_used[point]!=3) |
404 | continue; |
405 | |
406 | /* Find the closest point */ |
407 | |
408 | start=finish; |
409 | |
410 | if(exactnodes) |
411 | { |
412 | finish=FindClosestNode(OSMNodes,OSMSegments,OSMWays,point_lat[point],point_lon[point],distmax,profile,&distmin); |
413 | } |
414 | else |
415 | { |
416 | distance_t dist1,dist2; |
417 | |
418 | segment=FindClosestSegment(OSMNodes,OSMSegments,OSMWays,point_lat[point],point_lon[point],distmax,profile,&distmin,&node1,&node2,&dist1,&dist2); |
419 | |
420 | finish=CreateFakes(OSMNodes,point,segment,node1,node2,dist1,dist2); |
421 | } |
422 | |
423 | if(finish==NO_NODE) |
424 | { |
425 | fprintf(stderr,"Error: Cannot find node close to specified point %d.\n",point); |
426 | return(1); |
427 | } |
428 | |
429 | if(!option_quiet) |
430 | { |
431 | double lat,lon; |
432 | |
433 | if(IsFakeNode(finish)) |
434 | GetFakeLatLong(finish,&lat,&lon); |
435 | else |
436 | GetLatLong(OSMNodes,finish,&lat,&lon); |
437 | |
438 | if(IsFakeNode(finish)) |
439 | printf("Point %d is segment %d (node %d -> %d): %3.6f %4.6f = %2.3f km\n",point,IndexSegment(OSMSegments,segment),node1,node2, |
440 | radians_to_degrees(lon),radians_to_degrees(lat),distance_to_km(distmin)); |
441 | else |
442 | printf("Point %d is node %d: %3.6f %4.6f = %2.3f km\n",point,finish, |
443 | radians_to_degrees(lon),radians_to_degrees(lat),distance_to_km(distmin)); |
444 | } |
445 | |
446 | if(start==NO_NODE) |
447 | continue; |
448 | |
449 | /* Calculate the beginning of the route */ |
450 | |
451 | if(!IsFakeNode(start) && IsSuperNode(OSMNodes,start)) |
452 | { |
453 | Result *result; |
454 | |
455 | begin=NewResultsList(1); |
456 | |
457 | begin->start=start; |
458 | |
459 | result=InsertResult(begin,start); |
460 | |
461 | ZeroResult(result); |
462 | } |
463 | else |
464 | { |
465 | begin=FindStartRoutes(OSMNodes,OSMSegments,OSMWays,start,profile); |
466 | |
467 | if(!begin) |
468 | { |
469 | fprintf(stderr,"Error: Cannot find initial section of route compatible with profile.\n"); |
470 | return(1); |
471 | } |
472 | } |
473 | |
474 | if(FindResult(begin,finish)) |
475 | { |
476 | FixForwardRoute(begin,finish); |
477 | |
478 | results[point]=begin; |
479 | |
480 | if(!option_quiet) |
481 | { |
482 | printf("\rRouted: Super-Nodes Checked = %d\n",begin->number); |
483 | fflush(stdout); |
484 | } |
485 | } |
486 | else |
487 | { |
488 | Results *superresults; |
489 | |
490 | /* Calculate the end of the route */ |
491 | |
492 | if(!IsFakeNode(finish) && IsSuperNode(OSMNodes,finish)) |
493 | { |
494 | Result *result; |
495 | |
496 | end=NewResultsList(1); |
497 | |
498 | end->finish=finish; |
499 | |
500 | result=InsertResult(end,finish); |
501 | |
502 | ZeroResult(result); |
503 | } |
504 | else |
505 | { |
506 | end=FindFinishRoutes(OSMNodes,OSMSegments,OSMWays,finish,profile); |
507 | |
508 | if(!end) |
509 | { |
510 | fprintf(stderr,"Error: Cannot find final section of route compatible with profile.\n"); |
511 | return(1); |
512 | } |
513 | } |
514 | |
515 | /* Calculate the middle of the route */ |
516 | |
517 | superresults=FindMiddleRoute(OSMNodes,OSMSegments,OSMWays,begin,end,profile); |
518 | |
519 | FreeResultsList(begin); |
520 | FreeResultsList(end); |
521 | |
522 | if(!superresults) |
523 | { |
524 | fprintf(stderr,"Error: Cannot find route compatible with profile.\n"); |
525 | return(1); |
526 | } |
527 | |
528 | results[point]=CombineRoutes(superresults,OSMNodes,OSMSegments,OSMWays,profile); |
529 | |
530 | FreeResultsList(superresults); |
531 | } |
532 | } |
533 | |
534 | /* Print out the combined route */ |
535 | |
536 | PrintRouteHead(FileName(dirname,prefix,"copyright.txt")); |
537 | |
538 | PrintRoute(results,NWAYPOINTS,OSMNodes,OSMSegments,OSMWays,profile); |
539 | |
540 | PrintRouteTail(); |
541 | |
542 | return(0); |
543 | } |
544 | |
545 | |
546 | /*++++++++++++++++++++++++++++++++++++++ |
547 | Create a pair of fake segments corresponding to the given segment split in two. |
548 | |
549 | index_t CreateFakes Returns the fake node index (or a real one in special cases). |
550 | |
551 | Nodes *nodes The set of nodes to use. |
552 | |
553 | int point Which of the waypoints is this. |
554 | |
555 | Segment *segment The segment to split. |
556 | |
557 | index_t node1 The first node at the end of this segment. |
558 | |
559 | index_t node2 The second node at the end of this segment. |
560 | |
561 | distance_t dist1 The distance to the first node. |
562 | |
563 | distance_t dist2 The distance to the second node. |
564 | ++++++++++++++++++++++++++++++++++++++*/ |
565 | |
566 | index_t CreateFakes(Nodes *nodes,int point,Segment *segment,index_t node1,index_t node2,distance_t dist1,distance_t dist2) |
567 | { |
568 | index_t fakenode; |
569 | double lat1,lon1,lat2,lon2; |
570 | |
571 | /* Check if we are actually close enough to an existing node */ |
572 | |
573 | if(dist1<km_to_distance(MINSEGMENT) && dist2>km_to_distance(MINSEGMENT)) |
574 | return(node1); |
575 | |
576 | if(dist2<km_to_distance(MINSEGMENT) && dist1>km_to_distance(MINSEGMENT)) |
577 | return(node2); |
578 | |
579 | if(dist1<km_to_distance(MINSEGMENT) && dist2<km_to_distance(MINSEGMENT)) |
580 | { |
581 | if(dist1<dist2) |
582 | return(node1); |
583 | else |
584 | return(node2); |
585 | } |
586 | |
587 | /* Create the fake node */ |
588 | |
589 | fakenode=point|NODE_SUPER; |
590 | |
591 | GetLatLong(nodes,node1,&lat1,&lon1); |
592 | GetLatLong(nodes,node2,&lat2,&lon2); |
593 | |
594 | if(lat1>3 && lat2<-3) |
595 | lat2+=2*M_PI; |
596 | else if(lat1<-3 && lat2>3) |
597 | lat1+=2*M_PI; |
598 | |
599 | point_lat[point]=lat1+(lat2-lat1)*(double)dist1/(double)(dist1+dist2); |
600 | point_lon[point]=lon1+(lon2-lon1)*(double)dist1/(double)(dist1+dist2); |
601 | |
602 | if(point_lat[point]>M_PI) point_lat[point]-=2*M_PI; |
603 | |
604 | /* Create the first fake segment */ |
605 | |
606 | fake_segments[2*point-2]=*segment; |
607 | |
608 | if(segment->node1==node1) |
609 | fake_segments[2*point-2].node1=fakenode; |
610 | else |
611 | fake_segments[2*point-2].node2=fakenode; |
612 | |
613 | fake_segments[2*point-2].distance=DISTANCE(dist1)|DISTFLAG(segment->distance); |
614 | |
615 | /* Create the second fake segment */ |
616 | |
617 | fake_segments[2*point-1]=*segment; |
618 | |
619 | if(segment->node1==node2) |
620 | fake_segments[2*point-1].node1=fakenode; |
621 | else |
622 | fake_segments[2*point-1].node2=fakenode; |
623 | |
624 | fake_segments[2*point-1].distance=DISTANCE(dist2)|DISTFLAG(segment->distance); |
625 | |
626 | return(fakenode); |
627 | } |
628 | |
629 | |
630 | /*++++++++++++++++++++++++++++++++++++++ |
631 | Lookup the latitude and longitude of a fake node. |
632 | |
633 | index_t fakenode The node to lookup. |
634 | |
635 | double *latitude Returns the latitude |
636 | |
637 | double *longitude Returns the longitude. |
638 | ++++++++++++++++++++++++++++++++++++++*/ |
639 | |
640 | void GetFakeLatLong(index_t fakenode, double *latitude,double *longitude) |
641 | { |
642 | index_t realnode=fakenode&(~NODE_SUPER); |
643 | |
644 | *latitude =point_lat[realnode]; |
645 | *longitude=point_lon[realnode]; |
646 | } |
647 | |
648 | |
649 | /*++++++++++++++++++++++++++++++++++++++ |
650 | Finds the first fake segment associated to a fake node. |
651 | |
652 | Segment *FirstFakeSegment Returns the first fake segment. |
653 | |
654 | index_t fakenode The node to lookup. |
655 | ++++++++++++++++++++++++++++++++++++++*/ |
656 | |
657 | Segment *FirstFakeSegment(index_t fakenode) |
658 | { |
659 | index_t realnode=fakenode&(~NODE_SUPER); |
660 | |
661 | return(&fake_segments[2*realnode-2]); |
662 | } |
663 | |
664 | |
665 | /*++++++++++++++++++++++++++++++++++++++ |
666 | Finds the next (there can only be two) fake segment associated to a fake node. |
667 | |
668 | Segment *NextFakeSegment Returns the second fake segment. |
669 | |
670 | Segment *segment The first fake segment. |
671 | |
672 | index_t fakenode The node to lookup. |
673 | ++++++++++++++++++++++++++++++++++++++*/ |
674 | |
675 | Segment *NextFakeSegment(Segment *segment,index_t fakenode) |
676 | { |
677 | index_t realnode=fakenode&(~NODE_SUPER); |
678 | |
679 | if(segment==&fake_segments[2*realnode-2]) |
680 | return(&fake_segments[2*realnode-1]); |
681 | else |
682 | return(NULL); |
683 | } |
684 | |
685 | |
686 | /*++++++++++++++++++++++++++++++++++++++ |
687 | Finds the next (there can only be two) fake segment associated to a fake node. |
688 | |
689 | Segment *ExtraFakeSegment Returns a segment between the two specified nodes if it exists. |
690 | |
691 | index_t node The real node. |
692 | |
693 | index_t fakenode The fake node to lookup. |
694 | ++++++++++++++++++++++++++++++++++++++*/ |
695 | |
696 | Segment *ExtraFakeSegment(index_t node,index_t fakenode) |
697 | { |
698 | index_t realnode=fakenode&(~NODE_SUPER); |
699 | |
700 | if(fake_segments[2*realnode-2].node1==node || fake_segments[2*realnode-2].node2==node) |
701 | return(&fake_segments[2*realnode-2]); |
702 | |
703 | if(fake_segments[2*realnode-1].node1==node || fake_segments[2*realnode-1].node2==node) |
704 | return(&fake_segments[2*realnode-1]); |
705 | |
706 | return(NULL); |
707 | } |
708 | |
709 | |
710 | /*++++++++++++++++++++++++++++++++++++++ |
711 | Print out the usage information. |
712 | |
713 | int detail The level of detail to use - 0 = low, 1 = high. |
714 | ++++++++++++++++++++++++++++++++++++++*/ |
715 | |
716 | static void print_usage(int detail) |
717 | { |
718 | fprintf(stderr, |
719 | "Usage: router [--help | --help-profile | --help-profile-xml |\n" |
720 | " --help-profile-json | --help-profile-perl ]\n" |
721 | " [--dir=<dirname>] [--prefix=<name>]\n" |
722 | " [--profiles=<filename>] [--translations=<filename>]\n" |
723 | " [--exact-nodes-only]\n" |
724 | " [--quiet]\n" |
725 | " [--language=<lang>]\n" |
726 | " [--output-html]\n" |
727 | " [--output-gpx-track] [--output-gpx-route]\n" |
728 | " [--output-text] [--output-text-all]\n" |
729 | " [--profile=<name>]\n" |
730 | " [--transport=<transport>]\n" |
731 | " [--shortest | --quickest]\n" |
732 | " --lon1=<longitude> --lat1=<latitude>\n" |
733 | " --lon2=<longitude> --lon2=<latitude>\n" |
734 | " [ ... --lon99=<longitude> --lon99=<latitude>]\n" |
735 | " [--highway-<highway>=<preference> ...]\n" |
736 | " [--speed-<highway>=<speed> ...]\n" |
737 | " [--property-<property>=<preference> ...]\n" |
738 | " [--oneway=(0|1)]\n" |
739 | " [--weight=<weight>]\n" |
740 | " [--height=<height>] [--width=<width>] [--length=<length>]\n"); |
741 | |
742 | if(detail) |
743 | fprintf(stderr, |
744 | "\n" |
745 | "--help Prints this information.\n" |
746 | "--help-profile Prints the information about the selected profile.\n" |
747 | "--help-profile-xml Prints all loaded profiles in XML format.\n" |
748 | "--help-profile-json Prints all loaded profiles in JSON format.\n" |
749 | "--help-profile-perl Prints all loaded profiles in Perl format.\n" |
750 | "\n" |
751 | "--dir=<dirname> The directory containing the routing database.\n" |
752 | "--prefix=<name> The filename prefix for the routing database.\n" |
753 | "--profiles=<filename> The name of the profiles (defaults to 'profiles.xml'\n" |
754 | " with '--dirname' and '--prefix' options).\n" |
755 | "--translations=<fname> The filename of the translations (defaults to\n" |
756 | " 'translations.xml' with '--dirname' and '--prefix').\n" |
757 | "\n" |
758 | "--exact-nodes-only Only route between nodes (don't find closest segment).\n" |
759 | "\n" |
760 | "--quiet Don't print any output when running.\n" |
761 | "--language=<lang> Use the translations for specified language.\n" |
762 | "--output-html Write an HTML description of the route.\n" |
763 | "--output-gpx-track Write a GPX track file with all route points.\n" |
764 | "--output-gpx-route Write a GPX route file with interesting junctions.\n" |
765 | "--output-text Write a plain text file with interesting junctions.\n" |
766 | "--output-text-all Write a plain test file with all route points.\n" |
767 | " (If no output option is given then all are written.)\n" |
768 | "\n" |
769 | "--profile=<name> Select the loaded profile with this name.\n" |
770 | "--transport=<transport> Select the transport to use (selects the profile\n" |
771 | " named after the transport if '--profile' is not used.)\n" |
772 | "\n" |
773 | "--shortest Find the shortest route between the waypoints.\n" |
774 | "--quickest Find the quickest route between the waypoints.\n" |
775 | "\n" |
776 | "--lon<n>=<longitude> Specify the longitude of the n'th waypoint.\n" |
777 | "--lat<n>=<latitude> Specify the latitude of the n'th waypoint.\n" |
778 | "\n" |
779 | " Routing preference options\n" |
780 | "--highway-<highway>=<preference> * preference for highway type (%%).\n" |
781 | "--speed-<highway>=<speed> * speed for highway type (km/h).\n" |
782 | "--property-<property>=<preference> * preference for proprty type (%%).\n" |
783 | "--oneway=(0|1) * oneway streets are to be obeyed.\n" |
784 | "--weight=<weight> * maximum weight limit (tonnes).\n" |
785 | "--height=<height> * maximum height limit (metres).\n" |
786 | "--width=<width> * maximum width limit (metres).\n" |
787 | "--length=<length> * maximum length limit (metres).\n" |
788 | "\n" |
789 | "<transport> defaults to motorcar but can be set to:\n" |
790 | "%s" |
791 | "\n" |
792 | "<highway> can be selected from:\n" |
793 | "%s" |
794 | "\n" |
795 | "<property> can be selected from:\n" |
796 | "%s", |
797 | TransportList(),HighwayList(),PropertyList()); |
798 | |
799 | exit(!detail); |
800 | } |
Properties
Name | Value |
---|---|
cvs:description | Router. |