<div dir="auto"><div>Isn't the problem that you have there r.in_xyz instead of <a href="http://r.in.xyz">r.in.xyz</a>?</div><div dir="auto"><br></div><div dir="auto">Anna<br><div class="gmail_extra" dir="auto"><br><div class="gmail_quote">On Feb 12, 2018 9:35 AM, "Pietro" <<a href="mailto:peter.zamb@gmail.com">peter.zamb@gmail.com</a>> wrote:<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div>Dear Jonathan,<br><br></div>the error is due to grass_session that is not creating the location if missing.<br>I don't have time in this day to fix this issue in grass_session, so the fastest fsolution at the momenth is to check and create what is needed step by step.<br><br>I did not have xyz file to test so I've only execute g.gisenv and it works, let me know if it works also with r.inxyz:<br><br></div>```python<br>from __future__ import print_function<br>import os<div class="quoted-text"><br>from grass_session import Session<br>from grass.script import core as gcore<br><br></div>GISDBASE = "/tmp/grassdata"<br>LOCATION = "nrw"<br>EPSG = "EPSG:4326"<br><br><br>if not os.path.exists(GISDBASE):<br>    os.makedirs(GISDBASE)<br><br>if not os.path.exists(os.path.join(<wbr>GISDBASE, LOCATION)):<br>    with Session(gisdb=GISDBASE, location=LOCATION,<br>                 create_opts=EPSG):<br>        print("Created a new location!")<br>else:<br>    print("Location already exist!")<br><br><br>with Session(gisdb=GISDBASE, location=LOCATION, mapset="elevation",<br>             create_opts=""):<br>    gcore.run_command("g.gisenv")<br>```<br><br></div>Best regards<font color="#888888"><br><br></font></div><font color="#888888">Pietro<br></font></div>
<br>______________________________<wbr>_________________<br>
grass-user mailing list<br>
<a href="mailto:grass-user@lists.osgeo.org">grass-user@lists.osgeo.org</a><br>
<a href="https://lists.osgeo.org/mailman/listinfo/grass-user" rel="noreferrer" target="_blank">https://lists.osgeo.org/<wbr>mailman/listinfo/grass-user</a><br></blockquote></div><br></div></div></div>