Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/325/1163 into FORTRAN code for loading all data files into arrays.
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-Aug-11
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/325/1163 330-360GHz spectral lines of G 34.3+0.15. II. (Millar+ 1997)
*================================================================================
*A 330-360 GHz spectral survey of G34.3+0.15. II. Chemical modelling.
* Millar T.J., Macdonald G.H., Gibb A.G.
* <Astron. Astrophys. 325, 1163 (1997)>
* =1997A&A...325.1163M
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table5' ! *Column densities at 3x10^3^yrs in the UCC and CC
components and at 10^5^yrs in the halo.
integer*4 nr__
parameter (nr__=65) ! Number of records
character*65 ar__ ! Full-size record
character*7 Species (nr__) ! Chemical species
real*4 N_UCC (nr__) ! (cm-2) Ultracompact core column density
real*4 N_CC (nr__) ! (cm-2) Compact core column density
real*4 N_Halo (nr__) ! (cm-2) Halo column density
real*4 N_Tot (nr__) ! (cm-2) Total column density
character*1 l_N_Obs (nr__) ! Limit flag on N(obs)
real*4 N_Obs (nr__) ! (cm-2) ? Observed column density
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table6' ! *Column densities at 10^4^yrs in the UCC and CC
components and at 10^5^yrs in the halo.
integer*4 nr__1
parameter (nr__1=65) ! Number of records
character*65 ar__1 ! Full-size record
character*7 Species_1 (nr__1) ! Chemical species
real*4 N_UCC_1 (nr__1) ! (cm-2) Ultracompact core column density
real*4 N_CC_1 (nr__1) ! (cm-2) Compact core column density
real*4 N_Halo_1 (nr__1) ! (cm-2) Halo column density
real*4 N_Tot_1 (nr__1) ! (cm-2) Total column density
character*1 l_N_Obs_1 (nr__1) ! Limit flag on N(obs)
real*4 N_Obs_1 (nr__1) ! (cm-2) ? Observed column density
C=============================================================================
C Loading file 'table5' ! *Column densities at 3x10^3^yrs in the UCC and CC
* components and at 10^5^yrs in the halo.
C Format for file interpretation
1 format(A7,1X,E9.3,1X,E9.3,1X,E9.3,1X,E9.3,1X,A1,E7.1)
C Effective file loading
open(unit=1,status='old',file=
+'table5')
write(6,*) '....Loading file: table5'
do i__=1,65
read(1,'(A65)')ar__
read(ar__,1)
+ Species(i__),N_UCC(i__),N_CC(i__),N_Halo(i__),N_Tot(i__),
+ l_N_Obs(i__),N_Obs(i__)
if(ar__(50:56) .EQ. '') N_Obs(i__) = rNULL__
c ..............Just test output...........
write(6,1)
+ Species(i__),N_UCC(i__),N_CC(i__),N_Halo(i__),N_Tot(i__),
+ l_N_Obs(i__),N_Obs(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
C Loading file 'table6' ! *Column densities at 10^4^yrs in the UCC and CC
* components and at 10^5^yrs in the halo.
C Format for file interpretation
2 format(A7,1X,E9.3,1X,E9.3,1X,E9.3,1X,E9.3,1X,A1,E7.1)
C Effective file loading
open(unit=1,status='old',file=
+'table6')
write(6,*) '....Loading file: table6'
do i__=1,65
read(1,'(A65)')ar__1
read(ar__1,2)
+ Species_1(i__),N_UCC_1(i__),N_CC_1(i__),N_Halo_1(i__),
+ N_Tot_1(i__),l_N_Obs_1(i__),N_Obs_1(i__)
if(ar__1(50:56) .EQ. '') N_Obs_1(i__) = rNULL__
c ..............Just test output...........
write(6,2)
+ Species_1(i__),N_UCC_1(i__),N_CC_1(i__),N_Halo_1(i__),
+ N_Tot_1(i__),l_N_Obs_1(i__),N_Obs_1(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end