Routino SVN Repository Browser

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

ViewVC logotype

Contents of /trunk/src/router.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 33 - (show annotations) (download) (as text)
Sun Jan 11 09:42:26 2009 UTC (16 years, 2 months ago) by amb
File MIME type: text/x-csrc
File size: 1763 byte(s)
Replace Junction with SuperNode.

1 /***************************************
2 $Header: /home/amb/CVS/routino/src/router.c,v 1.6 2009-01-11 09:42:26 amb Exp $
3
4 OSM router.
5 ******************/ /******************
6 Written by Andrew M. Bishop
7
8 This file Copyright 2008,2009 Andrew M. Bishop
9 It may be distributed under the GNU Public License, version 2, or
10 any higher version. See section COPYING of the GNU Public license
11 for conditions under which this file may be redistributed.
12 ***************************************/
13
14
15 #include <stdio.h>
16 #include <string.h>
17 #include <stdlib.h>
18
19 #include "nodes.h"
20 #include "ways.h"
21 #include "segments.h"
22 #include "functions.h"
23
24
25 int main(int argc,char** argv)
26 {
27 Nodes *OSMNodes,*SuperNodes;
28 Ways *OSMWays;
29 Segments *OSMSegments,*SuperSegments;
30 Results *results;
31 node_t start,finish;
32
33 /* Parse the command line aarguments */
34
35 if(argc!=3 && argc!=4)
36 {
37 fprintf(stderr,"Usage: %s <start-node> <finish-node>\n",argv[0]);
38 return(1);
39 }
40
41 start=atoll(argv[1]);
42 finish=atoll(argv[2]);
43
44 /* Load in the data */
45
46 OSMNodes=LoadNodeList("data/nodes.mem");
47 SuperNodes=LoadNodeList("data/super-nodes.mem");
48
49 OSMWays=LoadWayList("data/ways.mem");
50
51 OSMSegments=LoadSegmentList("data/segments.mem");
52 SuperSegments=LoadSegmentList("data/super-segments.mem");
53
54 if(argc>3 && !strcmp(argv[3],"-all"))
55 {
56 /* Calculate the route */
57
58 results=FindRoute(OSMNodes,OSMSegments,start,finish);
59
60 /* Print the route */
61
62 PrintRoute(results,OSMNodes,OSMSegments,OSMWays,start,finish);
63 }
64 else
65 {
66 /* Calculate the route */
67
68 results=FindRoute(SuperNodes,SuperSegments,start,finish);
69
70 /* Print the route */
71
72 PrintRoutes(results,OSMNodes,OSMSegments,OSMWays,SuperNodes,SuperSegments,start,finish);
73 }
74
75 return(0);
76 }

Properties

Name Value
cvs:description Router.