<div dir="ltr">I applied the same method actually (after a bit thinking and reevaluation of my first idea). I prefer to use v.in.ascii -t -r -z input= fs= z= out= , because I'm interpolating the points with v.surf.bspline (bilinear, to be more precise) afterwards.<div>
<br></div><div style>I have some more questions now. Sorry, but I don't know if I should put them in a different e-mail and subject...</div><div style><br></div><div style>I used r.horizon module to build horizon view for 16 directions, consequently I received as a result 8 output raster maps:</div>
<div style>r.horizon elevin=demb30_5_combined@FlemishArdennes direction=0 horizonstep=45 maxdistance=10 horizon=SVF_demb30_5 <br></div><div style><br></div><div style>After that I combined them witn r.mapcalc but with simple addition only:<br>
</div><div style><br></div><div style>r.mapcalc:</div><div style>'SVF_demb30_5_0@FlemishArdennes + SVF_demb30_5_1@FlemishArdennes + SVF_demb30_5_2@FlemishArdennes + SVF_demb30_5_4@FlemishArdennes + SVF_demb30_5_5@FlemishArdennes + SVF_demb30_5_6@FlemishArdennes + SVF_demb30_5_7@FlemishArdennes'</div>
<div style><br></div><div style>Is this approach correct?</div><div style><br></div><div style>And how can I change the range value of the output raster after I have set up first color table with r.colors color=grey. I want to change the range from 0.0-1.0 to something else, like 0.7-1.0 for example to get more contrast or brightness. The last is in fact the question from my first e-mail (see up) with this subject.</div>
<div style><br></div><div style>Thanks a lot for the help!</div><div style><br></div><div style><br></div><div style>Greetings,</div><div style><br></div><div style>Adrian Kirilov </div></div><div class="gmail_extra"><br>
<br><div class="gmail_quote">On Sat, May 18, 2013 at 5:37 AM, Hamish <span dir="ltr"><<a href="mailto:hamish_b@yahoo.com" target="_blank">hamish_b@yahoo.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">Adrian wrote:<br>
> It's a series of points. But how can I export them from all<br>
> imported files (strips) later into a single one ASCII file into<br>
> specific region? I think that v.out.ascii for example is only<br>
> for exporting single file. And I need to export multiple,<br>
> falling into the region. Is this possible in GRASS?<br>
<br>
</div>first set the region and grid size with g.region, check it is<br>
ok with the -p flag.<br>
<br>
then depending on what you want to do:<br>
<br>
cat *.asc | r.in.xyz x= y= z= fs= input=- output=mapname method=<br>
<br>
  or<br>
<br>
cat *.asc | v.in.ascii -r -bt x= y= z= fs= output=mapname<br>
<br>
<br>
r.in.xyz discards points outside of the current region, as does<br>
v.in.ascii if you use the -r flag.<br>
<br>
<br>
<br>
if your data is already processed, sorted, and cleaned I'd<br>
go straight for r.in.xyz myself, but that's just me.<br>
<span class="HOEnZb"><font color="#888888"><br>
<br>
Hamish<br>
</font></span></blockquote></div><br></div>