Skip to content

Commit

Permalink
Do not require -o to be passed when printing extents
Browse files Browse the repository at this point in the history
  • Loading branch information
sfan5 committed Oct 20, 2018
1 parent 8e8cc3d commit f909304
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions mapper.cpp
Expand Up @@ -95,18 +95,13 @@ int main(int argc, char *argv[])
std::string colors = "";

TileGenerator generator;
int option_index = 0;
int c = 0;
bool onlyPrintExtent = false;
while (1) {
c = getopt_long(argc, argv, "hi:o:", long_options, &option_index);
if (c == -1) {
if (input.empty() || output.empty()) {
usage();
return 0;
}
break;
}
int option_index;
int c = getopt_long(argc, argv, "hi:o:", long_options, &option_index);
if (c == -1)
break; // done

switch (c) {
case 'h':
usage();
Expand Down Expand Up @@ -208,14 +203,24 @@ int main(int argc, char *argv[])
exit(1);
}
}
if(colors == "")
colors = search_colors(input);

if (input.empty() || (!onlyPrintExtent && output.empty())) {
usage();
return 0;
}

try {
generator.parseColorsFile(colors);
if (onlyPrintExtent)

if (onlyPrintExtent) {
generator.printGeometry(input);
else
generator.generate(input, output);
return 0;
}

if(colors == "")
colors = search_colors(input);
generator.parseColorsFile(colors);
generator.generate(input, output);

} catch(std::runtime_error e) {
std::cerr << "Exception: " << e.what() << std::endl;
return 1;
Expand Down

0 comments on commit f909304

Please sign in to comment.