Conversion of standardized ReadMe file for
file /./ftp/cats/J/MNRAS/344/181 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-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/MNRAS/344/181 PDS versus Markarian starburst galaxies (Coziol, 2003)
*================================================================================
*The PDS versus Markarian starburst galaxies: comparing strong and weak IRAS
*emitter at 12 and 25 {mu}m in the nearby Universe.
* Coziol R.
* <Mon. Not. R. Astron. Soc. 344, 181 (2003)>
* =2003MNRAS.344..181C
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table1.dat' ! Characteristics of the PDS starburst galaxies as found
in LEDA and isolation status as found in NED
integer*4 nr__
parameter (nr__=154) ! Number of records
character*62 ar__ ! Full-size record
character*16 Name (nr__) ! IRAS or Mrk designation
real*4 BMAG (nr__) ! (mag) Absolute B magnitude (H_0_=75km/s/Mpc)
character*5 MType (nr__) ! Morphological type
real*4 TType (nr__) ! Hubble type
real*8 HRV (nr__) ! (km/s) Heliocentric redshift
real*4 log_D25 (nr__) ! ([0.1arcmin]) Diameter (up to 25mag/arcmin^2^)
real*4 SuBr (nr__) ! (mag/arcmin+2) B-band surface brightness
real*4 logVmax (nr__) ! ([km/s]) ? Maximum velocity rotation
character*3 Isolated (nr__) ! [yes no] isolated ?
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table2.dat' ! Characteristics of the Markarian starburst nucleus
galaxies (SBNG) as found in LEDA and isolation status
as found in NED
integer*4 nr__1
parameter (nr__1=308) ! Number of records
character*62 ar__1 ! Full-size record
character*16 Name_1 (nr__1) ! IRAS or Mrk designation
real*4 BMAG_1 (nr__1) ! (mag) Absolute B magnitude (H_0_=75km/s/Mpc)
character*5 MType_1 (nr__1) ! Morphological type
real*4 TType_1 (nr__1) ! Hubble type
real*8 HRV_1 (nr__1) ! (km/s) Heliocentric redshift
real*4 log_D25_1 (nr__1) ! ([0.1arcmin]) Diameter (up to 25mag/arcmin^2^)
real*4 SuBr_1 (nr__1) ! (mag/arcmin+2) B-band surface brightness
real*4 logVmax_1 (nr__1) ! ([km/s]) ? Maximum velocity rotation
character*3 Isolated_1 (nr__1) ! [yes no] isolated ?
C=============================================================================
C Loading file 'table1.dat' ! Characteristics of the PDS starburst galaxies as found
* in LEDA and isolation status as found in NED
C Format for file interpretation
1 format(
+ A16,2X,F5.1,1X,A5,1X,F4.1,1X,F7.2,1X,F4.2,1X,F5.2,1X,F4.2,1X,
+ A3)
C Effective file loading
open(unit=1,status='old',file=
+'table1.dat')
write(6,*) '....Loading file: table1.dat'
do i__=1,154
read(1,'(A62)')ar__
read(ar__,1)
+ Name(i__),BMAG(i__),MType(i__),TType(i__),HRV(i__),
+ log_D25(i__),SuBr(i__),logVmax(i__),Isolated(i__)
if(ar__(55:58) .EQ. '') logVmax(i__) = rNULL__
c ..............Just test output...........
write(6,1)
+ Name(i__),BMAG(i__),MType(i__),TType(i__),HRV(i__),
+ log_D25(i__),SuBr(i__),logVmax(i__),Isolated(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
C Loading file 'table2.dat' ! Characteristics of the Markarian starburst nucleus
* galaxies (SBNG) as found in LEDA and isolation status
* as found in NED
C Format for file interpretation
2 format(
+ A16,2X,F5.1,1X,A5,1X,F4.1,1X,F7.2,1X,F4.2,1X,F5.2,1X,F4.2,1X,
+ A3)
C Effective file loading
open(unit=1,status='old',file=
+'table2.dat')
write(6,*) '....Loading file: table2.dat'
do i__=1,308
read(1,'(A62)')ar__1
read(ar__1,2)
+ Name_1(i__),BMAG_1(i__),MType_1(i__),TType_1(i__),HRV_1(i__),
+ log_D25_1(i__),SuBr_1(i__),logVmax_1(i__),Isolated_1(i__)
if(ar__1(55:58) .EQ. '') logVmax_1(i__) = rNULL__
c ..............Just test output...........
write(6,2)
+ Name_1(i__),BMAG_1(i__),MType_1(i__),TType_1(i__),HRV_1(i__),
+ log_D25_1(i__),SuBr_1(i__),logVmax_1(i__),Isolated_1(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end