summaryrefslogtreecommitdiff
path: root/navit/maptool
diff options
context:
space:
mode:
authorSebastian Leske <sebastian.leske@sleske.name>2017-05-19 17:31:27 +0200
committerSebastian Leske <sebastian.leske@sleske.name>2017-05-24 18:35:27 +0200
commit2d207a46cca5142fecf74554293cd4bca2b07e8b (patch)
tree588386a27d243c2b2dfa6bd322067560f4644574 /navit/maptool
parent05f76e72ebf5c404cc806830fb2ec1125887dc02 (diff)
downloadnavit-2d207a46cca5142fecf74554293cd4bca2b07e8b.tar.gz
Fix:maptool:Update maptool help and manpage
Diffstat (limited to 'navit/maptool')
-rw-r--r--navit/maptool/maptool.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/navit/maptool/maptool.c b/navit/maptool/maptool.c
index 7af55ce83..b90038bb0 100644
--- a/navit/maptool/maptool.c
+++ b/navit/maptool/maptool.c
@@ -285,19 +285,20 @@ usage(FILE *f)
#ifdef HAVE_POSTGRESQL
fprintf(f,"-d (--db) <conn. string> : get osm data out of a postgresql database with osm simple scheme and given connect string\n");
#endif
+ fprintf(f,"-D (--dump) : dump map data to standard output in Navit textfile format\n");
fprintf(f,"-e (--end) <phase> : end at specified phase\n");
fprintf(f,"-E (--experimental) : Enable experimental features (%s)\n",
experimental_feature_description ? experimental_feature_description : "-not available in this version-");
fprintf(f,"-i (--input-file) <file> : specify the input file name (OSM), overrules default stdin\n");
fprintf(f,"-k (--keep-tmpfiles) : do not delete tmp files after processing. useful to reuse them\n");
- fprintf(f,"-M (--o5m) : input file os o5m\n");
+ fprintf(f,"-M (--o5m) : input data is in o5m format\n");
+ fprintf(f,"-n (--ignore-unknown) : do not output ways and nodes with unknown type\n");
fprintf(f,"-N (--nodes-only) : process only nodes\n");
- fprintf(f,"-o (--coverage) : map every street to item coverage\n");
- fprintf(f,"-P (--protobuf) : input file is protobuf\n");
+ fprintf(f,"-P (--protobuf) : input data is in pbf (Protocol Buffer) format\n");
fprintf(f,"-r (--rule-file) <file> : read mapping rules from specified file\n");
fprintf(f,"-s (--start) <phase> : start at specified phase\n");
fprintf(f,"-S (--slice-size) <size> : limit memory to use for some large internal buffers, in bytes. Default is %dGB.\n", SLIZE_SIZE_DEFAULT_GB);
- fprintf(f,"-t (--timestamp) y-m-dTh:m:s : Set zip timestamp\n");
+ fprintf(f,"-t (--timestamp) <y-m-dTh:m:s> : Set zip timestamp\n");
fprintf(f,"-w (--dedupe-ways) : ensure no duplicate ways or nodes. useful when using several input files\n");
fprintf(f,"-W (--ways-only) : process only ways\n");
fprintf(f,"-U (--unknown-country) : add objects with unknown country to index\n");
@@ -309,6 +310,7 @@ usage(FILE *f)
fprintf(f,"-m (--map) \n");
fprintf(f,"-O \n");
fprintf(f,"-p (--plugin) \n");
+ fprintf(f,"-u (--url) \n");
exit(1);
}