var fDesc=new Array(); fDesc[0] = "ArcScripts is intended for the free exchange of scripts and tools related to ESRI software products. Please alert the moderator if this script is a demo, trial-version, or an advertisement for a retail product.

Akin to the GRIDSPOT AML in workstation ArcInfo, this VB tool overlays a point shapefile or point coverage on a raster layer and assigns the value of the raster to the attribute "SPOT" in the vector layer. If the attribute already exists it is overwritten.

Allows for choice of the raster and vector layers from any of the appropriate layers in the ArcMap table of contents.

Raster and vector layers must be in the same coordinate system or you will get an empty or erroneous result."; 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 = ''; } }