[GRASS-user] problems with v.report

hy everybody,
I am working on a project involving geografical data. I used grass61 until the end of june, now I reinstalled my system and but grass62.

The problem is that when I try to use v.report on a layer containing points.
v.report map=roadmapCleanedAndSplit layer=1 option=coor

strangely the list I get includes only the x coordinate, y coodinate is missing.

output:
cat|type|name|active|line|segment|x|y
16021||||||681109.126691232
16022||||||678959.20221614

it worked fine before I reinstalled the system.

what am I doing wrong?

thanks
dziadgba

dziadgba dziadgba wrote:

hy everybody, I am working on a project involving geografical data.
I used grass61 until the end of june, now I reinstalled my system
and but grass62.

The problem is that when I try to use v.report on a layer containing
points.

v.report map=roadmapCleanedAndSplit layer=1 option=coor

strangely the list I get includes only the x coordinate, y coodinate
is missing.

output: cat|type|name|active|line|segment|x|y
16021||||||681109.126691232 16022||||||678959.20221614

I confirm the bug in GRASS 6.3 CVS. Please report it to the tracker.
Maybe someone will take care of it.

To reproduce:

$ v.random pts n=10

$ v.db.addtable pts col="type integer, name integer, active integer,
line integer, segment integer"

$ v.report pts l=1 option=coor
Displaying column types/names for database connection of layer 1:
cat|type|name|active|line|segment|x|y
1||||||315944.245860492
2||||||315943.02604087
3||||||315944.333765665
4||||||315943.239324958
5||||||315943.26666863
6||||||315944.707150026
7||||||315942.693309915
8||||||315944.831520575
9||||||315942.401369586
10||||||315943.646957952

Maciek