[GRASS-dev] Image Segmentation - GRASS - GSoC report #8

2012-07-13 Thread Eric Momsen
Hi, Here is this week's update: Accomplished: * "mid term" review, not just the required question from Google, but also compiling and prioritizing remaining ideas for improving the program. * Started on that todo list, doing some general code clean up after getting some detailed comments from M

Re: [GRASS-dev] Problem compiling ximgview in the latest grass_trunk

2012-07-13 Thread Pierre Roudier
Thanks heaps for your help Glynn, it worked. For reference, here's the workaround I used: roudierp@mangatainoka:/usr/local/src/grass_trunk$ more include/Make/Platform.make | grep -n XLIB 86:XLIBPATH= -L/usr/bin Cheers, Pierre 2012/7/14 Glynn Clements : > > Pierre Roudier wrote: > >>

Re: [GRASS-dev] Problem compiling ximgview in the latest grass_trunk

2012-07-13 Thread Glynn Clements
Pierre Roudier wrote: > Is there an easy work-around this? Provided that the configure script completes, you can edit include/Make/Platform.make by hand. The relevant variables are XLIBPATH and XLIB. -- Glynn Clements ___ grass-dev mailing list gras

[GRASS-dev] [pyGRASS] Report #8

2012-07-13 Thread Pietro
Hi everyone! you can follow the pyGrass's progress from the wiki page: http://grass.osgeo.org/wiki/GRASS_SoC_Ideas_2012/High_level_map_interaction#Report7_-_2012-07-13 1) What did I do this week? Start to work on the pygrass modules class. 2) What will I be working on next week? Continue with

[GRASS-dev] Weekly report #8 - GRASS v.net front end

2012-07-13 Thread Štěpán Turek
Hello, 1) What do I have completed this week? This week I have integrated 5 v.net.* modules into front end. I have also added output console into dialog and analysis run in other thread. More info can be found at [1]. 2) What am I going to achieve for next week? I am going to work on improv

Re: [GRASS-dev] limits of r.patch

2012-07-13 Thread Doug_Newcomb
Margherita, You may be running into the open file limit for linux. http://www.cyberciti.biz/faq/linux-increase-the-maximum-number-of-open-files/ , although 1573 files seems a bit low.I generally batch my r.patch'ing in groups of 120 or so with a python script , then go back and r.pat

Re: [GRASS-dev] limits of r.patch

2012-07-13 Thread Luca Delucchi
2012/7/13 Margherita Di Leo : > Hi All, > hi madi > I probably am requiring too much, but this is just for sharing an > experience. I've just imported in GRASS 1573 ASTER GDEM tiles, using > r.external, and everything seemed to be OK. Then I ran: > > GRASS 6.4.3svn (ASTER_GDEM):~ > r.patch in=`g.

[GRASS-dev] limits of r.patch

2012-07-13 Thread Margherita Di Leo
Hi All, I probably am requiring too much, but this is just for sharing an experience. I've just imported in GRASS 1573 ASTER GDEM tiles, using r.external, and everything seemed to be OK. Then I ran: GRASS 6.4.3svn (ASTER_GDEM):~ > r.patch in=`g.mlist pat=AST* sep=,` out=aster_gdem ERROR 1: TIFFOp

Re: [GRASS-dev] script selecting the extent

2012-07-13 Thread Margherita Di Leo
Solved by: gdaltindex index.shp *.tif ogr2ogr -f CSV list.csv an_index.shp -spat xmin ymin xmax ymax ciao On Fri, Jul 13, 2012 at 11:37 AM, Margherita Di Leo < dileomargher...@gmail.com> wrote: > Hi, > > I have more than 22000 GeoTiff's stored in a folder (the world coverage of > ASTER GDEM) an

[GRASS-dev] script selecting the extent

2012-07-13 Thread Margherita Di Leo
Hi, I have more than 22000 GeoTiff's stored in a folder (the world coverage of ASTER GDEM) and I have to select among them only those covering the Europe area, in order to import them in GRASS. I was about to write a Python script to do that (using gdalinfo), but I felt like reinventing the wheel,