FORTRAN Generation
(/./ftp/cats/J/ApJ/413/453)

Conversion of standardized ReadMe file for file /./ftp/cats/J/ApJ/413/453 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.81 (2015-09-23), on 2024-Apr-20
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__=--2147483648.)  	! NULL real number
      parameter  (iNULL__=(-2147483647-1))	! NULL int  number
      integer    idig			! testing NULL number

C=============================================================================
Cat. J/ApJ/413/453     Double radio sources                           (Nilsson+ 1993)
*================================================================================
*On the redshift-apparent size diagram of double radio sources
*     NILSSON K., VALTONEN M.J., KOTILAINEN J., JAAKKOLA T.
*    <Astrophys. J. 413, 453 (1993)>
*    =1993ApJ...413..453N
C=============================================================================

C  Internal variables

      integer*4 i__

c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

C  Declarations for 'reftab1'	! References to table1

      integer*4 nr__
      parameter (nr__=163)	! Number of records
      character*61 ar__   	! Full-size record

      integer*4     ref        (nr__) ! Reference number
      character*50  Names      (nr__) ! Authors' names

c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

C  Declarations for 'table1'	! Double radio source data

      integer*4 nr__1
      parameter (nr__1=540)	! Number of records
      character*97 ar__1  	! Full-size record

      character*9   IAU        (nr__1) ! IAU name
      character*9   Name       (nr__1) ! Other name
      real*4        z          (nr__1) ! Spectroscopically measured redshift
      real*4        LAS        (nr__1) ! (arcsec) Largest angular size
      real*4        size       (nr__1) ! (kpc) True linear size
      real*4        logL       (nr__1) ! ([10-7W]) Radio luminosity in the frequency interval
*                                   10 MHz-10 GHz (erg/s)
      real*4        alpha      (nr__1) ! Spectral index at the high-frequency end
*                                   of the spectral range
      character*1   Id         (nr__1) ! [GQ] Type of the central object:
*                                                                  G: galaxy
*                                                                  Q: quasar
      character*18  ref_1      (nr__1) ! References (in file reftab1)

C=============================================================================

C  Loading file 'reftab1'	! References to table1

C  Format for file interpretation

    1 format(I3,8X,A50)

C  Effective file loading

      open(unit=1,status='old',file=
     +'reftab1')
      write(6,*) '....Loading file: reftab1'
      do i__=1,163
        read(1,'(A61)')ar__
        read(ar__,1)ref(i__),Names(i__)
c    ..............Just test output...........
        write(6,1)ref(i__),Names(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

C=============================================================================

C  Loading file 'table1'	! Double radio source data

C  Format for file interpretation

    2 format(
     +  A9,2X,A9,3X,F5.3,3X,F6.1,2X,F6.1,7X,F4.1,6X,F5.2,4X,A1,7X,A18)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1')
      write(6,*) '....Loading file: table1'
      do i__=1,540
        read(1,'(A97)')ar__1
        read(ar__1,2)
     +  IAU(i__),Name(i__),z(i__),LAS(i__),size(i__),logL(i__),
     +  alpha(i__),Id(i__),ref_1(i__)
c    ..............Just test output...........
        write(6,2)
     +  IAU(i__),Name(i__),z(i__),LAS(i__),size(i__),logL(i__),
     +  alpha(i__),Id(i__),ref_1(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

C=============================================================================
      stop
      end