Re: [GRASS-user] Using GRASS 6 without starting it (Python)

2015-03-06 Thread sittichai choosumrong
He Pedro Please try to specific your GISDBASE location as the code showing below; import os import sys gisbase = os.environ['GISBASE'] = C:/Program Files/QGIS Valmiera/apps/grass/grass-6.4.3 sys.path.append(os.path.join(os.environ['GISBASE'], etc, python)) gisdbase =

Re: [GRASS-user] grass-user Digest, Vol 107, Issue 9

2015-03-06 Thread Anna Petrášová
On Fri, Mar 6, 2015 at 8:45 PM, Rob Parsons jrobpars...@gmail.com wrote: I converted the interactive script at the top of this page, http://grass.osgeo.org/grass70/manuals/libpython/script.html to a batch script. I understand what the script is trying to do. When I File - Launch script

Re: [GRASS-user] grass-user Digest, Vol 107, Issue 9

2015-03-06 Thread Rob Parsons
I converted the interactive script at the top of this page, http://grass.osgeo.org/grass70/manuals/libpython/script.html to a batch script. I understand what the script is trying to do. When I File - Launch script from the Layer Manager GUI, the script appears to run to completion, but, this

Re: [GRASS-user] Importing USGS' wrs2_descending Shapefile

2015-03-06 Thread Markus Metz
On Fri, Mar 6, 2015 at 8:55 AM, Moritz Lennert mlenn...@club.worldonline.be wrote: On 06/03/15 08:44, Nikos Alexandris wrote: .. Markus M: So, I guess I'll forget the idea to fully automatise the process of Landsat border trimming? Can't we just have all of the Path-Row tiles ready in a

[GRASS-user] Using GRASS 6 without starting it (Python)

2015-03-06 Thread Pedro Camargo
Hi, I have been trying to use GRASS without opening it explicitly following the instructions from here: http://grasswiki.osgeo.org/wiki/Working_with_GRASS_without_starting_it_explicitly#Python:_GRASS_GIS_6 Since I am on Windows, I had to adapt it a bit (and I tried many, many

Re: [GRASS-user] Problem in lidar tutorial

2015-03-06 Thread Martin Landa
Hi, 2015-03-06 8:21 GMT+01:00 Gaurav Parida gparid...@gmail.com: Command 'd.vect map=elev_lidlast_clean siz=2' failed Details: Sorry, siz= is ambiguous What I can't figure out is, that is the command working properly or not. I am using Grass 6.4.4 on windows 7 (64 bit). `siz` is ambiguous

[GRASS-user] Hi!

2015-03-06 Thread Lara DC
Hi everyone! Is t.rast.what not working? error message: 't.rast.what : command not found' How can I get a vector with the data of a whole spatio-temporal database for a particular point (or vector of points)? Tranks! Lara ___ grass-user mailing list

Re: [GRASS-user] Hi!

2015-03-06 Thread Blumentrath, Stefan
Hei Lara, I guess you are working with GRASS 7.0!? t.rast.what is not there (yet?). If you want to use this module you would have to install GRASS 7.1. Cheers Stefan From: grass-user-boun...@lists.osgeo.org [mailto:grass-user-boun...@lists.osgeo.org] On Behalf Of Lara DC Sent: 6. mars 2015

[GRASS-user] v.what.vect interface listing table columns from wrong layer

2015-03-06 Thread Daniel Victoria
Hi all, Using Grass7 n wndows (osgeo4win). I'm running v.what.vect and in the GUI, when I select the query column, the columns shows are the ones from the layer to be update and not from the query layer. I can run the command correctily if I type the correct query column name. It's just the

Re: [GRASS-user] Using GRASS 6 without starting it (Python)

2015-03-06 Thread Pedro Camargo
Hi Sittichai, The location of the database is J:\MY_PROJECT\GRASS Is that what you wanted to know? Thanks, Pedro On Fri, Mar 6, 2015 at 5:51 PM, sittichai choosumrong sittichai@gmail.com wrote: He Pedro Please try to specific your GISDBASE location as the code showing below;