Conversion of standardized ReadMe file for
file /./ftp/cats/J/ApJ/510/104 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-Sep-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/ApJ/510/104 Ionizing Stars of Extragalactic H II Regions (Bresolin+ 1999)
*================================================================================
*The Ionizing Stars of Extragalactic H II Regions
* Bresolin F., Kennicutt R. C., Garnett D. R.
* <Astrophys. J. 510, 104 (1999)>
* =1999ApJ...510..104B
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table3.dat' ! Reddening-corrected line fluxes of HII regions
integer*4 nr__
parameter (nr__=96) ! Number of records
character*108 ar__ ! Full-size record
character*8 Name ! Galaxy name
integer*4 Seq ! Galaxy sequence number
integer*4 RAoff ! (arcsec) Right ascension offset from the galaxy nucleus
integer*4 DEoff ! (arcsec) Declination offset from the galaxy nucleus
integer*4 OII ! OII (3727{AA}) flux (1)
integer*4 e_OII ! Uncertainty in OII
integer*4 OIII ! OIII (5007+4959{AA}) flux (1)
integer*4 e_OIII ! Uncertainty in OIII
integer*4 HeI ! HeI (5876{AA}) flux (1)
integer*4 e_HeI ! Uncertainty in HeI
integer*4 NII ! NII (6548+6583{AA}) flux (1)
integer*4 e_NII ! Uncertainty in NII
integer*4 SII ! SII (6716+6731{AA}) flux (1)
integer*4 e_SII ! Uncertainty in SII
integer*4 SIII ! (9069+9532{AA}) flux (1)
integer*4 e_SIII ! Uncertainty in SIII
character*15 HIIName ! HII region names (2)
*Note (1): Line fluxes given in units of H{beta} = 100
*Note (2): Names use the abbreviations:
* HK = Hodge & Kennicutt 1983, An Atlas of H II Regions in 125
* Galaxies (PAPS Document ANJOA88-296-300) (New York: AIP
* Auxiliary Publication Service)
* H = Hodge 1976 (1976ApJ...205..728H)
* P = Pellet+ 1978 (1978A&AS...31..439P)
* CC = Carranza+ 1969 (1969A&A.....1..479C)
* GS = Garnett & Shields 1987 (1987ApJ...317...82G)
* D = Dufour+ 1980 (1980ApJ...236..119D)
C=============================================================================
C Loading file 'table3.dat' ! Reddening-corrected line fluxes of HII regions
C Format for file interpretation
1 format(
+ A8,4X,I2,2X,I5,3X,I5,2X,I4,3X,I2,2X,I4,2X,I2,2X,I3,3X,I2,2X,
+ I4,2X,I2,2X,I3,3X,I2,4X,I4,2X,I2,1X,A15)
C Effective file loading
open(unit=1,status='old',file=
+'table3.dat')
write(6,*) '....Loading file: table3.dat'
do i__=1,96
read(1,'(A108)')ar__
read(ar__,1)
+ Name,Seq,RAoff,DEoff,OII,e_OII,OIII,e_OIII,HeI,e_HeI,NII,
+ e_NII,SII,e_SII,SIII,e_SIII,HIIName
c ..............Just test output...........
write(6,1)
+ Name,Seq,RAoff,DEoff,OII,e_OII,OIII,e_OIII,HeI,e_HeI,NII,
+ e_NII,SII,e_SII,SIII,e_SIII,HIIName
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end