Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/510/A98 into FORTRAN code for reading data files line by line.
Note that special values are assigned to unknown or unspecified
numbers (also called NULL numbers);
when necessary, the coordinate components making up the right ascension
and declination are converted into floating-point numbers
representing these angles in degrees.
program load_ReadMe
C=============================================================================
C F77-compliant program generated by readme2f_1.5, on 2013-May-23
C=============================================================================
* This code was generated from the ReadMe file documenting a catalogue
* according to the "Standard for Documentation of Astronomical Catalogues"
* currently in use by the Astronomical Data Centers (CDS, ADC, A&A)
* (see full documentation at URL http://vizier.u-strasbg.fr/doc/catstd.htx)
* Please report problems or questions to
C=============================================================================
implicit none
* Unspecified or NULL values, generally corresponding to blank columns,
* are assigned one of the following special values:
* rNULL__ for unknown or NULL floating-point values
* iNULL__ for unknown or NULL integer values
real*4 rNULL__
integer*4 iNULL__
parameter (rNULL__=-1.e37) ! NULL real number
parameter (iNULL__=-2147483647) ! NULL int number
C=============================================================================
Cat. J/A+A/510/A98 ^12^C^18^O(3-2) map of rho Oph A (Liseau+, 2010)
*================================================================================
*O^18^O and C^18^O observations of rho Ophiuchi A.
* Liseau R., Larsson B., Pagani L., Black J.H., Hjalmason A., Justtanont K.
* <Astron. Astrophys. 510, A98 (2010)>
* =2010A&A...510A..98L
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'maps.dat' ! List of FITS maps
integer*4 nr__
parameter (nr__=2) ! Number of records
character*109 ar__ ! Full-size record
character*27 FileName ! Name of the FITS file in subdirectory fits
character*5 Fig ! Figure number(s) in the paper
real*8 RAdeg ! (deg) Map center: right ascension (J2000)
real*8 DEdeg ! (deg) Map center: declination (J2000)
character*9 Size ! Map size: number of voxels RAxDExFreq
character*46 Title ! Title of the file
C=============================================================================
C Loading file 'maps.dat' ! List of FITS maps
C Format for file interpretation
1 format(A27,2X,A5,2X,F8.4,F8.4,1X,A9,1X,A46)
C Effective file loading
open(unit=1,file='maps.dat', status='old')
write(6,*) '....Loading file: maps.dat'
do i__=1,2
read(1,'(A109)')ar__
read(ar__,1)FileName,Fig,RAdeg,DEdeg,Size,Title
c ..............Just test output...........
write(6,1)FileName,Fig,RAdeg,DEdeg,Size,Title
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end