Conversion of standardized ReadMe file for
file /./ftp/cats/J/MNRAS/379/1237 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-22
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/MNRAS/379/1237 VIcJHK photometry of NGC 1893 Halpha sources (Maheswar+, 2007)
*================================================================================
*Champagne flow and triggered star formation in NGC 1893.
* Maheswar G., Sharma S., Biman J.M., Pandey A.K., Bhatt H.C.
* <Mon. Not. R. Astron. Soc., 379, 1237-1247 (2007)>
* =2007MNRAS.379.1237M
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table1.dat' ! *Our optical and 2MASS NIR results for the 49
sources are presented.
integer*4 nr__
parameter (nr__=49) ! Number of records
character*60 ar__ ! Full-size record
integer*4 v_MSB2007_ ! Sequential number
character*1 n__MSB2007_ ! [a] a for H{alpha} sources detected in
* our slitless spectroscopy
real*4 r ! (arcmin) Angular separation from IRAS 05198+3325
real*8 RAdeg ! (deg) Right ascension in decimal degrees (J2000)
real*8 DEdeg ! (deg) Declination in decimal degrees (J2000)
real*4 Vmag ! (mag) V magnitude
real*4 V_Ic ! (mag) V-Ic colour index
real*4 Jmag ! (mag) 2MASS J magnitude
real*4 J_H ! (mag) 2MASS J-H colour index
real*4 H_K ! (mag) 2MASS H-K colour index
character*7 ID ! Halpha sources identified by
* Marco & Negueruela (2002A&A...393..195M) (1)
*Note (1): Simbad denominations for Halpha sources identified as follows:
* S1R2N23 = Cl* NGC 1893 CUF 1223
* S1R2N38 = Cl* NGC 1893 CUF 1238
* E 18 = Cl* NGC 1893 NMI E18
* E 13 = Cl* NGC 1893 NMI E13
C=============================================================================
C Loading file 'table1.dat' ! *Our optical and 2MASS NIR results for the 49
* sources are presented.
C Format for file interpretation
1 format(
+ I2,A1,1X,F4.2,1X,F7.4,2X,F7.4,1X,F5.2,1X,F4.2,1X,F5.2,1X,F4.2,
+ 1X,F4.2,1X,A7)
C Effective file loading
open(unit=1,file='table1.dat', status='old')
write(6,*) '....Loading file: table1.dat'
do i__=1,49
read(1,'(A60)')ar__
read(ar__,1)
+ v_MSB2007_,n__MSB2007_,r,RAdeg,DEdeg,Vmag,V_Ic,Jmag,J_H,H_K,ID
c ..............Just test output...........
write(6,1)
+ v_MSB2007_,n__MSB2007_,r,RAdeg,DEdeg,Vmag,V_Ic,Jmag,J_H,H_K,ID
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end