Please try on other unix Systems [message #16557] |
Mon, 02 August 1999 00:00 |
R.Bauer
Messages: 1424 Registered: November 1998
|
Senior Member |
|
|
I have to add, that's the routine also crashes idl if I don't use a startup file.
Instead of a startup file I include the commands into the routine.
PRO ncdf_error2
; One following three commands will crash idl using aix IDL 5.2.1
window,0,xsize=100,ysize=100,color=256
device,decomposed=0
widget_control,default_font='-adobe-helvetica-medium-r-norma l--12-*-*-*-*-60-*-*'
; ---------------------------
FOR ii=0,200 DO BEGIN
PRINT,ii
FOR i=1,30 DO BEGIN
cdfid = NCDF_OPEN('ncdf_error.nc',/NOWRITE) ; OPEN the file
NCDF_CLOSE,cdfid
ENDFOR
ENDFOR
END
Who don't have already a netCDF File should try the example routine ncdf_rdwr from
the examples/misc/sdf
directory.
Regards
R.Bauer
|
|
|