<div dir="ltr"><div dir="ltr"><div>Hi,</div><div><br></div><div>With QGIS master you can use <a href="https://qgis.org/pyqgis/master/core/QgsMeshLayer.html#qgis.core.QgsMeshLayer.updateTriangularMesh">updateTriangularMesh.</a></div><div>Before, there is a workaround that consists to just call <a href="https://qgis.org/pyqgis/3.12/core/QgsMeshLayer.html#qgis.core.QgsMeshLayer.createMapRenderer">createMapRenderer</a> without using the renderer.</div><div><br></div><div>Vincent<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Le sam. 25 avr. 2020 à 11:32, Jorge Almerio <<a href="mailto:jorgealmerio@yahoo.com.br">jorgealmerio@yahoo.com.br</a>> a écrit :<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi everyone,<br>
<br>
Sometimes I got "NaN" return when trying to get scalar value to a point from a Mesh layer. I guess the reason is that it was not rendered previously as said in the documentation.<br>
<br>
<<a href="https://qgis.org/api/classQgsMeshLayer.html#a07cb62f04b64979500d3873afb580216" rel="noreferrer" target="_blank">https://qgis.org/api/classQgsMeshLayer.html#a07cb62f04b64979500d3873afb580216</a>><br>
QgsMeshDatasetValue:<br>
"Note:<br>
    It uses previously cached and indexed triangular mesh and so if the layer has not been rendered previously (e.g. when used in a script) it returns NaN value"<br>
<br>
When I turn ON and OFF the loaded mesh layer in the active project it Works!<br>
<br>
I would like to know if there is a proper way to render the mesh layer, before get values.<br>
<br>
Below is my code:<br>
<br>
proj = QgsProject.instance()<br>
layerPto = iface.activeLayer() # a Point layer<br>
layer = proj.mapLayersByName("mesh01")[0] # a Mesh layer<br>
dataset = QgsMeshDatasetIndex(0,0)<br>
for feat in layerPto.getSelectedFeatures():<br>
    ptoGeo = feat.geometry()<br>
    pt = ptoGeo.asPoint()<br>
    value = layer.datasetValue(dataset, pt).scalar()<br>
    print('elevation={}'.format(value))<br>
<br>
<br>
<br>
_______________________________________________<br>
QGIS-Developer mailing list<br>
<a href="mailto:QGIS-Developer@lists.osgeo.org" target="_blank">QGIS-Developer@lists.osgeo.org</a><br>
List info: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-developer" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br>
Unsubscribe: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-developer" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-developer</a></blockquote></div></div>