Hi Popi,
Well, if your data input file is a mix of strings and numbers then you will need to do following:
1- open the file for reading using OPENR
2- specify that the text "Band" is a string, i.e. bandname=''
3- READF, lun0, bandname, value1, value2, format='(a5, i1,i1)'
4- try to see the results by using the command: HELP, bandname, value1
5- close the file: free_lun, lun
I hope this helps.
Cheers,
Fernando
|