|
@@ -200,12 +200,14 @@ int main(int argc, char *argv[])
|
|
}
|
|
}
|
|
method_opt->options = p;
|
|
method_opt->options = p;
|
|
method_opt->description = _("Method for aggregate statistics");
|
|
method_opt->description = _("Method for aggregate statistics");
|
|
|
|
+ method_opt->guisection = _("Statistics");
|
|
|
|
|
|
point_column_opt = G_define_standard_option(G_OPT_DB_COLUMN);
|
|
point_column_opt = G_define_standard_option(G_OPT_DB_COLUMN);
|
|
point_column_opt->key = "points_column";
|
|
point_column_opt->key = "points_column";
|
|
point_column_opt->label =
|
|
point_column_opt->label =
|
|
_("Column name of points map to use for statistics");
|
|
_("Column name of points map to use for statistics");
|
|
point_column_opt->description = _("Column of points map must be numeric");
|
|
point_column_opt->description = _("Column of points map must be numeric");
|
|
|
|
+ point_column_opt->guisection = _("Statistics");
|
|
|
|
|
|
count_column_opt = G_define_standard_option(G_OPT_DB_COLUMN);
|
|
count_column_opt = G_define_standard_option(G_OPT_DB_COLUMN);
|
|
count_column_opt->key = "count_column";
|
|
count_column_opt->key = "count_column";
|
|
@@ -213,12 +215,14 @@ int main(int argc, char *argv[])
|
|
count_column_opt->label = _("Column name to upload points count");
|
|
count_column_opt->label = _("Column name to upload points count");
|
|
count_column_opt->description =
|
|
count_column_opt->description =
|
|
_("Column to hold points count, must be of type integer, will be created if not existing");
|
|
_("Column to hold points count, must be of type integer, will be created if not existing");
|
|
|
|
+ count_column_opt->guisection = _("Statistics");
|
|
|
|
|
|
stats_column_opt = G_define_standard_option(G_OPT_DB_COLUMN);
|
|
stats_column_opt = G_define_standard_option(G_OPT_DB_COLUMN);
|
|
stats_column_opt->key = "stats_column";
|
|
stats_column_opt->key = "stats_column";
|
|
stats_column_opt->label = _("Column name to upload statistics");
|
|
stats_column_opt->label = _("Column name to upload statistics");
|
|
stats_column_opt->description =
|
|
stats_column_opt->description =
|
|
_("Column to hold statistics, must be of type double, will be created if not existing");
|
|
_("Column to hold statistics, must be of type double, will be created if not existing");
|
|
|
|
+ stats_column_opt->guisection = _("Statistics");
|
|
|
|
|
|
fs_opt = G_define_standard_option(G_OPT_F_SEP);
|
|
fs_opt = G_define_standard_option(G_OPT_F_SEP);
|
|
fs_opt->guisection = _("Print");
|
|
fs_opt->guisection = _("Print");
|