<div dir="ltr"><div><div>Hi, I am trying to create a LAS file using the c++ API following the tutorial posted in the web page for c++. But when I use "lasinfo" tool for check the result I see the header "MAX X Y Z" and "MIN X Y Z" <span id="result_box" class="" lang="en"><span class="">attribute</span></span> with value "0" instead of the values with the point that I wrote.<br><br></div>## My code:<br><br></div><div>main()<br>{<br></div><div>......<br>      liblas::Header header;<br>      liblas::Writer writer(ofs, header);<br>      liblas::Point point(&header);<br>      point.SetCoordinates(10, 20, 30);<br>      writer.WritePoint(point);<br><br></div>      return 0;<br>}<br><div><div>.....<br><br></div><div>## Lasinfo Output:<br><br>---------------------------------------------------------<br>  Header Summary<br>---------------------------------------------------------<br>...<br>  Min X Y Z:                   0 0 0<br>  Max X Y Z:                  0 0 0<br>...<br><br>  Minimum and Maximum Attributes (min,max)<br>---------------------------------------------------------<br>  Min X, Y, Z:         10, 20, 30<br>  Max X, Y, Z:         10, 20, 30<br>...<br><br></div><div>I think (reading the lasinfo code) that lasinfo <span id="result_box" class="" lang="en"><span class="">implementation uses an structure "Summary" and add each point readed to that structure, for this reason the values are </span></span><span id="result_box" class="" lang="en"><span class=""><span id="result_box" class="" lang="en"><span class="">right in the second output ("Minimum and Maximum attributes </span></span></span></span><span id="result_box" class="" lang="en"><span class=""><span id="result_box" class="" lang="en"><span class=""> (min,max))". However I don't know if it's possible modify the header after a point is inserted, I tried it unsuccessfully :(. </span></span><br></span></span></div><div><br></div><div>Someone knows how to modify the header after the "liblas::Writer writer(ofs, header);" call or if the writer implementation must fix the header max and min?<br><br></div><div>Thanks ;).<br></div></div></div>