<div dir="ltr"><div><br>I am trying to use libLAS Python API to write point data sets to *.las file. But I am experiencing some problems with the floats values being rounded off<br><br>>>> from liblas import point<br>
>>> pt=point.Point()<br>>>> pt.x=2.323<br>>>> pt.x<br>2.0<br>>>><br><br>If I set the pt.raw_x instead of pt.x I don't see the rounding off problem but no las file is written.<br><br>
>>> pt.raw_x=2.323<br>>>> pt.raw_x<br>2.323<br><br>I am not sure what am I missing. I would appreciate any help with this.<br><br></div><div>Thanks,<br></div>Jitu<br></div>