var fDesc=new Array(); fDesc[0] = "Geocalc supports a wide range of ASCII text coordinate formats for import and export. Coordinates can be expressed as Latitudes and Longitudes, Easting and Northing or X,Y,Z.
Features :
- Converts coordinate data files between most of the commonly-used mapping systems world-wide.
- Uses seven-parameter transformations.
- Has user-definable parameters allowing deployment anywhere in the world on almost any spheroid or mapping system.
- Includes a large number of predefined mapping systems and spheroids."; 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 = ''; } }