[GRASS5] [bug #921] (grass) tcltkgrass3.2 dted extraction west input error

Hi,

I am not familiar with DTED but try to follow the problem.

The tcltkgrass line is something like this:
m.dem.extract input=dted output=out blocksize=22 start=1 end=1999

right?

And the help tells me:
m.dem.extract help
m.dem.extract input=name [output=name] [blocksize=value] [start=value]
   [end=value]

Parameters:
      input Input device or file
     output Output raster map (examine only if none specified)
  blocksize Blocksize of tape data
              default: 10240
      start First file to look at
              default: 1
        end Last file to look at
              default: 9999999

Now I cannot see anything with West here. Is it a module internal problem?
(I have currently no DTED data)

Markus

-------------------------------------------- Managed by Request Tracker

Markus Neteler via RT wrote:

I am not familiar with DTED but try to follow the problem.

The tcltkgrass line is something like this:
m.dem.extract input=dted output=out blocksize=22 start=1 end=1999

right?

You're looking at the wrong menu option. The original report said:

When trying to extract DTED files into binary raster using the option
under Misc->DEM/DTED->DTED Extraction, the resulting pop-up menu which

This runs "m.dted.extract".

You're looking at:

  Misc->DEM/DTED->DEM Extraction

The error is obvious enough; the last line of
src/tcltkgrass/module/m.dted.extract should be changed from:

    {entry north {North longitude of region to extract (ddd:mm:ss{E|W}):} 0 ""}
to:
    {entry west {West longitude of region to extract (ddd:mm:ss{E|W}):} 0 ""}

I'll commit a fix.

--
Glynn Clements <glynn.clements@virgin.net>

On Thu, Feb 28, 2002 at 12:36:44PM +0000, Glynn Clements wrote:

Markus Neteler via RT wrote:

> I am not familiar with DTED but try to follow the problem.
>
> The tcltkgrass line is something like this:
> m.dem.extract input=dted output=out blocksize=22 start=1 end=1999
>
> right?

You're looking at the wrong menu option. The original report said:

> When trying to extract DTED files into binary raster using the option
> under Misc->DEM/DTED->DTED Extraction, the resulting pop-up menu which

This runs "m.dted.extract".

You're looking at:

  Misc->DEM/DTED->DEM Extraction

The error is obvious enough; the last line of
src/tcltkgrass/module/m.dted.extract should be changed from:

    {entry north {North longitude of region to extract (ddd:mm:ss{E|W}):} 0 ""}
to:
    {entry west {West longitude of region to extract (ddd:mm:ss{E|W}):} 0 ""}

I'll commit a fix.

Ah - sorry and thanks!

Markus