Conversion of standardized ReadMe file for
file /./ftp/cats/J/ApJ/510/104 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-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 (nr__) ! Galaxy name
integer*4 Seq (nr__) ! Galaxy sequence number
integer*4 RAoff (nr__) ! (arcsec) Right ascension offset from the galaxy nucleus
integer*4 DEoff (nr__) ! (arcsec) Declination offset from the galaxy nucleus
integer*4 OII (nr__) ! OII (3727{AA}) flux (1)
integer*4 e_OII (nr__) ! Uncertainty in OII
integer*4 OIII (nr__) ! OIII (5007+4959{AA}) flux (1)
integer*4 e_OIII (nr__) ! Uncertainty in OIII
integer*4 HeI (nr__) ! HeI (5876{AA}) flux (1)
integer*4 e_HeI (nr__) ! Uncertainty in HeI
integer*4 NII (nr__) ! NII (6548+6583{AA}) flux (1)
integer*4 e_NII (nr__) ! Uncertainty in NII
integer*4 SII (nr__) ! SII (6716+6731{AA}) flux (1)
integer*4 e_SII (nr__) ! Uncertainty in SII
integer*4 SIII (nr__) ! (9069+9532{AA}) flux (1)
integer*4 e_SIII (nr__) ! Uncertainty in SIII
character*15 HIIName (nr__) ! 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(i__),Seq(i__),RAoff(i__),DEoff(i__),OII(i__),e_OII(i__),
+ OIII(i__),e_OIII(i__),HeI(i__),e_HeI(i__),NII(i__),e_NII(i__),
+ SII(i__),e_SII(i__),SIII(i__),e_SIII(i__),HIIName(i__)
c ..............Just test output...........
write(6,1)
+ Name(i__),Seq(i__),RAoff(i__),DEoff(i__),OII(i__),e_OII(i__),
+ OIII(i__),e_OIII(i__),HeI(i__),e_HeI(i__),NII(i__),e_NII(i__),
+ SII(i__),e_SII(i__),SIII(i__),e_SIII(i__),HIIName(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end