[GRASS-user] Re: Uploading bounding box of vectors to database?

2010-01-06 Thread Tim Michelsen
MAP=your_map_name v.db.addcol $MAP column=north DOUBLE PRECISION, \ south DOUBLE PRECISION, east DOUBLE PRECISION, west DOUBLE PRECISION eval `v.info -g $MAP` echo UPDATE $MAP SET north = $north, south = $south, \ east = $east, west = $west | db.execute With the latest efforts to

Re: [GRASS-user] Re: Uploading bounding box of vectors to database?

2010-01-06 Thread Hamish
Tim wrote: How would a windows user solve this or apply your solution? v.db.addcol, v.info, and v.db.update selected from the menus. They'd have to figure out the SQL use from the examples in the help pages (same as I do). Martin's new fancy help search tool will tell you where in the menus