Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/324/965 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 2026-May-10
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+A/324/965 UBV photometry of V360 Lac (Hill+ 1997)
*================================================================================
*Properties and nature of Be stars.
*17. V360 Lac = HD 216200 is a B3e + F9IV: binary
* Hill G., Harmanec P., Pavlovski K., Bozic H., Hadrava P., Koubsky P.,
* Ziznovsky J.
* <Astron. Astrophys. 324, 965 (1997)>
* =1997A&A...324..965H (SIMBAD/NED BibCode)
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table4' ! V360 Lac: individual homogenized Johnson UBV
observations from several stations
integer*4 nr__
parameter (nr__=722) ! Number of records
character*77 ar__ ! Full-size record
real*8 HJD ! (d) Heliocentric Julian date
real*4 w ! weight of the data point
real*4 Vmag ! (mag) ?=99.999 Johnson V magnitude
real*4 Bmag ! (mag) Johnson B magnitude
real*4 Umag ! (mag) ?=99.999 Johnson U magnitude
real*4 B_V ! (mag) ?=99.999 Johnson B-V index
real*4 U_B ! (mag) ?=99.999 Johnson U-B index
real*4 X ! Air mass of the observation
real*4 dX ! Air mass difference between var. and comp.
integer*4 HD ! HD number of the comparison star used
integer*4 Obs ! Numerical code identifying sources of data (1)
*Note (1): Individual observing stations are denoted by their numerical codes
* used in the Ondrejov photometric data archives as follows:
* 1 ... Hvar
* 3 ... Skalnate Pleso
* 5 ... Lowell
* 10... Kitt Peak National Observatory
* 13... Mt Kobau
* 33... Lick
* 46... Heidelberg
* 47... Akita
C=============================================================================
C Loading file 'table4' ! V360 Lac: individual homogenized Johnson UBV
* observations from several stations
C Format for file interpretation
1 format(
+ F12.4,1X,F4.2,1X,F6.3,1X,F6.3,1X,F6.3,1X,F6.3,1X,F6.3,2X,F5.3,
+ 1X,F5.3,1X,I6,3X,I2)
C Effective file loading
open(unit=1,status='old',file=
+'table4')
write(6,*) '....Loading file: table4'
do i__=1,722
read(1,'(A77)')ar__
read(ar__,1)HJD,w,Vmag,Bmag,Umag,B_V,U_B,X,dX,HD,Obs
c ..............Just test output...........
write(6,1)HJD,w,Vmag,Bmag,Umag,B_V,U_B,X,dX,HD,Obs
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end