Skip to content

Two usage messages had unit before increment #536

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/filter1d.c
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ GMT_LOCAL int usage (struct GMTAPI_CTRL *API, int level) {
GMT_Message (API, GMT_TIME_NONE, "\t If only <inc< is given, optionally append +e to keep increment exact [Default will adjust to fit range].\n");
GMT_Message (API, GMT_TIME_NONE, "\t For absolute time filtering, append a valid time unit (%s) to the increment.\n", GMT_TIME_UNITS_DISPLAY);
GMT_Message (API, GMT_TIME_NONE, "\t For spatial filtering with distance computed from the first two columns, specify increment as\n");
GMT_Message (API, GMT_TIME_NONE, "\t [-|+][<unit>]<inc>, with - for fast (Flat Earth) or + for slow (ellipsoidal) calculations [great circle].\n");
GMT_Message (API, GMT_TIME_NONE, "\t [-|+]<inc>[<unit>], with - for fast (Flat Earth) or + for slow (ellipsoidal) calculations [great circle].\n");
GMT_Message (API, GMT_TIME_NONE, "\t Append a geospatial distance unit (%s) or c (for Cartesian distances).\n", GMT_LEN_UNITS_DISPLAY);
GMT_Message (API, GMT_TIME_NONE, "\t Optionally, append +a to add such internal distances as a final output column [no distances added].\n");
GMT_Message (API, GMT_TIME_NONE, "\t Alternatively, give a file with output times in the first column or a comma-separated list.\n");
Expand Down
2 changes: 1 addition & 1 deletion src/sample1d.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ GMT_LOCAL int usage (struct GMTAPI_CTRL *API, int level) {
GMT_Message (API, GMT_TIME_NONE, "\t Append +n to indicate <inc> is the number of t-values to produce over the range instead.\n");
GMT_Message (API, GMT_TIME_NONE, "\t For absolute time resampling, append a valid time unit (%s) to the increment and add +t.\n", GMT_TIME_UNITS_DISPLAY);
GMT_Message (API, GMT_TIME_NONE, "\t For spatial resampling with distance computed from the first two columns, specify increment as\n");
GMT_Message (API, GMT_TIME_NONE, "\t [-|+][<unit>]<inc>, with - for fast (Flat Earth) or + for slow (ellipsoidal) calculations [great circle].\n");
GMT_Message (API, GMT_TIME_NONE, "\t [-|+]<inc>[<unit>], with - for fast (Flat Earth) or + for slow (ellipsoidal) calculations [great circle].\n");
GMT_Message (API, GMT_TIME_NONE, "\t Append a geospatial distance unit (%s) or c (for Cartesian distances).\n", GMT_LEN_UNITS_DISPLAY);
GMT_Message (API, GMT_TIME_NONE, "\t See -A to control how the spatial resampling is done.\n");
GMT_Message (API, GMT_TIME_NONE, "\t Optionally, append +a to add such internal distances as a final output column [no distances added].\n");
Expand Down