Conversion of standardized ReadMe file for
file /./ftp/cats/VIII/36 into FORTRAN code for loading all data files into arrays.
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-25
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. VIII/36 The Second Bologna Survey (Colla+ 1970-1974)
*================================================================================
*A catalogue of 3235 radio sources at 408 MHz.
* Colla G., Fanti C., Fanti R., Ficarra A., Formiggini L., Gandolfi E.,
* Grueff G., Lari C., Padrielli L., Roffi G., Tomasi P., Vigotti M.
* <Astron. Astrophys. Suppl. Ser. 1, 281 (1970)>
* =1970A&AS....1..281C
*The B2 catalogue of radio sources - second part.
* Colla G., Fanti C., Fanti R., Ficarra A., Formiggini L., Gandolfi E.,
* Lari C., Marano B., Padrielli L., Tomasi P.
* <Astron. Astrophys. Suppl. Ser. 7, 1 (1972)>
* =1972A&AS....7....1C
*The B2 catalogue of radio sources - third part.
* Colla G., Fanti C., Fanti R., Ficarra A., Formiggini L., Gandolfi E.,
* Gioia I., Lari C., Marano B., Padrielli L., Tomasi P.
* <Astron. Astrophys. Suppl. Ser. 11, 291 (1973)>
* =1973A&AS...11..291C
*The B2 catalogue of radio sources - fourth part.
* Fanti C., Fanti R., Ficarra A., Padrielli L.
* <Astron. Astrophys. Suppl. Ser. 18, 147 (1974)>
* =1974A&AS...18..147F
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'b2.dat' ! B2 catalogue
integer*4 nr__
parameter (nr__=9929) ! Number of records
character*40 ar__ ! Full-size record
real*8 RA_ (nr__) ! (deg) Right Ascension 1950.0
real*8 Dec (nr__) ! (deg) Declination 1950.0
character*13 Name (nr__) ! *Full source name
integer*4 RAh (nr__) ! (h) Right ascension (1950.0)
integer*4 RAm (nr__) ! (min) Right ascension (1950.0)
real*4 RAs (nr__) ! (s) [0/60] Right ascension (1950.0)
character*1 DE_ (nr__) ! [+] Declination sign
integer*4 DEd (nr__) ! (deg) Declination (1950.0)
real*4 DEm (nr__) ! (arcmin) Declination (1950.0)
real*8 Flux (nr__) ! (Jy) *Peak flux at 408MHz
character*2 Rem (nr__) ! Remark (3C or 4C sources)
*Note on Name: The full name always starts by B2, followed by the
* part number 1 to 4, and truncated 1950 position, eventually
* followed by a letter A,B,C... to have unique names.
*Note on Flux: the printed value was limited to two decimal figures.
C=============================================================================
C Loading file 'b2.dat' ! B2 catalogue
C Format for file interpretation
1 format(A13,1X,I2,I2,F4.1,A1,I2,F4.1,1X,F7.3,1X,A2)
C Effective file loading
open(unit=1,file='b2.dat', status='old')
write(6,*) '....Loading file: b2.dat'
do i__=1,9929
read(1,'(A40)')ar__
read(ar__,1)
+ Name(i__),RAh(i__),RAm(i__),RAs(i__),DE_(i__),DEd(i__),
+ DEm(i__),Flux(i__),Rem(i__)
c Derive coordinates RA_ and Dec from input data
c (RA_ and Dec are set to rNULL_ when unknown)
RA_(i__) = RAh(i__)
if(RAh(i__) .GE. 0) RA_(i__)=RAh(i__)*15.
if(RAm(i__) .GE. 0) RA_(i__)=RA_(i__)+RAm(i__)/4.
if(RAs(i__) .GE. 0) RA_(i__)=RA_(i__)+RAs(i__)/240.
Dec(i__) = DEd(i__)
if(DEm(i__) .GE. 0) Dec(i__)=Dec(i__)+DEm(i__)/60.
if(DE_(i__).EQ.'-'.AND.Dec(i__).GE.0) Dec(i__)=-Dec(i__)
c ..............Just test output...........
write(6,1)
+ Name(i__),RAh(i__),RAm(i__),RAs(i__),DE_(i__),DEd(i__),
+ DEm(i__),Flux(i__),Rem(i__)
write(6,'(6H Pos: 2F8.4)') RA_(i__),Dec(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end