<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-3" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Markus Neteler wrote:
<blockquote cite="mid:46CEB408.6060507@itc.it" type="cite">
  <pre wrap="">Luigi Ponti wrote on 08/23/2007 05:07 PM:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Dear list,

Is there a way to "extrude" 2D vector points to 3D points based on
attribute column values, similar to what I have read v.extrude can do
with lines? I have tried to use v.extrude with points but an empty 3D
vector was created.
    </pre>
  </blockquote>
  <pre wrap=""><!---->ciao Luigi:

1. use 'v.db.addcol' to add also an x and y column

2. then upload also x and y to attribute table with 'v.to.db'
   (so you have x,y,z there as *attribute*)

3. run 'v.in.db' to re-generate the point map as 3D map, indicating
   x=xcol y=ycol z=zcol</pre>
</blockquote>
Thanks Markus!<br>
<br>
Just finished to try out your method for 2D point "extrusion", and it
works OK.<br>
I thought that the v.out.ascii.db script would hide some of the steps
you described. However, while Maciek's approach was based on
'v.out.ascii'/'v.in.ascii' plus 'db.select', yours was based only on
*db* commands (no intermediary text file).<br>
Thanks both for your help/teaching,<br>
<br>
Luigi<br>
<br>
</body>
</html>