FORTRAN Generation
(/./ftp/cats/J/A_AS/109/479)

Conversion of standardized ReadMe file for file /./ftp/cats/J/A_AS/109/479 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. J/A+AS/109/479     NGC 4833 BV photometry                         (Samus+, 1995)
*================================================================================
*A new photographic C-M diagram for NGC 4833
*     Samus N.N., Kravtsov V., Pavlov M., Alcaino G., Liller W.
*    <Astron. Astrophys. Suppl. Ser. 109, 479 (1995)>
*    =1995A&AS..109..479S      (SIMBAD/NED Reference)
C=============================================================================

C  Internal variables

      integer*4 i__

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

C  Declarations for 'table4'	! Photographic photometry in NGC 4833

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

      real*4        x           ! (mm) x coordinate (increase to the west)
      real*4        y           ! (mm) y coordinate (increase to the south)
      real*4        Vmag        ! (mag) V magnitude
      real*4        B_V         ! (mag) B-V color
      character*3   Tel         ! [cye ] Telescope code (1)
*Note (1): Telescope code
*          c: Las Campanas Observatory 1 m telescope
*          y: Cerro Tololo International Observatory Yale 1 m telescope
*          e: European Southern Observatory 3.6 m telescope

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

C  Declarations for 'table5'	! Identifications with previous works in NGC 4833

      integer*4 nr__1
      parameter (nr__1=90)	! Number of records
      character*28 ar__1  	! Full-size record

      real*4        x_1         ! (mm) x coordinate (increase to the west)
      real*4        y_1         ! (mm) y coordinate (increase to the south)
      character*5   Id1         ! Identification with Menzies (1972MNRAS.156..207M)
      character*4   Id2         ! Identification with Alcaino (1971A&A....13..287A)

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

C  Loading file 'table4'	! Photographic photometry in NGC 4833

C  Format for file interpretation

    1 format(1X,F5.2,3X,F5.2,3X,F5.2,3X,F4.2,2X,A3)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table4')
      write(6,*) '....Loading file: table4'
      do i__=1,868
        read(1,'(A34)')ar__
        read(ar__,1)x,y,Vmag,B_V,Tel
c    ..............Just test output...........
        write(6,1)x,y,Vmag,B_V,Tel
c    .......End.of.Just test output...........
      end do
      close(1)

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

C  Loading file 'table5'	! Identifications with previous works in NGC 4833

C  Format for file interpretation

    2 format(F5.2,3X,F5.2,4X,A5,2X,A4)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table5')
      write(6,*) '....Loading file: table5'
      do i__=1,90
        read(1,'(A28)')ar__1
        read(ar__1,2)x_1,y_1,Id1,Id2
c    ..............Just test output...........
        write(6,2)x_1,y_1,Id1,Id2
c    .......End.of.Just test output...........
      end do
      close(1)

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