var fDesc=new Array(); fDesc[0] = "EZVol is a simple interactive tool which allows the user to calculate stockpile volumes based on a survey of the base perimeter plus a survey of the stockpile surface. EZVol displays the stockpile volume in cubic feet, cubic yards, or cubic meters. The user can enter a density factor for the stockpile material, and the program will display the total weight of the stockpile.
Display options include survey points, TIN (Triangulated Network) surfaces, contour plot of stockpile thickness, and 3-D solid mesh view. The 3-D display can be viewed at various angles, and at a range of vertical exaggeration scales. Interfaces exist for Trimble POS, enCampo, Laser Atlanta, or generic XYZ data.
The user can display the survey points, the Delaunay triangles which form each TIN, a contour plot of stockpile thickness, or a 3-D solid mesh view of the stockpile. The 3-D display can be viewed at any of eight different angles, and at a range of vertical exaggeration scales."; 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 = ''; } }