GRASS Vector Layers: Difference between revisions

From GRASS-Wiki
Jump to navigation Jump to search
(New page: = Grass Vector Layers = create table road_network (cat integer, id integer); v.category --o in=roads out=outmap option=del v.category --o in=outmap out=stepmap option=add v.to.db map=se...)
 
No edit summary
Line 1: Line 1:
= Grass Vector Layers =
== Introduction ==
 
== Prepare Road Network ==




Line 5: Line 7:


v.category --o in=roads out=outmap option=del
v.category --o in=roads out=outmap option=del
v.category --o in=outmap out=stepmap option=add
v.category --o in=outmap out=stepmap option=add
v.to.db map=setpmap option=cat
v.to.db map=setpmap option=cat


update road_network set id=cat;
update road_network set id=cat;

Revision as of 23:23, 21 May 2008

Introduction

Prepare Road Network

create table road_network (cat integer, id integer);

v.category --o in=roads out=outmap option=del

v.category --o in=outmap out=stepmap option=add

v.to.db map=setpmap option=cat

update road_network set id=cat;