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/filedumper.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 449 - (show annotations) (download) (as text)
Mon Jul 12 17:59:42 2010 UTC (14 years, 8 months ago) by amb
File MIME type: text/x-csrc
File size: 22841 byte(s)
Create a files.h header and put some of the most heavily used files.c functions
into it and make them inline.

1 /***************************************
2 $Header: /home/amb/CVS/routino/src/filedumper.c,v 1.44 2010-07-12 17:59:41 amb Exp $
3
4 Memory file dumper.
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 <stdlib.h>
27 #include <string.h>
28 #include <sys/stat.h>
29 #include <sys/time.h>
30 #include <time.h>
31
32 #include "types.h"
33 #include "nodes.h"
34 #include "segments.h"
35 #include "ways.h"
36
37 #include "files.h"
38 #include "visualiser.h"
39 #include "xmlparse.h"
40
41
42 /* Local functions */
43
44 static void print_node(Nodes* nodes,index_t item);
45 static void print_segment(Segments *segments,index_t item);
46 static void print_way(Ways *ways,index_t item);
47
48 static void print_head_osm(void);
49 static void print_node_osm(Nodes* nodes,index_t item);
50 static void print_segment_osm(Segments *segments,index_t item,Ways *ways);
51 static void print_tail_osm(void);
52
53 static char *RFC822Date(time_t t);
54
55 static void print_usage(int detail);
56
57
58 /*++++++++++++++++++++++++++++++++++++++
59 The main program for the file dumper.
60 ++++++++++++++++++++++++++++++++++++++*/
61
62 int main(int argc,char** argv)
63 {
64 Nodes *OSMNodes;
65 Segments *OSMSegments;
66 Ways *OSMWays;
67 int arg;
68 char *dirname=NULL,*prefix=NULL;
69 char *nodes_filename,*segments_filename,*ways_filename;
70 int option_statistics=0;
71 int option_visualiser=0,coordcount=0;
72 double latmin=0,latmax=0,lonmin=0,lonmax=0;
73 char *option_data=NULL;
74 int option_dump=0;
75 int option_dump_osm=0,option_no_super=0;
76
77 /* Parse the command line arguments */
78
79 for(arg=1;arg<argc;arg++)
80 {
81 if(!strcmp(argv[arg],"--help"))
82 print_usage(1);
83 else if(!strncmp(argv[arg],"--dir=",6))
84 dirname=&argv[arg][6];
85 else if(!strncmp(argv[arg],"--prefix=",9))
86 prefix=&argv[arg][9];
87 else if(!strcmp(argv[arg],"--statistics"))
88 option_statistics=1;
89 else if(!strcmp(argv[arg],"--visualiser"))
90 option_visualiser=1;
91 else if(!strcmp(argv[arg],"--dump"))
92 option_dump=1;
93 else if(!strcmp(argv[arg],"--dump-osm"))
94 option_dump_osm=1;
95 else if(!strncmp(argv[arg],"--latmin",8) && argv[arg][8]=='=')
96 {latmin=degrees_to_radians(atof(&argv[arg][9]));coordcount++;}
97 else if(!strncmp(argv[arg],"--latmax",8) && argv[arg][8]=='=')
98 {latmax=degrees_to_radians(atof(&argv[arg][9]));coordcount++;}
99 else if(!strncmp(argv[arg],"--lonmin",8) && argv[arg][8]=='=')
100 {lonmin=degrees_to_radians(atof(&argv[arg][9]));coordcount++;}
101 else if(!strncmp(argv[arg],"--lonmax",8) && argv[arg][8]=='=')
102 {lonmax=degrees_to_radians(atof(&argv[arg][9]));coordcount++;}
103 else if(!strncmp(argv[arg],"--data",6) && argv[arg][6]=='=')
104 option_data=&argv[arg][7];
105 else if(!strcmp(argv[arg],"--no-super"))
106 option_no_super=1;
107 else if(!strncmp(argv[arg],"--node=",7))
108 ;
109 else if(!strncmp(argv[arg],"--segment=",10))
110 ;
111 else if(!strncmp(argv[arg],"--way=",6))
112 ;
113 else
114 print_usage(0);
115 }
116
117 if(!option_statistics && !option_visualiser && !option_dump && !option_dump_osm)
118 print_usage(0);
119
120 /* Load in the data - Note: No error checking because Load*List() will call exit() in case of an error. */
121
122 OSMNodes=LoadNodeList(nodes_filename=FileName(dirname,prefix,"nodes.mem"));
123
124 OSMSegments=LoadSegmentList(segments_filename=FileName(dirname,prefix,"segments.mem"));
125
126 OSMWays=LoadWayList(ways_filename=FileName(dirname,prefix,"ways.mem"));
127
128 /* Write out the visualiser data */
129
130 if(option_visualiser)
131 {
132 if(coordcount!=4)
133 {
134 fprintf(stderr,"The --visualiser option must have --latmin, --latmax, --lonmin, --lonmax.\n");
135 exit(1);
136 }
137
138 if(!option_data)
139 {
140 fprintf(stderr,"The --visualiser option must have --data.\n");
141 exit(1);
142 }
143
144 if(!strcmp(option_data,"junctions"))
145 OutputJunctions(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
146 else if(!strcmp(option_data,"super"))
147 OutputSuper(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
148 else if(!strcmp(option_data,"oneway"))
149 OutputOneway(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
150 else if(!strcmp(option_data,"speed"))
151 OutputSpeedLimits(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
152 else if(!strcmp(option_data,"weight"))
153 OutputWeightLimits(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
154 else if(!strcmp(option_data,"height"))
155 OutputHeightLimits(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
156 else if(!strcmp(option_data,"width"))
157 OutputWidthLimits(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
158 else if(!strcmp(option_data,"length"))
159 OutputLengthLimits(OSMNodes,OSMSegments,OSMWays,latmin,latmax,lonmin,lonmax);
160 else
161 {
162 fprintf(stderr,"Unrecognised data option '%s' with --visualiser.\n",option_data);
163 exit(1);
164 }
165 }
166
167 /* Print out statistics */
168
169 if(option_statistics)
170 {
171 struct stat buf;
172
173 /* Examine the files */
174
175 printf("Files\n");
176 printf("-----\n");
177 printf("\n");
178
179 stat(nodes_filename,&buf);
180
181 printf("'%s%snodes.mem' - %9lld Bytes\n",prefix?prefix:"",prefix?"-":"",(long long)buf.st_size);
182 printf("%s\n",RFC822Date(buf.st_mtime));
183 printf("\n");
184
185 stat(segments_filename,&buf);
186
187 printf("'%s%ssegments.mem' - %9lld Bytes\n",prefix?prefix:"",prefix?"-":"",(long long)buf.st_size);
188 printf("%s\n",RFC822Date(buf.st_mtime));
189 printf("\n");
190
191 stat(ways_filename,&buf);
192
193 printf("'%s%sways.mem' - %9lld Bytes\n",prefix?prefix:"",prefix?"-":"",(long long)buf.st_size);
194 printf("%s\n",RFC822Date(buf.st_mtime));
195 printf("\n");
196
197 /* Examine the nodes */
198
199 printf("Nodes\n");
200 printf("-----\n");
201 printf("\n");
202
203 printf("sizeof(Node) =%9d Bytes\n",sizeof(Node));
204 printf("Number =%9d\n",OSMNodes->number);
205 printf("Number(super)=%9d\n",OSMNodes->snumber);
206 printf("\n");
207
208 printf("Lat bins= %4d\n",OSMNodes->latbins);
209 printf("Lon bins= %4d\n",OSMNodes->lonbins);
210 printf("\n");
211
212 printf("Lat zero=%5d (%8.4f deg)\n",OSMNodes->latzero,radians_to_degrees(latlong_to_radians(bin_to_latlong(OSMNodes->latzero))));
213 printf("Lon zero=%5d (%8.4f deg)\n",OSMNodes->lonzero,radians_to_degrees(latlong_to_radians(bin_to_latlong(OSMNodes->lonzero))));
214
215 /* Examine the segments */
216
217 printf("\n");
218 printf("Segments\n");
219 printf("--------\n");
220 printf("\n");
221
222 printf("sizeof(Segment)=%9d Bytes\n",sizeof(Segment));
223 printf("Number(total) =%9d\n",OSMSegments->number);
224 printf("Number(super) =%9d\n",OSMSegments->snumber);
225 printf("Number(normal) =%9d\n",OSMSegments->nnumber);
226
227 /* Examine the ways */
228
229 printf("\n");
230 printf("Ways\n");
231 printf("----\n");
232 printf("\n");
233
234 printf("sizeof(Way) =%9d Bytes\n",sizeof(Way));
235 printf("Number(compacted)=%9d\n",OSMWays->number);
236 printf("Number(original) =%9d\n",OSMWays->onumber);
237 printf("\n");
238
239 printf("Total names =%9ld Bytes\n",(long)buf.st_size-sizeof(Ways)-OSMWays->number*sizeof(Way));
240 printf("\n");
241
242 printf("Included transports: %s\n",AllowedNameList(OSMWays->allow));
243 printf("Included properties: %s\n",PropertiesNameList(OSMWays->props));
244 }
245
246 /* Print out internal data */
247
248 if(option_dump)
249 {
250 index_t item;
251
252 for(arg=1;arg<argc;arg++)
253 if(!strcmp(argv[arg],"--node=all"))
254 {
255 for(item=0;item<OSMNodes->number;item++)
256 print_node(OSMNodes,item);
257 }
258 else if(!strncmp(argv[arg],"--node=",7))
259 {
260 item=atoi(&argv[arg][7]);
261
262 if(item>=0 && item<OSMNodes->number)
263 print_node(OSMNodes,item);
264 else
265 printf("Invalid node number; minimum=0, maximum=%d.\n",OSMNodes->number-1);
266 }
267 else if(!strcmp(argv[arg],"--segment=all"))
268 {
269 for(item=0;item<OSMSegments->number;item++)
270 print_segment(OSMSegments,item);
271 }
272 else if(!strncmp(argv[arg],"--segment=",10))
273 {
274 item=atoi(&argv[arg][10]);
275
276 if(item>=0 && item<OSMSegments->number)
277 print_segment(OSMSegments,item);
278 else
279 printf("Invalid segment number; minimum=0, maximum=%d.\n",OSMSegments->number-1);
280 }
281 else if(!strcmp(argv[arg],"--way=all"))
282 {
283 for(item=0;item<OSMWays->number;item++)
284 print_way(OSMWays,item);
285 }
286 else if(!strncmp(argv[arg],"--way=",6))
287 {
288 item=atoi(&argv[arg][6]);
289
290 if(item>=0 && item<OSMWays->number)
291 print_way(OSMWays,item);
292 else
293 printf("Invalid way number; minimum=0, maximum=%d.\n",OSMWays->number-1);
294 }
295 }
296
297 /* Print out internal data in XML format */
298
299 if(option_dump_osm)
300 {
301 if(coordcount>0 && coordcount!=4)
302 {
303 fprintf(stderr,"The --dump-osm option must have all of --latmin, --latmax, --lonmin, --lonmax or none.\n");
304 exit(1);
305 }
306
307 print_head_osm();
308
309 if(coordcount)
310 {
311 int32_t latminbin=latlong_to_bin(radians_to_latlong(latmin))-OSMNodes->latzero;
312 int32_t latmaxbin=latlong_to_bin(radians_to_latlong(latmax))-OSMNodes->latzero;
313 int32_t lonminbin=latlong_to_bin(radians_to_latlong(lonmin))-OSMNodes->lonzero;
314 int32_t lonmaxbin=latlong_to_bin(radians_to_latlong(lonmax))-OSMNodes->lonzero;
315 int latb,lonb,llbin;
316 index_t node;
317
318 /* Loop through all of the nodes. */
319
320 for(latb=latminbin;latb<=latmaxbin;latb++)
321 for(lonb=lonminbin;lonb<=lonmaxbin;lonb++)
322 {
323 llbin=lonb*OSMNodes->latbins+latb;
324
325 if(llbin<0 || llbin>(OSMNodes->latbins*OSMNodes->lonbins))
326 continue;
327
328 for(node=OSMNodes->offsets[llbin];node<OSMNodes->offsets[llbin+1];node++)
329 {
330 double lat=latlong_to_radians(bin_to_latlong(OSMNodes->latzero+latb)+off_to_latlong(OSMNodes->nodes[node].latoffset));
331 double lon=latlong_to_radians(bin_to_latlong(OSMNodes->lonzero+lonb)+off_to_latlong(OSMNodes->nodes[node].lonoffset));
332
333 if(lat>latmin && lat<latmax && lon>lonmin && lon<lonmax)
334 {
335 Segment *segment;
336
337 print_node_osm(OSMNodes,node);
338
339 segment=FirstSegment(OSMSegments,OSMNodes,node);
340
341 while(segment)
342 {
343 if(node>OtherNode(segment,node))
344 if(!option_no_super || IsNormalSegment(segment))
345 print_segment_osm(OSMSegments,IndexSegment(OSMSegments,segment),OSMWays);
346
347 segment=NextSegment(OSMSegments,segment,node);
348 }
349 }
350 }
351 }
352 }
353 else
354 {
355 index_t item;
356
357 for(item=0;item<OSMNodes->number;item++)
358 print_node_osm(OSMNodes,item);
359
360 for(item=0;item<OSMSegments->number;item++)
361 if(!option_no_super || IsNormalSegment(LookupSegment(OSMSegments,item)))
362 print_segment_osm(OSMSegments,item,OSMWays);
363 }
364
365 print_tail_osm();
366 }
367
368 return(0);
369 }
370
371
372 /*++++++++++++++++++++++++++++++++++++++
373 Print out the contents of a node from the routing database.
374
375 Nodes *nodes The set of nodes to use.
376
377 index_t item The node index to print.
378 ++++++++++++++++++++++++++++++++++++++*/
379
380 static void print_node(Nodes* nodes,index_t item)
381 {
382 Node *node=LookupNode(nodes,item);
383 double latitude,longitude;
384
385 GetLatLong(nodes,item,&latitude,&longitude);
386
387 printf("Node %d\n",item);
388 printf(" firstseg=%d\n",SEGMENT(node->firstseg));
389 printf(" latoffset=%d lonoffset=%d (latitude=%.6f longitude=%.6f)\n",node->latoffset,node->lonoffset,radians_to_degrees(latitude),radians_to_degrees(longitude));
390 if(IsSuperNode(nodes,item))
391 printf(" Super-Node\n");
392 }
393
394
395 /*++++++++++++++++++++++++++++++++++++++
396 Print out the contents of a segment from the routing database.
397
398 Segments *segments The set of segments to use.
399
400 index_t item The segment index to print.
401 ++++++++++++++++++++++++++++++++++++++*/
402
403 static void print_segment(Segments *segments,index_t item)
404 {
405 Segment *segment=LookupSegment(segments,item);
406
407 printf("Segment %d\n",item);
408 printf(" node1=%d node2=%d\n",segment->node1,segment->node2);
409 printf(" next2=%d\n",segment->next2);
410 printf(" way=%d\n",segment->way);
411 printf(" distance=%d (%.3f km)\n",DISTANCE(segment->distance),distance_to_km(DISTANCE(segment->distance)));
412 if(IsSuperSegment(segment) && IsNormalSegment(segment))
413 printf(" Super-Segment AND normal Segment\n");
414 else if(IsSuperSegment(segment) && !IsNormalSegment(segment))
415 printf(" Super-Segment\n");
416 if(IsOnewayTo(segment,segment->node1))
417 printf(" One-Way from node2 to node1\n");
418 if(IsOnewayTo(segment,segment->node2))
419 printf(" One-Way from node1 to node2\n");
420 }
421
422
423 /*++++++++++++++++++++++++++++++++++++++
424 Print out the contents of a way from the routing database.
425
426 Ways *ways The set of ways to use.
427
428 index_t item The way index to print.
429 ++++++++++++++++++++++++++++++++++++++*/
430
431 static void print_way(Ways *ways,index_t item)
432 {
433 Way *way=LookupWay(ways,item);
434
435 printf("Way %d\n",item);
436 printf(" name=%s\n",WayNameHighway(ways,way));
437 printf(" type=%02x (%s%s%s)\n",way->type,HighwayName(HIGHWAY(way->type)),way->type&Way_OneWay?",One-Way":"",way->type&Way_Roundabout?",Roundabout":"");
438 printf(" allow=%02x (%s)\n",way->allow,AllowedNameList(way->allow));
439 if(way->props)
440 printf(" props=%02x (%s)\n",way->props,PropertiesNameList(way->props));
441 if(way->speed)
442 printf(" speed=%d (%d km/hr)\n",way->speed,speed_to_kph(way->speed));
443 if(way->weight)
444 printf(" weight=%d (%.1f tonnes)\n",way->weight,weight_to_tonnes(way->weight));
445 if(way->height)
446 printf(" height=%d (%.1f m)\n",way->height,height_to_metres(way->height));
447 if(way->width)
448 printf(" width=%d (%.1f m)\n",way->width,width_to_metres(way->width));
449 if(way->length)
450 printf(" length=%d (%.1f m)\n",way->length,length_to_metres(way->length));
451 }
452
453
454 /*++++++++++++++++++++++++++++++++++++++
455 Print out a header in OSM XML format.
456 ++++++++++++++++++++++++++++++++++++++*/
457
458 static void print_head_osm(void)
459 {
460 printf("<?xml version='1.0' encoding='UTF-8'?>\n");
461 printf("<osm version='0.6' generator='JOSM'>\n");
462 }
463
464
465 /*++++++++++++++++++++++++++++++++++++++
466 Print out the contents of a node from the routing database in OSM XML format.
467
468 Nodes *nodes The set of nodes to use.
469
470 index_t item The node index to print.
471 ++++++++++++++++++++++++++++++++++++++*/
472
473 static void print_node_osm(Nodes* nodes,index_t item)
474 {
475 double latitude,longitude;
476
477 GetLatLong(nodes,item,&latitude,&longitude);
478
479 if(IsSuperNode(nodes,item))
480 {
481 printf(" <node id='%lu' lat='%.7f' lon='%.7f' version='1'>\n",(unsigned long)item+1,radians_to_degrees(latitude),radians_to_degrees(longitude));
482 printf(" <tag k='routino:super' v='yes' />\n");
483 printf(" </node>\n");
484 }
485 else
486 printf(" <node id='%lu' lat='%.7f' lon='%.7f' version='1' />\n",(unsigned long)item+1,radians_to_degrees(latitude),radians_to_degrees(longitude));
487 }
488
489
490 /*++++++++++++++++++++++++++++++++++++++
491 Print out the contents of a segment from the routing database as a way in OSM XML format.
492
493 Segments *segments The set of segments to use.
494
495 index_t item The segment index to print.
496
497 Ways *ways The set of ways to use.
498 ++++++++++++++++++++++++++++++++++++++*/
499
500 static void print_segment_osm(Segments *segments,index_t item,Ways *ways)
501 {
502 Segment *segment=LookupSegment(segments,item);
503 Way *way=LookupWay(ways,segment->way);
504 int i;
505
506 printf(" <way id='%lu' version='1'>\n",(unsigned long)item+1);
507
508 if(IsOnewayTo(segment,segment->node1))
509 {
510 printf(" <nd ref='%lu' />\n",(unsigned long)segment->node2+1);
511 printf(" <nd ref='%lu' />\n",(unsigned long)segment->node1+1);
512 }
513 else
514 {
515 printf(" <nd ref='%lu' />\n",(unsigned long)segment->node1+1);
516 printf(" <nd ref='%lu' />\n",(unsigned long)segment->node2+1);
517 }
518
519 if(IsSuperSegment(segment))
520 printf(" <tag k='routino:super' v='yes' />\n");
521 if(IsNormalSegment(segment))
522 printf(" <tag k='routino:normal' v='yes' />\n");
523
524 if(way->type & Way_OneWay)
525 printf(" <tag k='oneway' v='yes' />\n");
526 if(way->type & Way_Roundabout)
527 printf(" <tag k='junction' v='roundabout' />\n");
528
529 printf(" <tag k='highway' v='%s' />\n",HighwayName(HIGHWAY(way->type)));
530
531 if(IsNormalSegment(segment) && WayNamed(ways,way))
532 printf(" <tag k='name' v='%s' />\n",ParseXML_Encode_Safe_XML(WayNameHighway(ways,way)));
533
534 for(i=1;i<Transport_Count;i++)
535 if(way->allow & ALLOWED(i))
536 printf(" <tag k='%s' v='yes' />\n",TransportName(i));
537
538 for(i=1;i<Property_Count;i++)
539 if(way->props & PROPERTIES(i))
540 printf(" <tag k='%s' v='yes' />\n",PropertyName(i));
541
542 if(way->speed)
543 printf(" <tag k='maxspeed' v='%d' />\n",speed_to_kph(way->speed));
544
545 if(way->weight)
546 printf(" <tag k='maxweight' v='%.1f' />\n",weight_to_tonnes(way->weight));
547 if(way->height)
548 printf(" <tag k='maxheight' v='%.1f' />\n",height_to_metres(way->height));
549 if(way->width)
550 printf(" <tag k='maxwidth' v='%.1f' />\n",width_to_metres(way->width));
551 if(way->length)
552 printf(" <tag k='maxlength' v='%.1f' />\n",length_to_metres(way->length));
553
554 printf(" </way>\n");
555 }
556
557
558 /*++++++++++++++++++++++++++++++++++++++
559 Print out a tail in OSM XML format.
560 ++++++++++++++++++++++++++++++++++++++*/
561
562 static void print_tail_osm(void)
563 {
564 printf("</osm>\n");
565 }
566
567
568 /*+ Conversion from time_t to date string (day of week). +*/
569 static const char* const weekdays[7]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
570
571 /*+ Conversion from time_t to date string (month of year). +*/
572 static const char* const months[12]={"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"};
573
574
575 /*++++++++++++++++++++++++++++++++++++++
576 Convert the time into an RFC 822 compliant date.
577
578 char *RFC822Date Returns a pointer to a fixed string containing the date.
579
580 time_t t The time.
581 ++++++++++++++++++++++++++++++++++++++*/
582
583 static char *RFC822Date(time_t t)
584 {
585 static char value[32];
586 char weekday[4];
587 char month[4];
588 struct tm *tim;
589
590 tim=gmtime(&t);
591
592 strcpy(weekday,weekdays[tim->tm_wday]);
593 strcpy(month,months[tim->tm_mon]);
594
595 /* Sun, 06 Nov 1994 08:49:37 GMT ; RFC 822, updated by RFC 1123 */
596
597 sprintf(value,"%3s, %02d %3s %4d %02d:%02d:%02d %s",
598 weekday,
599 tim->tm_mday,
600 month,
601 tim->tm_year+1900,
602 tim->tm_hour,
603 tim->tm_min,
604 tim->tm_sec,
605 "GMT"
606 );
607
608 return(value);
609 }
610
611
612 /*++++++++++++++++++++++++++++++++++++++
613 Print out the usage information.
614
615 int detail The level of detail to use - 0 = low, 1 = high.
616 ++++++++++++++++++++++++++++++++++++++*/
617
618 static void print_usage(int detail)
619 {
620 fprintf(stderr,
621 "Usage: filedumper [--help]\n"
622 " [--dir=<dirname>] [--prefix=<name>]\n"
623 " [--statistics]\n"
624 " [--visualiser --latmin=<latmin> --latmax=<latmax>\n"
625 " --lonmin=<lonmin> --lonmax=<lonmax>\n"
626 " --data=<data-type>]\n"
627 " [--dump [--node=<node> ...]\n"
628 " [--segment=<segment> ...]\n"
629 " [--way=<way> ...]]\n"
630 " [--dump-osm [--no-super]\n"
631 " [--latmin=<latmin> --latmax=<latmax>\n"
632 " --lonmin=<lonmin> --lonmax=<lonmax>]]\n");
633
634 if(detail)
635 fprintf(stderr,
636 "\n"
637 "--help Prints this information.\n"
638 "\n"
639 "--dir=<dirname> The directory containing the routing database.\n"
640 "--prefix=<name> The filename prefix for the routing database.\n"
641 "\n"
642 "--statistics Print statistics about the routing database.\n"
643 "\n"
644 "--visualiser Extract selected data from the routing database:\n"
645 " --latmin=<latmin> * the minimum latitude (degrees N).\n"
646 " --latmax=<latmax> * the maximum latitude (degrees N).\n"
647 " --lonmin=<lonmin> * the minimum longitude (degrees E).\n"
648 " --lonmax=<lonmax> * the maximum longitude (degrees E).\n"
649 " --data=<data-type> * the type of data to select.\n"
650 "\n"
651 " <data-type> can be selected from:\n"
652 " junctions = segment count at each junction.\n"
653 " super = super-node and super-segments.\n"
654 " oneway = oneway segments.\n"
655 " speed = speed limits.\n"
656 " weight = weight limits.\n"
657 " height = height limits.\n"
658 " width = width limits.\n"
659 " length = length limits.\n"
660 "\n"
661 "--dump Dump selected contents of the database.\n"
662 " --node=<node> * the node with the selected number.\n"
663 " --segment=<segment> * the segment with the selected number.\n"
664 " --way=<way> * the way with the selected number.\n"
665 " Use 'all' instead of a number to get all of them.\n"
666 "\n"
667 "--dump-osm Dump all or part of the database as an XML file.\n"
668 " --no-super * exclude the super-segments.\n"
669 " --latmin=<latmin> * the minimum latitude (degrees N).\n"
670 " --latmax=<latmax> * the maximum latitude (degrees N).\n"
671 " --lonmin=<lonmin> * the minimum longitude (degrees E).\n"
672 " --lonmax=<lonmax> * the maximum longitude (degrees E).\n");
673
674 exit(!detail);
675 }

Properties

Name Value
cvs:description Test program for mmap files.