Expanded Description
| Topic |
Description |
| Name |
f0602daps |
| Synopsis |
/infobank/programs/kml/ongoing4kml/wh/f0602daps.for |
| Reads |
read (89, '(a7,t10,a19)', end = 89)
* ID(IDCount), AKA(IDCount)
read (90, '(q,a)', end = 99)
* InFileLength, InFile(1:InFileLength)
read (InFile(1:2), '(i2)') Year
read (91, '(q,a)', end = 98)
* ALineLength, ALine(1:ALineLength)
|
| Writes |
write (97, '(a)') '***Unknown ID -- ',InFile(1:5)
write (LongID, '(10x)')
write (80, '(a)')
* InFile(1:InFileLength)//char(9)//
* LongID(1:IDLength(Loop)+3)//'.061'
write (92, '(a)') '! Times are bogus'
write (92, '(a)') '! '
write (92, '(1x)')
write (92, '(a)') ALine(1:ALineLength)
write (92, '(i4.4,i3.3,3i2.2,i1.1,t16,a)')
* Year,Day,Hour,Minute,Second,Tenths,
* ALine(16:ALineLength)
|
| Opens |
open (unit = 89,
* access = 'sequential',
* form = 'formatted',
* status = 'unknown',
* name = '/infobank/programs/keep/ids_list.keep')
open (unit = 91,
* access = 'sequential',
* form = 'formatted',
* status = 'unknown',
* name = InFile(1:InFileLength))
open (unit = 92,
* access = 'sequential',
* form = 'formatted',
* status = 'unknown',
* name = LongID(1:IDLength(Loop)+3)//'.061')
|
| Calls |
call openem (1,0)
call stringlen (ID(IDCount), IDLength(IDCount))
call stringlen (AKA(IDCount), AKALength(IDCount))
call changecase ('SMALLS', ShortID)
|
|