Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Annotation of /trunk/src/planetsplitter.c
Parent Directory
|
Revision Log
Revision 26 -
(hide annotations)
(download)
(as text)
Sat Jan 10 11:53:49 2009 UTC (16 years, 2 months ago) by amb
File MIME type: text/x-csrc
File size: 2815 byte(s)
Sat Jan 10 11:53:49 2009 UTC (16 years, 2 months ago) by amb
File MIME type: text/x-csrc
File size: 2815 byte(s)
About to add the super-segment functionality using Segments data type to hold them.
1 | amb | 2 | /*************************************** |
2 | amb | 26 | $Header: /home/amb/CVS/routino/src/planetsplitter.c,v 1.6 2009-01-10 11:53:48 amb Exp $ |
3 | amb | 2 | |
4 | OSM planet file splitter. | ||
5 | ******************/ /****************** | ||
6 | Written by Andrew M. Bishop | ||
7 | |||
8 | amb | 4 | This file Copyright 2008,2009 Andrew M. Bishop |
9 | amb | 2 | 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 <stdlib.h> | ||
17 | |||
18 | amb | 26 | #include "nodes.h" |
19 | #include "ways.h" | ||
20 | #include "segments.h" | ||
21 | amb | 2 | #include "functions.h" |
22 | |||
23 | |||
24 | int main(int argc,char** argv) | ||
25 | { | ||
26 | amb | 26 | NodesMem *OSMNodesMem; |
27 | Nodes *OSMNodes; | ||
28 | WaysMem *OSMWaysMem; | ||
29 | Ways *OSMWays; | ||
30 | SegmentsMem *OSMSegmentsMem; | ||
31 | Segments *OSMSegments; | ||
32 | SegmentsMem *SuperSegmentsMem; | ||
33 | Segments *SuperSegments; | ||
34 | |||
35 | /* Create new variables */ | ||
36 | |||
37 | OSMNodesMem=NewNodeList(); | ||
38 | OSMWaysMem=NewWayList(); | ||
39 | OSMSegmentsMem=NewSegmentList(); | ||
40 | |||
41 | amb | 2 | /* Parse the file */ |
42 | |||
43 | amb | 26 | ParseXML(stdin,OSMNodesMem,OSMSegmentsMem,OSMWaysMem); |
44 | amb | 2 | |
45 | amb | 8 | /* Sort the variables */ |
46 | |||
47 | printf("Sorting Nodes"); fflush(stdout); | ||
48 | amb | 26 | SortNodeList(OSMNodesMem); |
49 | amb | 8 | printf("\rSorted Nodes \n"); fflush(stdout); |
50 | |||
51 | printf("Sorting Ways"); fflush(stdout); | ||
52 | amb | 26 | SortWayList(OSMWaysMem); |
53 | amb | 8 | printf("\rSorted Ways \n"); fflush(stdout); |
54 | |||
55 | printf("Sorting Segments"); fflush(stdout); | ||
56 | amb | 26 | SortSegmentList(OSMSegmentsMem); |
57 | amb | 8 | printf("\rSorted Segments \n"); fflush(stdout); |
58 | |||
59 | amb | 26 | /* Write out the variables */ |
60 | |||
61 | printf("Saving Nodes"); fflush(stdout); | ||
62 | OSMNodes=SaveNodeList(OSMNodesMem,"data/nodes.mem"); | ||
63 | printf("\rSaved Nodes \n"); fflush(stdout); | ||
64 | |||
65 | printf("Saving Ways"); fflush(stdout); | ||
66 | OSMWays=SaveWayList(OSMWaysMem,"data/ways.mem"); | ||
67 | printf("\rSaved Ways \n"); fflush(stdout); | ||
68 | |||
69 | amb | 8 | /* Fix the segment lengths */ |
70 | |||
71 | printf("Measuring Segments"); fflush(stdout); | ||
72 | amb | 26 | FixupSegmentLengths(OSMSegmentsMem,OSMNodes,OSMWays); |
73 | amb | 8 | printf("\rMeasured Segments \n"); fflush(stdout); |
74 | |||
75 | amb | 26 | /* Write out the variables */ |
76 | amb | 15 | |
77 | amb | 26 | printf("Saving Segments"); fflush(stdout); |
78 | OSMSegments=SaveSegmentList(OSMSegmentsMem,"data/segments.mem"); | ||
79 | printf("\rSaved Segments \n"); fflush(stdout); | ||
80 | |||
81 | /* Create new variables */ | ||
82 | |||
83 | SuperSegmentsMem=NewSegmentList(); | ||
84 | |||
85 | /* Select the super-segments */ | ||
86 | |||
87 | amb | 15 | printf("Selecting Super-Segments"); fflush(stdout); |
88 | amb | 26 | ChooseSuperSegments(SuperSegmentsMem,OSMNodes,OSMSegments,OSMWays); |
89 | amb | 15 | printf("\rSelected Super-Segments \n"); fflush(stdout); |
90 | |||
91 | /* Sort the super-segments */ | ||
92 | |||
93 | printf("Sorting SuperSegments"); fflush(stdout); | ||
94 | amb | 26 | SortSegmentList(SuperSegmentsMem); |
95 | amb | 15 | printf("\rSorted SuperSegments \n"); fflush(stdout); |
96 | |||
97 | amb | 2 | /* Write out the variables */ |
98 | |||
99 | amb | 26 | printf("Saving Super Segments"); fflush(stdout); |
100 | SuperSegments=SaveSegmentList(SuperSegmentsMem,"data/super-segments.mem"); | ||
101 | printf("\rSaved Super Segments \n"); fflush(stdout); | ||
102 | amb | 2 | |
103 | return(0); | ||
104 | } |
Properties
Name | Value |
---|---|
cvs:description | Planet file splitter. |