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