FORTRAN Generation
(/./ftp/cats/II/146)

Conversion of standardized ReadMe file for file /./ftp/cats/II/146 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-20
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. II/146      Observations of the Ap Star HR 1217 from 1980-86 (Kurtz+ 1989)
*================================================================================
*A List of Observations of the Ap Star HR 1217 from 1980 to 1986
*    Kurtz D.W., Martinez P., Seeman J., Matthews J.M., Cropper M., Clemens J.C.,
*    Kreidl T.J., Sterken C., Schneider H., Weiss W.W., Kawaler S.D.,
*    Kepler S.O., van der Peet A., Sullivan D., Wood H.J.
*   <Mon. Not. R. Astron. Soc., 240, 881 (1989)>
*   =1989MNRAS.240..881K
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'data.dat'	! Observations

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

      character*2   filter      ! *Code for filter used
      character*8   obs         ! *Code for observatory
      real*8        JD          ! (d) Full Julian date of individual observation
      real*4        mag         ! (mag) Magnitude
*Note on filter:
*   There are amplitude variations from filter to filter and possibly phase
*   shifts, too. Data from different filters should not be mixed unknowingly.
*
*   JB = Johnson B (most observations were taken with this filter)
*   JV = Johnson V
*   SU = Stromgren u
*   SV = Stromgren v, etc.
*Note on obs:
*   CTIO  = Cerro Tololo Inter-American Observatory
*   ESO   = European Southern Observatory
*   LO    = Lowell Observatory
*   MDO   = McDonald Observatory
*   MKO   = Mauna Kea Observatory
*   MSSSO = mount Stromlo and Siding Spring Observatory
*   MJO   = Mount John Observatory
*   SAAO  = South African Astronomical Observatory
*   WO    = The Florence and George Wise Observatory

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

C  Loading file 'data.dat'	! Observations

C  Format for file interpretation

    1 format(A2,1X,A8,1X,F13.5,1X,F6.4)

C  Effective file loading

      open(unit=1,status='old',file=
     +'data.dat')
      write(6,*) '....Loading file: data.dat'
      do i__=1,52698
        read(1,'(A32)')ar__
        read(ar__,1)filter,obs,JD,mag
c    ..............Just test output...........
        write(6,1)filter,obs,JD,mag
c    .......End.of.Just test output...........
      end do
      close(1)

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