Add -O option to usage screen

sql-rework
Tomasz Goliński 2020-08-28 17:35:19 +02:00
rodzic 5c37309c3d
commit 3a3c275954
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -31,6 +31,7 @@ Generate HTML stats from Opencaching data or GPX files.
* Output:
-N compute stats only for unfound caches (works only with SQLite)
-O compute stats only for owned caches (works only with SQLite)
-Q exclude quiz caches from unfound caches
-H file render a heat map to a file
-s n stamp size for a heat map (default = 15)

Wyświetl plik

@ -28,7 +28,8 @@ void show_usage() {
std::cout << "\t-i timestamp\tstart date\n";
std::cout << "\t-f timestamp\tfinish date\n";
std::cout << " * Output:\n";
std::cout << "\t-N\t\tcompute stats only for unfound caches (works only with SQLite)\n";
std::cout << "\t-N\t\tcompute stats for unfound caches (works only with SQLite)\n";
std::cout << "\t-O\t\tcompute stats for owned caches (works only with SQLite)\n";
std::cout << "\t-Q\t\texclude quiz caches from unfound caches\n";
std::cout << "\t-H file\t\trender a heat map to a file\n";
std::cout << "\t-s n\t\tstamp size for a heat map (default = 15)\n";