Conversion of standardized ReadMe file for
file /./ftp/cats/VI/80 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. VI/80 Opacities from the Opacity Project (Seaton+, 1995)
*================================================================================
*Opacities for stellar envelopes
* Seaton M.J., Yan Y., Mihalas D., Pradhan A.K.
* <Mon. Not. R. Astron. Soc. 266, 805 (1994)>
* =1994MNRAS.266..805S (SIMBAD/NED BibCode) (SYMP)
*Fitting and smoothing of opacity data
* Seaton M.J.
* <Mon. Not. R. Astron. Soc. 265, L25 (1993)> (OPF)
* =1994MNRAS.265L..25S (SIMBAD/NED BibCode)
*Interpolation of Rosseland-mean opacities for variable X and Z
* Seaton M.J.
* <Mon. Not. R. Astron. Soc. 279, 95 (1996)> (IXZ)
* =1996MNRAS.279...95S
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 's92.version2' ! Summary of solar metal-mix s92 data
integer*4 nr__
parameter (nr__=213) ! Number of records
character*63 ar__ ! Full-size record
character*18 Version ! Version designation "OP Version 2.0 S92"
integer*4 Mix ! [201/413]+ Mixture number
real*4 X ! [0/1] Hydrogen mass-fraction
real*4 Z ! [0/1] Metal (Z>=3) mass-fraction
character*7 Date ! Computation date
C=============================================================================
C Loading file 's92.version2' ! Summary of solar metal-mix s92 data
C Format for file interpretation
1 format(1X,A18,1X,I3,6X,E9.3,5X,E9.3,3X,A7)
C Effective file loading
open(unit=1,status='old',file=
+'s92.version2')
write(6,*) '....Loading file: s92.version2'
do i__=1,213
read(1,'(A63)')ar__
read(ar__,1)Version,Mix,X,Z,Date
c ..............Just test output...........
write(6,1)Version,Mix,X,Z,Date
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end