FORTRAN Generation
(/./ftp/cats/J/PASP/104/553)

Conversion of standardized ReadMe file for file /./ftp/cats/J/PASP/104/553 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-Apr-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/PASP/104/553             CCD Standard Fields                   (Odewahn+ 1992)
*================================================================================
*Improved CCD Standard Fields
*     ODEWAHN S.C., BRYJA C., HUMPHREYS R.M.
*    <Publ. Astron. Soc. Pac. 104, 553 (1992)>
*    =1992PASP..104..553O
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'tables'	! Tables 2, 3 and 4 (NGC 4147, 7006 and 7790)

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

      character*8   Name        ! Cluster Name
      integer*4     Star        ! Star Number
      real*4        X           ! (pix) (plate coordinate)
      real*4        Y           ! (pix) (plate coordinate)
      real*4        V           ! (mag) V magnitude
      real*4        e_V         ! (mag) mean error (V)
      integer*4     o_V         ! Number of observations (V)
      real*4        v_B_V       ! (mag) B-V
      real*4        e__B_V      ! (mag) mean error  (B-V)
      integer*4     o__B_V      ! Number of observations (B-V)
      real*4        v_V_R       ! (mag) V-R
      real*4        e__V_R      ! (mag) mean error  (V-R)
      integer*4     o__V_R      ! Number of observations (V-R)

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

C  Loading file 'tables'	! Tables 2, 3 and 4 (NGC 4147, 7006 and 7790)

C  Format for file interpretation

    1 format(
     +  A8,2X,I3,1X,F5.1,1X,F5.1,3X,F6.3,2X,F5.3,1X,I2,2X,F6.3,2X,
     +  F5.3,1X,I2,2X,F6.3,2X,F5.3,1X,I2)

C  Effective file loading

      open(unit=1,status='old',file=
     +'tables')
      write(6,*) '....Loading file: tables'
      do i__=1,273
        read(1,'(A80)')ar__
        read(ar__,1)
     +  Name,Star,X,Y,V,e_V,o_V,v_B_V,e__B_V,o__B_V,v_V_R,e__V_R,
     +  o__V_R
c    ..............Just test output...........
        write(6,1)
     +  Name,Star,X,Y,V,e_V,o_V,v_B_V,e__B_V,o__B_V,v_V_R,e__V_R,
     +  o__V_R
c    .......End.of.Just test output...........
      end do
      close(1)

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