Julian Foad:
- Put a space between arguments and redirection operator: looks nicer and may be necessary in some circumstances. - Add missing option "--min-angle" to help text.
This commit is contained in:
parent
ec83d7a39b
commit
5bb24ff286
1 changed files with 3 additions and 2 deletions
|
@ -200,7 +200,7 @@ bool construct_tile( const SGBucket& b,
|
|||
for (int i = 0; i < (int)load_dirs.size(); i++) {
|
||||
command = command + " " + load_dirs[i];
|
||||
}
|
||||
command = command + "> " + result_file + " 2>&1";
|
||||
command = command + " > " + result_file + " 2>&1";
|
||||
cout << command << endl;
|
||||
|
||||
system( command.c_str() );
|
||||
|
@ -253,7 +253,8 @@ usage (const string name)
|
|||
cout << " --host=<address>" << endl;
|
||||
cout << " --port=<number>" << endl;
|
||||
cout << " --rude" << endl;
|
||||
cout << " --cover=<landcover-raster> ]" << endl;
|
||||
cout << " --cover=<landcover-raster>" << endl;
|
||||
cout << " --min-angle=<degrees> ]" << endl;
|
||||
cout << "<load directory...>" << endl;
|
||||
exit(-1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue