Expanded Description
| Topic |
Description |
| Name |
mapit |
| Synopsis |
/infobank/programs/html/mapit/mapit.for |
| Description |
Program to generate thumbnail, metadata, and samples maps.
|
| AUTHOR |
Clint Steele 2/27/2006
added call system to run meter_plots_maparea.aml - CDegnan, 7/26/2011
|
| Reads |
read (90, '(q,a)', end = 99)
* IDLength, ID(1:IDLength)
|
| Writes |
write (LongID, '(10x)')
write (91, '(a)')
* 'arc \\&r /infobank/programs/amls/'//
* 'track_covers.aml '//
* ID(1:IDLength)//' init >
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/cov.log'
write (91, '(a)')
* 'arc \\&r /infobank/programs/amls/'//
* 'ffid.aml '//
* ID(1:IDLength)//'>
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/sw410.log'
write (91, '(a)')
* 'arc \\&r /infobank/programs/amls/'//
* 'track_plots_maparea.aml '//
* ID(1:IDLength)//' >
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/trk.log'
write (91, '(a)')
* 'arc \\&r /infobank/programs/amls/'//
* 'desample_tracks.aml '//
* ID(1:IDLength)//' >
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/dsp.log'
write (91, '(a)')
* 'arc \\&r /infobank/programs/amls/'//
* 'sample_plots_maparea.aml '//
* ID(1:IDLength)//' >
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/smp.log'
write (91, '(a)')
* 'arc \\&r /infobank/programs/amls/'//
* 'meter_plots_maparea.aml '//
* ID(1:IDLength)//' >
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/mtr.log'
write (91, '(a)')
* '/infobank/programs/perl/infobank_e00.pl '//
* ID(1:IDLength)//' >
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/e00.log'
write (91, '(a)')
* 'arc \\&r /infobank/programs/amls/'//
* 'exportseis.aml '//
* ID(1:IDLength)//' >
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/e00b.log'
|
| Opens |
open (unit = 90,
* access = 'sequential',
* form = 'formatted',
* status = 'unknown',
* name = '/infobank/tmp/mapit.control.temp')
open (unit = 91,
* access = 'sequential',
* form = 'formatted',
* status = 'unknown',
* name = '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/mapit.awk')
|
| Calls |
call system ('date')
call changecase ('SMALLS', ID(1:IDLength))
call system ('/bin/mkdir '//
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot')
call system ('/bin/cp /infobank/programs/index.html '//
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/')
call system ('/usr/bin/tcsh '//
* '/infobank/'//ID(1:1)//'/'//
* ID(1:IDLength)//'/plot/mapit.awk')
|
|