<div dir="ltr">Hi,<br><br>I want to create a point via python at a specific location using the v.in.ascii command. How can I also specify the colum names or how can a header be used in combination with the standard input. As it is only one single point I don't want to create a txt file containing the header and the info. I tried following in GRASS7:<br>
<br>grass.write_command("v.in.ascii",<br> overwrite=True,<br> format="point",<br> #flags="n",<br> input="-",<br> x=1,<br> y=2,<br> stdin="""X,Y,Name\n<br>
10:20:08E,53:25:27N,my_point_1""",<br> output="my_point",<br> separator=",")<br></div>