var fDesc=new Array(); fDesc[0] = "Among the most common data structures that have been proposed for the creation of Digital Elevation Models (DEMs),two are the most common, namely the Grid and the TIN (Triangular Irregular Network). TRI is a separate application in which you can create, edit and visualize such DTMs.

The engine is robust enough to process and triangulate over 100000 points in less than 3 seconds (using a typical computer). The program includes break-lines and hole insertion possibilities, volume calculations operations and also provides several filtering algorithms (points, breaklines, triangles filters etc.) for smoothing the surveyor’s inserted data."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }