FORTRAN Generation
(/./ftp/cats/J/MNRAS/447/711)

Conversion of standardized ReadMe file for file /./ftp/cats/J/MNRAS/447/711 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/MNRAS/447/711     Transiting planet WASP-103               (Southworth+, 2015)
*================================================================================
*High-precision photometry by telescope defocusing.
*VII. The ultrashort period planet WASP-103.
*    Southworth J., Mancini L., Ciceri S., Budaj J., Dominik M.,
*    Figuera Jaimes R., Haugbolle T., Jorgensen U.G., Popovas A., Rabus M.,
*    Rahvar S., Von Essen C., Schmidt R.W., Wertz O., Alsubai K.A., Bozza V.,
*    Bramich D.M., Calchi Novati S., D'ago G., Hinse T.C., Henning TH.,
*    Hundertmark M., Juncher D., Korhonen H., Skottfelt J., Snodgrass C.,
*    Starkey D., Surdej J.
*   <Mon. Not. R. Astron. Soc., 447, 711-721 (2015)>
*   =2015MNRAS.447..711S    (SIMBAD/NED BibCode)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'wasp103.dat'	! Photometry of WASP-103

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

      character*6   Inst        ! Instrument used for the observation
      character*1   Filt        ! [IRgriz] Filter used for the observation
      real*8        BJD         ! (d) Barycentric JD for the midpoint of
*                                 observation (TDB)
      real*8        mag         ! (mag) Differential magnitude in that filter
      real*8        e_mag       ! (mag) Measurement error of the differential magnitude

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

C  Loading file 'wasp103.dat'	! Photometry of WASP-103

C  Format for file interpretation

    1 format(A6,1X,A1,2X,F14.6,1X,F10.7,2X,F9.7)

C  Effective file loading

      open(unit=1,status='old',file=
     +'wasp103.dat')
      write(6,*) '....Loading file: wasp103.dat'
      do i__=1,2293
        read(1,'(A46)')ar__
        read(ar__,1)Inst,Filt,BJD,mag,e_mag
c    ..............Just test output...........
        write(6,1)Inst,Filt,BJD,mag,e_mag
c    .......End.of.Just test output...........
      end do
      close(1)

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