[GRASS-user] simple shell problem

2008-03-03 Thread Jarosław Jasiewicz
Hi why: g.region -g | awk -F= '/^nsres=/ {print $2 * 1.45}' works, but: bufdist=`g.region -g | awk -F= '/^nsres=/ {print $2 * 1.45}'` or bufdist=`eval g.region -g | awk -F= '/^nsres=/ {print $2 * 1.45}'` not work, while, wery similar structure: n=`g.region -g | awk -F= '/^n=/ {print

[GRASS-user] NVIZ and rgb ortofotos

2008-03-03 Thread Dr. Manuel Seeger
Hello all, perhaps its a too simple question, how can I drape a coloured ortofoto on an elevation model with NVIZ? Thanks for any hints! Manuel -- ___ Dr. Manuel Seeger Wiss. Assistent Scientific

Re: [GRASS-user] NVIZ and rgb ortofotos

2008-03-03 Thread Hamish
Dr. Manuel Seeger wrote: how can I drape a coloured ortofoto on an elevation model with NVIZ? # to get best resolution. Consider resampling DEM to match. g.region rast=ortofoto # then just nviz elevation=dem_map color=ortofoto Hamish

Re: [GRASS-user] grass2idrisi

2008-03-03 Thread Hamish
orkun wrote: I want to export grass raster meps to idrisi. What type format would you recommend ? Idrisi's ;) $ gdalinfo --formats | grep -i Idrisi RST (rw+): Idrisi Raster A.1 GRASS r.out.gdal format=RST see http://www.gdal.org/frmt_Idrisi.html Hamish

Re: [GRASS-user] simple shell problem

2008-03-03 Thread Manuel Francisco Maestre Páez
Because of the * you must escape the multiplier operator \* (without the quotes) Manuel Francisco Maestre Páez [EMAIL PROTECTED] escribió: - Para: grass-user@lists.osgeo.org De: Jaros#322;aw Jasiewicz [EMAIL PROTECTED] Enviado por: [EMAIL PROTECTED] Fecha: 03/03/2008 09:51 Asunto:

[GRASS-user] Signature made by i.class not accessible?

2008-03-03 Thread Paula . Sankelo
Hello all, I'm a very new GRASS user, and I hope this matter hasn't been discussed many times before. (And I hope this message doesn't arrive to you many times: I've tried sending it two times so far, and with no success. Now I'm trying from my work address, let's see if this helps.) I'm using

[GRASS-user] Re: Signature made by i.class not accessible?

2008-03-03 Thread Paula . Sankelo
Hi! (Re: I can't access the signature file I've created with i.class.) 1. You enter always the same LOCATION in which you created the signatures? Yes, I only work with one location at the moment. 2. Read/Write/Execute permissions for your GIS-DB ok? I think so (although I'm not super good

Re: [GRASS-user] NVIZ and rgb ortofotos

2008-03-03 Thread Tom Russo
On Mon, Mar 03, 2008 at 01:51:57AM -0800, we recorded a bogon-computron collision of the [EMAIL PROTECTED] flavor, containing: Dr. Manuel Seeger wrote: how can I drape a coloured ortofoto on an elevation model with NVIZ? # to get best resolution. Consider resampling DEM to match.

Re: [GRASS-user] v.generalize for polygons?

2008-03-03 Thread Wolf Bergenheim
Hamish, I played around with the map you gave me, and I think I found a way around the problem (though I'm still not very sure about what the real problem is, perhaps too many small areas or too many shorter segments (the boundary seems to be built of a number of smaller lines). I'll try to

[GRASS-user] Checking if a point (X, Y) is inside the polygons of a shape file using command line

2008-03-03 Thread Corrado
Dear friends, I have a shape file, with some polygons. (I have imported it as vector layer.) I have a point, expressed as X,Y coordinates (Easting,Northing). I want to know if the point is inside any of the polygons in the shape file. Is there a command I can use? I would rather use

Re: [GRASS-user] Checking if a point (X, Y) is inside the polygons of a shape file using command line

2008-03-03 Thread John C. Tull
Corrado, You can do this with v.select: v.select ainput=input_points binput=input_polygon out=output_points Cheers, John On Mar 3, 2008, at 8:02 AM, Corrado wrote: Dear friends, I have a shape file, with some polygons. (I have imported it as vector layer.) I have a point, expressed as

Re: [GRASS-user] simple shell problem

2008-03-03 Thread Jarosław Jasiewicz
Manuel Francisco Maestre Páez pisze: Because of the * you must escape the multiplier operator \* (without the quotes) Manuel Francisco Maestre Páez [EMAIL PROTECTED] escribió: - Para: grass-user@lists.osgeo.org De: Jaros#322;aw Jasiewicz [EMAIL PROTECTED] Enviado por: [EMAIL PROTECTED]

[GRASS-user] v.surf.rst and null values

2008-03-03 Thread jessica . gervais
Dear all, I have a set of data points in a semi-column separated file(example file : test.txt) For each location, I have meteo data have been recorded. Missing values are represented by represented by blank. I am using v.in.ascii to import these points. Then, I want to interpolate these point

Re: [GRASS-user] Checking if a point (X, Y) is inside the, polygons of a shape file using command line. Solution using R

2008-03-03 Thread Rick Reeves
Corrado: This is a good task for the R programming environment, which has strong geospatial tools and integrates with GRASS: Check out the following example, which solves the point-in-polygon problem for shape files:

Re: [GRASS-user] v.surf.rst and null values

2008-03-03 Thread Dylan Beaudette
On Monday 03 March 2008, [EMAIL PROTECTED] wrote: Dear all, I have a set of data points in a semi-column separated file(example file : test.txt) For each location, I have meteo data have been recorded. Missing values are represented by represented by blank. I am using v.in.ascii to import

Re: [GRASS-user] v.patch drops boundary vector regions

2008-03-03 Thread Daniel Victoria
I had some similar problems and they were related to topology. I found this in the v.patch man page: NOTES Any vectors that are duplicated among the maps being patched together (e.g., border lines) will have to be edited or removed after v.patch is run. Such editing can be done automatically

[GRASS-user] r.resamp.rsf fails

2008-03-03 Thread Carlos Guâno Grohmann
Hello all I just tried to resample a raster from 0:0:30 to 0:30 resolution, and calculating the curvatures at the same time. I have about 15Gb of free disk space, but after a while, the command fails complaining about not enough disk space... here is the output: Processing all selected output

[GRASS-user] vector data: creating areas from polygon and contour lines?

2008-03-03 Thread Jaime Carrera
Hi list, For a couple of days I've been trying to create three different areas from a polygon (outer boundary) and two contour lines. The polygon is rectangle-shaped, while the contours intersect the rectangle on the right hand side boundary. Is there a way to create three different areas

Re: [GRASS-user] vector data: creating areas from polygon and contour lines?

2008-03-03 Thread Nikos Alexandris
On Mon, 2008-03-03 at 17:16 -0600, Jaime Carrera wrote: Hi list, For a couple of days I've been trying to create three different areas from a polygon (outer boundary) and two contour lines. The polygon is rectangle-shaped, while the contours intersect the rectangle on the right hand side

[GRASS-user] v.overlay and v.select whishlist...

2008-03-03 Thread G. Allegri
I up! the v.overlay and v.select whishlist in [1]. Will they be considered for the 6.4 release, or are them to be expected with the 7? Giovanni [1] http://grass.gdf-hannover.de/wiki/GRASS_6.3_Feature_Plan ___ grass-user mailing list

[GRASS-user] a few suggestions and questions

2008-03-03 Thread Carlos Guâno Grohmann
Hello all first I'd like to make a few suggestions to enhance (IMO) our favorite GIS: - normalize the options in all modules. I noticed that while most commands take --overwrite, some (r.neighbors) use -o - some modules require a dummy value when output a list (r.mask, r.proj, v.proj..). Is this

Re: [GRASS-user] a few suggestions and questions

2008-03-03 Thread Nikos Alexandris
On Mon, 2008-03-03 at 22:52 -0300, Carlos Guâno Grohmann wrote: Hello all [...] is plan curvature in r.param.scale broken? I can't get a map of it. profc works fine. Also is it possible to make r.param.scale work in latlong regions? (please?) Probably not! Just tested... and it says:

Re: [GRASS-user] a few suggestions and questions

2008-03-03 Thread Jarosław Jasiewicz
Nikos Alexandris pisze: On Mon, 2008-03-03 at 22:52 -0300, Carlos Guâno Grohmann wrote: Hello all [...] is plan curvature in r.param.scale broken? I can't get a map of it. profc works fine. Also is it possible to make r.param.scale work in latlong regions? (please?) it is

[GRASS-user] GFOSS symposium at IGC, please contribute now!

2008-03-03 Thread Henning Lorenz
Dear GRASS developers and users! The session IEI-20, Free and open-source geospatial software: applications in Earth Sciences and recent development (http://wiki.osgeo.org/wiki/OSGeo_at_IGC2008 ) at the 33rd IGC, 6th - 14th August 2008 in Oslo (http://www. 33igc.org), did not yet recieve the