Conversion of standardized ReadMe file for
file /./ftp/cats/J/AJ/109/2368 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-Jun-08
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/109/2368 Redshifts in First CfA Slice. III. (Thorstensen+ 1995)
*================================================================================
*Redshifts for fainter galaxies in the First CfA Slice. III.
*To the Zwicky catalog limit.
* Thorstensen J.R., Kurtz M.J., Geller M.J., Ringwald F.A., Wegner G.
* <Astron. J. 109, 2368 (1995)>
* =1995AJ....109.2368T (SIMBAD/NED BibCode)
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table1' ! The new redshifts
integer*4 nr__
parameter (nr__=241) ! Number of records
character*49 ar__ ! Full-size record
C 1950 position composed of: RAh RAm RAs DEd DEm
real*8 RAdeg ! (deg) Right Ascension 1950
real*8 DEdeg ! (deg) Declination 1950
C ---------------------------------- ! (position vector(s) in degrees)
integer*4 RAh ! (h) Right ascension 1950
integer*4 RAm ! (min) Right ascension 1950
integer*4 RAs ! (s) Right ascension 1950
integer*4 DEd ! (deg) Declination 1950
integer*4 DEm ! (arcmin) Declination 1950
real*4 Bmag ! (mag) B magnitude
integer*4 cz ! (km/s) Heliocentric Velocity
integer*4 e_cz ! (km/s) rms uncertainty on cz
character*11 Com ! Comment
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table3' ! Void sample
integer*4 nr__1
parameter (nr__1=27) ! Number of records
character*39 ar__1 ! Full-size record
C 1950 position composed of: RAh RAm RAs DEd DEm
real*8 RAdeg_1 ! (deg) Right Ascension 1950
real*8 DEdeg_1 ! (deg) Declination 1950
C ---------------------------------- ! (position vector(s) in degrees)
integer*4 RAh_1 ! (h) Right ascension 1950
integer*4 RAm_1 ! (min) Right ascension 1950
integer*4 RAs_1 ! (s) Right ascension 1950
integer*4 DEd_1 ! (deg) Declination 1950
integer*4 DEm_1 ! (arcmin) Declination 1950
integer*4 cz_1 ! (km/s) Heliocentric velocity
integer*4 MType ! Morphological type (de Vaucloulers scale)
character*2 n_MType ! [*: ] Note on type (1)
character*3 Line ! Presence of absorption or emission lines
*Note (1): * Not classified in the CfA Slice data (Huchra et al., 1990)
* :: Doubtfull value
*--------------------------------------------------------------------------------
*
*Table 2. Galaxies without redshifts
* ------------------------------------
* {alpha} {delta}
* (1950)
* ------------------------------------
* 8 13 00 +31 36
* 8 27 12 +31 21
* 8 57 48 +32 12
* 11 57 00 +26 50
* 13 21 06 +26 48
* ------------------------------------
C=============================================================================
C Loading file 'table1' ! The new redshifts
C Format for file interpretation
1 format(I2,1X,I2,1X,I2,1X,I2,1X,I2,1X,F4.1,1X,I5,1X,I2,1X,A11)
C Effective file loading
open(unit=1,status='old',file=
+'table1')
write(6,*) '....Loading file: table1'
do i__=1,241
read(1,'(A49)')ar__
read(ar__,1)RAh,RAm,RAs,DEd,DEm,Bmag,cz,e_cz,Com
RAdeg = rNULL__
DEdeg = rNULL__
c Derive coordinates RAdeg and DEdeg from input data
c (RAdeg and DEdeg are set to rNULL__ when unknown)
if(RAh .GT. -180) RAdeg=RAh*15.
if(RAm .GT. -180) RAdeg=RAdeg+RAm/4.
if(RAs .GT. -180) RAdeg=RAdeg+RAs/240.
if(DEd .GE. 0) DEdeg=DEd
if(DEm .GE. 0) DEdeg=DEdeg+DEm/60.
c ..............Just test output...........
write(6,1)RAh,RAm,RAs,DEd,DEm,Bmag,cz,e_cz,Com
write(6,'(6H Pos: 2F8.4)') RAdeg,DEdeg
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
C Loading file 'table3' ! Void sample
C Format for file interpretation
2 format(I2,1X,I2,1X,I2,1X,I2,1X,I2,2X,I4,1X,I2,A2,1X,A3)
C Effective file loading
open(unit=1,status='old',file=
+'table3')
write(6,*) '....Loading file: table3'
do i__=1,27
read(1,'(A39)')ar__1
read(ar__1,2)
+ RAh_1,RAm_1,RAs_1,DEd_1,DEm_1,cz_1,MType,n_MType,Line
RAdeg_1 = rNULL__
DEdeg_1 = rNULL__
c Derive coordinates RAdeg_1 and DEdeg_1 from input data
c (RAdeg_1 and DEdeg_1 are set to rNULL__ when unknown)
if(RAh_1 .GT. -180) RAdeg_1=RAh_1*15.
if(RAm_1 .GT. -180) RAdeg_1=RAdeg_1+RAm_1/4.
if(RAs_1 .GT. -180) RAdeg_1=RAdeg_1+RAs_1/240.
if(DEd_1 .GE. 0) DEdeg_1=DEd_1
if(DEm_1 .GE. 0) DEdeg_1=DEdeg_1+DEm_1/60.
c ..............Just test output...........
write(6,2)
+ RAh_1,RAm_1,RAs_1,DEd_1,DEm_1,cz_1,MType,n_MType,Line
write(6,'(6H Pos: 2F8.4)') RAdeg_1,DEdeg_1
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end