[GRASS-SVN] r33636 - in grass/trunk/display: d.geodesic d.rhumbline
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Oct 1 00:58:21 EDT 2008
Author: hamish
Date: 2008-10-01 00:58:21 -0400 (Wed, 01 Oct 2008)
New Revision: 33636
Modified:
grass/trunk/display/d.geodesic/main.c
grass/trunk/display/d.rhumbline/main.c
Log:
fix errs in last commit; d.rhumbline module desc
Modified: grass/trunk/display/d.geodesic/main.c
===================================================================
--- grass/trunk/display/d.geodesic/main.c 2008-10-01 04:53:31 UTC (rev 33635)
+++ grass/trunk/display/d.geodesic/main.c 2008-10-01 04:58:21 UTC (rev 33636)
@@ -77,7 +77,7 @@
G_fatal_error(_("Location is not %s"), G__projection_name(PROJECTION_LL));
if (parm.coor->answers[0] == NULL)
- G_fatal_error(_("No coordinates given");
+ G_fatal_error(_("No coordinates given"));
if (!G_scan_easting(parm.coor->answers[0], &lon1, G_projection()))
G_fatal_error(_("%s - illegal longitude"), parm.coor->answers[0]);
Modified: grass/trunk/display/d.rhumbline/main.c
===================================================================
--- grass/trunk/display/d.rhumbline/main.c 2008-10-01 04:53:31 UTC (rev 33635)
+++ grass/trunk/display/d.rhumbline/main.c 2008-10-01 04:58:21 UTC (rev 33636)
@@ -43,8 +43,7 @@
module = G_define_module();
module->keywords = _("display");
module->description =
- _("Displays the rhumbline joining two user-specified "
- "points, in the active frame on the user's graphics monitor.");
+ _("Displays the rhumbline joining two longitude/latitude coordinates.");
parm.coor = G_define_option();
parm.coor->key = "coor";
@@ -78,7 +77,7 @@
G__projection_name(PROJECTION_LL));
if (parm.coor->answers[0] == NULL)
- G_fatal_error(_("No coordinates given");
+ G_fatal_error(_("No coordinates given"));
if (!G_scan_easting(parm.coor->answers[0], &lon1, G_projection()))
G_fatal_error(_("%s - illegal longitude"), parm.coor->answers[0]);
More information about the grass-commit
mailing list