FORTRAN Generation
(/./home/cats/J/MNRAS/371/879)

Conversion of standardized ReadMe file for file /./home/cats/J/MNRAS/371/879 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.81 (2015-09-23), on 2026-May-19
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/MNRAS/371/879     Effective temperatures of 215 FGK giants   (Kovtyukh+, 2006)
*================================================================================
*High-precision effective temperatures of 215 FGK giants from line-depth ratios.
*    Kovtyukh V.V., Soubiran C., Bienayme O., Mishenina T.V., Belik S.I.
*   <Mon. Not. R. Astron. Soc., 371, 879-884 (2006)>
*   =2006MNRAS.371..879K
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table1.dat'	! Effective temperatures of the programme stars

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

      character*10  Name        ! Star name
      integer*4     Teff        ! (K) Effective temperature
      integer*4     o_Teff      ! Number of calibrations used
      real*4        e_Teff      ! (K) Error of the mean Teff

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

C  Loading file 'table1.dat'	! Effective temperatures of the programme stars

C  Format for file interpretation

    1 format(A10,1X,I4,1X,I2,1X,F4.1)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1.dat')
      write(6,*) '....Loading file: table1.dat'
      do i__=1,215
        read(1,'(A23)')ar__
        read(ar__,1)Name,Teff,o_Teff,e_Teff
c    ..............Just test output...........
        write(6,1)Name,Teff,o_Teff,e_Teff
c    .......End.of.Just test output...........
      end do
      close(1)

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