I have a file that looks like that:
Data from X04 2000
Time: GMT + 0
Date Hour Value
01.01.2003 00:00 60.0
01.01.2003 01:00 63.0
in gfortran on cygwin i use to read the header like that:
CHARACTER(LEN=18)
READ(17,'(A)') header
with no problem
On INTEL Fortran I get an error:
severe (257) formatted I/O to unit open for unformatted transfers ...
or if i read it like that:
READ(17,*) header
severe (24) end-of-file during read ...
What can i try to read this???
Thanx
Data from X04 2000
Time: GMT + 0
Date Hour Value
01.01.2003 00:00 60.0
01.01.2003 01:00 63.0
in gfortran on cygwin i use to read the header like that:
CHARACTER(LEN=18)
READ(17,'(A)') header
with no problem
On INTEL Fortran I get an error:
severe (257) formatted I/O to unit open for unformatted transfers ...
or if i read it like that:
READ(17,*) header
severe (24) end-of-file during read ...
What can i try to read this???
Thanx