Re: [GRASS-user] Re: v.kernel -- how to get useful results

2011-02-16 Thread Markus Metz
Aren Cambre wrote: As soon as a raster map is accessed as input or output, the current region settings are used (for most modules) as the extents and resolution for any raster operations. If I have a GRASS vector map that is simply an import of PostGIS points (no attributes), is the region

Re: [GRASS-user] Reporting Error Message

2011-02-16 Thread Martin Landa
Hi, 2011/2/16 Rich Shepard rshep...@appl-ecosys.com:  Starting a couple of new projects by importing state and county outlines. When I quit the GUI I saw this on the console: (python:9483): Pango-CRITICAL **: pango_layout_get_cursor_pos: assertion ndex = 0 index = layout-length' failed

[GRASS-user] creating vector grids (especially associated with projections)

2011-02-16 Thread Patrice Dumas
Hello, I have meteorological data that are on diverse grids, in general associated with a specific projection. For example, a lambert conic projection has a 'natural' grid associated, just like the lon-lat grid is a natural grid for lon-lat pprojection. Then I would like to intersect a vector

Re: [GRASS-user] creating vector grids (especially associated with projections)

2011-02-16 Thread Hamish
Patrice wrote: But for other grids, like a non regular lon lat grid (more precise in the middle) nested or non-linear? or for a lambert conformal 'natural' grid (which are the examples I have) or any other grid that could arise, is there a simple way to do a vector corresponding with that

Re: [GRASS-user] creating vector grids (especially associated with projections)

2011-02-16 Thread Hamish
a web search found this: http://www.genekeyes.com/CKOG-OOo/6-CKOG-grid--illus.html ___ grass-user mailing list grass-user@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/grass-user

[GRASS-user] Calculate averagfe of raster maps without mapcalc

2011-02-16 Thread Kim Besson
Greetings I need to calculate the average of a set of raster images. How can I calculate it without using mapcalc? THanks Kim ___ grass-user mailing list grass-user@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/grass-user

[GRASS-user] Eliminating values based on a null

2011-02-16 Thread Jenny Turner
Greetings in my base map (called X) I have a few null values and, in Y map I want to eliminate pixels that match with null values in X. How can I do this? besides using mapcalc Thanks Jenny ___ grass-user mailing list grass-user@lists.osgeo.org

Re: [GRASS-user] GRASS-6.5svn Build Error

2011-02-16 Thread Rich Shepard
On Wed, 16 Feb 2011, Markus Metz wrote: Oops, fixed in r45409. Sorry for the inconvenience! Markus, Thanks! This is the first build error I've encountered with GRASS. I'll get the new code and build it today. Rich ___ grass-user mailing list

Re: [GRASS-user] Calculate averagfe of raster maps without mapcalc

2011-02-16 Thread daniel mcinerney
Hi Kim, You can use r.univar to compute univariate statistics of your raster data. http://grass.fbk.eu/grass65/manuals/html65_user/r.univar.html Regards, Daniel. On Wed, Feb 16, 2011 at 2:31 PM, Kim Besson kimbesson1...@gmail.com wrote: Greetings I need to calculate the average of a set of

Re: [GRASS-user] GRASS-6.5svn Build Error

2011-02-16 Thread Rich Shepard
On Wed, 16 Feb 2011, Rich Shepard wrote: Thanks! This is the first build error I've encountered with GRASS. I'll get the new code and build it today. BTW, while the code now compiles, I see syntax errors in glext.h flash by on the console. Rich

[GRASS-user] Re: Calculate averagfe of raster maps without mapcalc

2011-02-16 Thread Marcello Gorini
Kim: I need to calculate the average of a set of raster images. How can I calculate it without using mapcalc? THanks Hello Kim, You can use the module r.series. Like this, if you have few images: r.series input=image1,image2,image3... method=average output=averaged_image Or if you have a

[GRASS-user] Re: Eliminating values based on a null

2011-02-16 Thread Marcello Gorini
Jenny: in my base map (called X) I have a few null values and, in Y map I want to eliminate pixels that match with null values in X. How can I do this? besides using mapcalc Hello Jenny, I don't know if it is a coincidence, but your problem can be solved in the same way as Kim's problem. You

[GRASS-user] renaming a raster map in a Python Script

2011-02-16 Thread Monica Buescu
Greetings I have a GRASS Python Script where I create a raster map and I want to rename it. How can I rename a raster map in a GRASS Python Script? Thanks Monica ___ grass-user mailing list grass-user@lists.osgeo.org

Re: [GRASS-user] renaming a raster map in a Python Script

2011-02-16 Thread Glynn Clements
Monica Buescu wrote: I have a GRASS Python Script where I create a raster map and I want to rename it. How can I rename a raster map in a GRASS Python Script? import grass.script as grass grass.run_command('g.rename', rast = (oldname, newname)) -- Glynn Clements

Re: [GRASS-user] Re: v.kernel -- how to get useful results

2011-02-16 Thread Aren Cambre
Input is always a vector map with points, net is an optional input vector map with lines for a network, e.g. if you want densities of road accidents along a road network and not per grid cell. Thank you for this explanation. Are these just GRASS conventions, or are they specific to v.kernel?

[GRASS-user] python scripts load error

2011-02-16 Thread Peter Tittmann
greeting experts. i'm attempting to import grass.script in python unsuccessfully (ImportError: No module named grass.script) ive set the environment variables according to this http://grass.osgeo.org/wiki/GRASS_and_Python#General_guides on ubuntu x64 Natty. can anyone recommend a solution? i

Re: [GRASS-user] python scripts load error

2011-02-16 Thread Glynn Clements
Peter Tittmann wrote: i'm attempting to import grass.script in python unsuccessfully (ImportError: No module named grass.script) ive set the environment variables according to this http://grass.osgeo.org/wiki/GRASS_and_Python#General_guides on ubuntu x64 Natty. can anyone recommend a

Re: [GRASS-user] Re: v.kernel -- how to get useful results

2011-02-16 Thread Markus Metz
Aren Cambre wrote: Input is always a vector map with points, net is an optional input vector map with lines for a network, e.g. if you want densities of road accidents along a road network and not per grid cell. Thank you for this explanation. Are these just GRASS conventions, or are they