var fDesc=new Array();
fDesc[0] = "The Datgel Survey Tools gINT Add-In consists of a range of utilities for the processing and querying of 3D surfaces, alignments and tidal data.
1. Set Coordinate Chainage Offset Tool: Calculates the coordinates to/from chainage and offset based on alignment data.
2. Grid File Pre-processing Tool: Pre-processes surface files to produce perfect grids, slice up over sized grids, invert elevations and replace null values.
3. Set Elevation or Depth from Surface Tool: Sets the depth or elevation for a range table structures from 3D surfaces.
4. Set Seabed Elevation Tool: Calculates seabed elevation for each point based on water depth and tidal information.
How It Works
Once installed you simply select the Datgel Survey Tools from the gINT Add-Ins Menu. You can access the four tools below from this menu.
Set Coordinate Chainage Offset Tool
The Set Coordinate Chainage Offset Tool gINT Add-In allows the user to calculate the East/North coordinates for the records on the POINT table from the chainage/offset values of a pre-defined alignment name and vice versa.";
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 = '';
}
}