FORTRAN Generation
(/./ftp/cats/J/A_A/293/75)

Conversion of standardized ReadMe file for file /./ftp/cats/J/A_A/293/75 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 2024-Mar-29
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/A+A/293/75       Abundances in zeta Scl open cluster     (Edvardsson+, 1995)
*================================================================================
*Abundance analysis and origin of the zeta Sculptoris open cluster
*      EDVARDSSON B., PETTERSSON B., KHARRAZI M., WESTERLUND B.
*      <Astron. Astrophys. 293, 75 (1995)>
*      =1995A&A...293...75E      (SIMBAD/NED Reference)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table3'	! Equivalent widths

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

      character*5   Species     ! Line identification:
*                                   chemical element and ionisation stage
      real*8        Lambda      ! (0.1nm) Wavelength
      real*4        W_5         ! (0.1pm) []? Equivalent width in star No 5
      real*4        W_8         ! (0.1pm) []? Equivalent width in star No 8
      real*4        W_28        ! (0.1pm) []? Equivalent width in star No 28
      real*4        W_47        ! (0.1pm) []? Equivalent width in star No 47
      real*4        W_57        ! (0.1pm) []? Equivalent width in star No 57
      real*4        W_60        ! (0.1pm) []? Equivalent width in star No 60
      real*4        W_63        ! (0.1pm) []? Equivalent width in star No 63
      real*4        W_70        ! (0.1pm) []? Equivalent width in star No 70
      real*4        W_125       ! (0.1pm) []? Equivalent width in star No 125

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

C  Loading file 'table3'	! Equivalent widths

C  Format for file interpretation

    1 format(
     +  A5,1X,F7.2,1X,F5.1,1X,F5.1,1X,F5.1,1X,F5.1,1X,F5.1,1X,F5.1,1X,
     +  F5.1,1X,F5.1,1X,F5.1)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table3')
      write(6,*) '....Loading file: table3'
      do i__=1,93
        read(1,'(A67)')ar__
        read(ar__,1)
     +  Species,Lambda,W_5,W_8,W_28,W_47,W_57,W_60,W_63,W_70,W_125
        if(ar__(15:19) .EQ. '') W_5 = rNULL__
        if(ar__(21:25) .EQ. '') W_8 = rNULL__
        if(ar__(27:31) .EQ. '') W_28 = rNULL__
        if(ar__(33:37) .EQ. '') W_47 = rNULL__
        if(ar__(39:43) .EQ. '') W_57 = rNULL__
        if(ar__(45:49) .EQ. '') W_60 = rNULL__
        if(ar__(51:55) .EQ. '') W_63 = rNULL__
        if(ar__(57:61) .EQ. '') W_70 = rNULL__
        if(ar__(63:67) .EQ. '') W_125 = rNULL__
c    ..............Just test output...........
        write(6,1)
     +  Species,Lambda,W_5,W_8,W_28,W_47,W_57,W_60,W_63,W_70,W_125
c    .......End.of.Just test output...........
      end do
      close(1)

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