[GRASSLIST:8845] RE: table of x, y and z points

-----Original Message-----
From: owner-GRASSLIST@baylor.edu [mailto:owner-GRASSLIST@baylor.edu] On
Behalf Of 1010664@isep.ipp.pt
Sent: Wednesday, November 02, 2005 3:01 PM
To: GRASSLIST@baylor.edu
Subject: [GRASSLIST:8844] table of x, y and z points

Hi all,

With a table of x, y znd z points can I have the correspondent map? Is this
possible with GRASS? How can I make it?
Thanks!

Best Regards,
Tiago Salgueiro

=======================================

Yes, if you have a database table (dbf), you can use v.in.db; if you have a
plain ascii text file, use v.in.ascii.

Read:

http://grass.itc.it/grass61/manuals/html61_user/v.in.ascii.html
http://grass.itc.it/grass61/manuals/html61_user/v.in.db.html

Hope this helps,

~ Eric.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Eric Patton

Technologist, Geo-Spatial Data Services
Geological Survey of Canada (Atlantic)
Natural Resources Canada
Bedford Institute of Oceanography
Dartmouth, Nova Scotia, Canada B2Y 4A2

Postal address: P.O. Box 1006
Courier address: 1 Challenger Drive

Telephone: (902)426-7732
Facsimile: (902)426-4104
E-mail: epatton@NRCan.gc.ca

-----Original Message-----
From: owner-GRASSLIST@baylor.edu [mailto:owner-GRASSLIST@baylor.edu] On
Behalf Of 1010664@isep.ipp.pt
Sent: Wednesday, November 02, 2005 3:01 PM
To: GRASSLIST@baylor.edu
Subject: [GRASSLIST:8844] table of x, y and z points

Hi all,

With a table of x, y znd z points can I have the correspondent map? Is
this
possible with GRASS? How can I make it?
Thanks!

Best Regards,
Tiago Salgueiro

=======================================

Yes, if you have a database table (dbf), you can use v.in.db; if you have
a
plain ascii text file, use v.in.ascii.

Read:

http://grass.itc.it/grass61/manuals/html61_user/v.in.ascii.html
http://grass.itc.it/grass61/manuals/html61_user/v.in.db.html

Hope this helps,

~ Eric.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Eric Patton

Technologist, Geo-Spatial Data Services
Geological Survey of Canada (Atlantic)
Natural Resources Canada
Bedford Institute of Oceanography
Dartmouth, Nova Scotia, Canada B2Y 4A2

Postal address: P.O. Box 1006
Courier address: 1 Challenger Drive

Telephone: (902)426-7732
Facsimile: (902)426-4104
E-mail: epatton@NRCan.gc.ca

Dear all,

I have for example the following text file called teste:

x y z
1 2 3
2 3 2
4 5 1
3 1 2

I tried
$ v.in.ascii -z input=/home/teste fs=tab skip=1
and nothing happens.
Is the command correct?

Thanks

_____________________
Cumprimentos/Best Regards,

Tiago Salgueiro
NÂș1010664

I have for example the following text file called teste:

x y z
1 2 3
2 3 2
4 5 1
3 1 2

I tried
$ v.in.ascii -z input=/home/teste fs=tab skip=1
and nothing happens.
Is the command correct?

What do you mean by "Nothing happens"?

Without an output=map_name it gives an error, and without z=3 it says
"ERROR: Please specify z column."

So try:

GRASS 6.1> v.in.ascii -z z=3 input=/home/teste fs=tab skip=1 output=test

Hamish