This archive contains answers to questions sent to Unidata support through mid-2025. Note that the archive is no longer being updated. We provide the archive for reference; many of the answers presented here remain technically correct, even if somewhat outdated. For the most up-to-date information on the use of NSF Unidata software and data services, please consult the Software Documentation first.
Scott & Steve,
Some more tweaking of the GIF driver-
HSDATT.f has a call:
CALL HSCINT (lastbl, iret)
however, the number of args doesn't match HSCINT.f
SUBROUTINE HSCINT ( iret )
The lastbl parameter is never used, so I removed it from
the hsdatt.f call.
Also, the hsctbl.f from tamu which I uploaded to AS2 yesterday
has the line near the end:
lastbl = coltbl
I commented this out:
C lastbl = coltbl
Since lastbl is not of type char , its an error. Presumably,
lastbl was supposed to hold a unit number... but, thats
only a guess and I can see no reason for it.
Steve