[GRASS-user] Re: Arcgrid - strange values

2010-12-12 Thread Gabriele N.

Hi Daniel, Hi Frank.

I tried to export in different ways (as GeoTIFF, as float etc. ..) and
import it into arc in different ways. At this point, I think it is a
limitation of arc  someone knows something?

Gabriele
-- 
View this message in context: 
http://osgeo-org.1803224.n2.nabble.com/Arcgrid-strange-values-tp5802385p5827736.html
Sent from the Grass - Users mailing list archive at Nabble.com.
___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


[GRASS-user] Re: Assign attributes of start and enpoints to connecting lines

2010-12-12 Thread Shane Litherland
Hi Hanlie,
I am getting out of my depth here, and might be leading you astray...

But I had a little challenge a few months ago, wanting to generate
points along a line to then use to create other tangent lines (in
science terms, generating belt-transects across a gully, at randomly
defined distances from start of gully)... sounds vaguely like a simpler
version of what you're doing.

I used a combo of v.segment, v.type_wrapper.sh,... and some beginner
fumbling... from your initial post, I'm guessing you've already got
these under your belt?

If your current hurdle is getting a new column into the table for the
river segments layer, from info in the points layer, could you achieve
this by working directly with the tables (database)? rather than a GRASS
command?? Do you have some linking field between the points and the
segments layers (e.g. segment_cat)? if you do, or can make one, could
you e.g.:
SELECT (start_node_name\ end_node_name) AS segment_name FROM
points_layer_table
and update this to the river segment table??
UPDATE river_segment_table SET new_column_for_label=segment_name
WHERE river_segment_table.segment_cat=points_layer.segment_cat

##note this isn't gramatically correct SQL... just an idea..
Please excuse crude SQL example, I'm still dusting off my old MSACCESS
knowledge and 'converting' it to Postgresql... You can probably get a
select/update process in one easy step with the right SQL sweet-talking?

If i'm off track, apologies for misleading you ;-) if you get something
out of it, i might promote myself from complete novice at sql to
someone that knows just enough to break things

Regards,
Shane.


___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user


[GRASS-user] Assign attributes of start and enpoints to connecting lines

2010-12-12 Thread Hanlie Pretorius
Hi Richard,

Your suggestion worked in principle, but the whole operation needs
more work. I ended up with the same node names in the start and end
node columns, so I think a script is needed to identify the start and
end nodes based on the direction of the flow of the river. An
elevation column in the points layer could provide this information.

Regards
Hanlie

 Date: Sun, 12 Dec 2010 07:33:41 +1100
 From: Richard Chirgwin rchirg...@ozemail.com.au
 Subject: Re: [GRASS-user] Assign attributes of start and enpoints to,
   connecting lines
 To: grass-user@lists.osgeo.org
 Message-ID: 4d03e025.7040...@ozemail.com.au
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed

 Convert the start and end nodes to points using v.to.points, and then
 use v.distance?

 Richard

___
grass-user mailing list
grass-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-user