FORTRAN Generation
(/./ftp/cats/J/MNRAS/449/4048)

Conversion of standardized ReadMe file for file /./ftp/cats/J/MNRAS/449/4048 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-16
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/449/4048        The H{alpha} rotation curve of M33          (Kam+, 2015)
*================================================================================
*Kinematics and mass modelling of M33: H{alpha} observations.
*    Kam Z.S., Carignan C., Chemin L., Amram P., Epinat B.
*   <Mon. Not. R. Astron. Soc., 449, 4048-4070 (2015)>
*   =2015MNRAS.449.4048K    (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'tablea1.dat'	! The H{alpha} rotation curve of M33

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

      real*4        Rad        (nr__) ! (arcmin) Radius
      integer*4     Vrot       (nr__) ! (km/s) Rotation velocity
      integer*4     e_Vrot     (nr__) ! (km/s) Uncertainty in Vrot
      integer*4     sigma      (nr__) ! (km/s) Velocity dispersion
      integer*4     e_sigma    (nr__) ! (km/s) Uncertainty in sigma

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

C  Loading file 'tablea1.dat'	! The H{alpha} rotation curve of M33

C  Format for file interpretation

    1 format(F5.2,1X,I3,1X,I2,1X,I2,1X,I2)

C  Effective file loading

      open(unit=1,status='old',file=
     +'tablea1.dat')
      write(6,*) '....Loading file: tablea1.dat'
      do i__=1,396
        read(1,'(A18)')ar__
        read(ar__,1)
     +  Rad(i__),Vrot(i__),e_Vrot(i__),sigma(i__),e_sigma(i__)
c    ..............Just test output...........
        write(6,1)
     +  Rad(i__),Vrot(i__),e_Vrot(i__),sigma(i__),e_sigma(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

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