Conversion of standardized ReadMe file for
file /./ftp/cats/J/AJ/163/61 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-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/AJ/163/61 The TESS-Keck Survey. VIII. TOI-2180 radial velocity (Dalba+, 2022)
*================================================================================
*The TESS-Keck Survey.
*VIII. Confirmation of a Transiting Giant Planet on an Eccentric 261 Day Orbit
*with the Automated Planet Finder Telescope.
* Dalba P.A., Kane S.R., Dragomir D., Villanueva S., Collins K.A.,
* Jacobs T.L., LaCourse D.M., Gagliano R., Kristiansen M.H., Omohundro M.,
* Schwengeler H.M., Terentev I.A., Vanderburg A., Fulton B., Isaacson H.,
* Van Zandt J., Howard A.W., Thorngren D.P., Howell S.B., Batalha N.M.,
* Chontos A., Crossfield I.J.M., Dressing C.D., Huber D., Petigura E.A.,
* Robertson P., Roy A., Weiss L.M., Behmard A., Beard C., Brinkman C.L.,
* Giacalone S., Hill M.L., Lubin J., Mayo A.W., Mocnik T., Akana Murphy J.M.,
* Polanski A.S., Rice M., Rosenthal L.J., Rubenzahl R.A., Scarsdale N.,
* Turtelboom E.V., Tyler D., Benni P., Boyce P., Esposito T.M., Girardin E.,
* Laloum D., Lewin P., Mann C.R., Marchis F., Schwarz R.P., Srdoc G.,
* Steuer J., Sivarani T., Unni A., Eisner N.L., Fetherolf T., Li Z., Yao X.,
* Pepper J., Ricker G.R., Vanderspek R., Latham D.W., Seager S., Winn J.N.,
* Jenkins J.M., Burke C.J., Eastman J.D., Lund M.B., Rodriguez D.R.,
* Rowden P., Ting E.B., Villasenor J.N.
* <Astron. J., 163, 61 (2022)>
* =2022AJ....163...61D
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table1.dat' ! Radial velocity measurements of TOI-2180
integer*4 nr__
parameter (nr__=99) ! Number of records
character*44 ar__ ! Full-size record
real*8 BJD ! (d) [2458888/2459427] Barycentric Julian Date at TDB
real*4 RVel ! (m/s) [-113/96.8] Radial velocity
real*4 e_RVel ! (m/s) [1.1/7.5] Uncertainty in RVel
real*4 SHK ! [0.1/0.26] Mount Wilson S_HK_ activity index (1)
real*4 e_SHK ! [0.001/0.002] Uncertainty in SHK
character*4 Tel ! Telescope; Automated Planet Finder or Keck
*Note (1): The SHK values from APF and Keck data have different zeropoints.
C=============================================================================
C Loading file 'table1.dat' ! Radial velocity measurements of TOI-2180
C Format for file interpretation
1 format(F14.6,1X,F6.1,1X,F3.1,1X,F6.4,1X,F6.4,1X,A4)
C Effective file loading
open(unit=1,status='old',file=
+'table1.dat')
write(6,*) '....Loading file: table1.dat'
do i__=1,99
read(1,'(A44)')ar__
read(ar__,1)BJD,RVel,e_RVel,SHK,e_SHK,Tel
c ..............Just test output...........
write(6,1)BJD,RVel,e_RVel,SHK,e_SHK,Tel
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end