var fDesc=new Array();
fDesc[0] = "PHOTOMOD GeoMosaic is intended for working with various types of digital images, including aerial and space imagery as well as digitized raster maps.
The program functionality includes:
- Georeferencing of raster images;
- Transforming images from one coordinate system to another, using an extensive database supplied or custom created coordinate systems;
- Creating mosaics from georeferenced images of various formats;
- Photometric correction of source images for mosaic creation;
- Automatic or manual creation of ROIs;
- Splitting created mosaic into specifed sheets (including standard sheets);
- Specifying pixel size;
- Specifying custom printing scale;
- Selecting georeferencing file type (PHOTOMOD GEO, ArcWorld TFW, Mapinfo TAB);
- Affine transformation of input images.";
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 = '';
}
}