[GRASS-dev] Re: [GRASS-user] m.proj error

Nikos:

In grass-6.3.1svn if I do "g.region -c" I get
a D:M:S output and not decimal degrees.

'g.region -cg'

Now I want to use m.proj to have decimal degrees
but I always get the following error:

"read: 201: Illegal option -n"

?

m.proj wants DMS in PROJ.4 style, i.e. 123d45'56"
a little sed magic can make that happen if needed.
use 'm.proj -d' if you want decimal output.

Hamish

On Mon, 2008-06-16 at 08:25 -0700, Hamish wrote:

m.proj wants DMS in PROJ.4 style, i.e. 123d45'56"
a little sed magic can make that happen if needed.
use 'm.proj -d' if you want decimal output.

Got it!