Hi,

2010/12/14 Patrick_schirmer <[email protected]>:
>        grass.run_command(
>            'v.patch',flags="-o",
> input="GR_av_liegensch_poly"+i+",GR_av_liegensch_poly",
> output="GR_av_liegensch_poly")

v.patch doesn't have `-o` flag. It should be `--o` or `--overwrite`.
Preferred way how to use this flag in Python is `overwrite=True`, so

'v.patch', overwrite=True, input=...

Martin

-- 
Martin Landa <landa.martin gmail.com> * http://geo.fsv.cvut.cz/~landa
_______________________________________________
grass-user mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/grass-user

Reply via email to