FORTRAN Generation
(/./ftp/cats/J/A_A/605/A46)

Conversion of standardized ReadMe file for file /./ftp/cats/J/A_A/605/A46 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 2026-Sep-10
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/605/A46    Sgr dSph nucleus stars chemical abundances (Mucciarelli+, 2017)
*================================================================================
*Chemical abundances in the nucleus of the Sagittarius dwarf spheroidal galaxy.
*    Mucciarelli A., Bellazzini M., Ibata R., Romano D., Chapman S.C., Monaco L.
*    <Astron. Astrophys. 605, A46 (2017)>
*    =2017A&A...605A..46M        (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table1.dat'	! Atmospheric parameters and abundance ratios

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

C  J2000 position composed of: RAdeg DEdeg
      integer*4     ID         (nr__) ! [1500190/4210645] Identification number
      real*8        RAdeg      (nr__) ! (deg) Right ascension (J2000)
      real*8        DEdeg      (nr__) ! (deg) Declination (J2000)
      integer*4     Teff       (nr__) ! (K) Effective temperature
      real*4        log_g      (nr__) ! ([cm/s2]) Surface gravity
      real*4        vt         (nr__) ! (km/s) Microturbulent velocity
      real*4        v_Fe_H_    (nr__) ! ([Sun]) Relative abundance [Fe/H]
      real*4        e__Fe_H_   (nr__) ! ([Sun]) Uncertainty on [Fe/H]
      real*4        v_Mg_Fe_   (nr__) ! ([Sun]) ?=99.99 Relative abundance [Mg/Fe]
      real*4        e__Mg_Fe_  (nr__) ! ([Sun]) ?=0 Uncertainty on [Mg/Fe]
      real*4        v_Ca_Fe_   (nr__) ! ([Sun]) Relative abundance [Ca/Fe]
      real*4        e__Ca_Fe_  (nr__) ! ([Sun]) Uncertainty on [Ca/Fe]
      real*4        v_Ti_Fe_   (nr__) ! ([Sun]) ?=99.99 Relative abundance [Ti/Fe]
      real*4        e__Ti_Fe_  (nr__) ! ([Sun]) ?=0 Uncertainty on [Ti/Fe]

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

C  Loading file 'table1.dat'	! Atmospheric parameters and abundance ratios

C  Format for file interpretation

    1 format(
     +  I7,3X,F10.6,3X,F10.6,3X,I4,3X,F4.2,3X,F3.1,3X,F5.2,4X,F4.2,3X,
     +  F5.2,4X,F4.2,3X,F5.2,4X,F4.2,3X,F5.2,4X,F4.2)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1.dat')
      write(6,*) '....Loading file: table1.dat'
      do i__=1,235
        read(1,'(A117)')ar__
        read(ar__,1)
     +  ID(i__),RAdeg(i__),DEdeg(i__),Teff(i__),log_g(i__),vt(i__),
     +  v_Fe_H_(i__),e__Fe_H_(i__),v_Mg_Fe_(i__),e__Mg_Fe_(i__),
     +  v_Ca_Fe_(i__),e__Ca_Fe_(i__),v_Ti_Fe_(i__),e__Ti_Fe_(i__)
c    ..............Just test output...........
        write(6,1)
     +  ID(i__),RAdeg(i__),DEdeg(i__),Teff(i__),log_g(i__),vt(i__),
     +  v_Fe_H_(i__),e__Fe_H_(i__),v_Mg_Fe_(i__),e__Mg_Fe_(i__),
     +  v_Ca_Fe_(i__),e__Ca_Fe_(i__),v_Ti_Fe_(i__),e__Ti_Fe_(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

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