Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/539/A11 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-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/A+A/539/A11 NGC 1316/1317 planetary nebula kinematics (McNeil-Moylan+, 2012)
*================================================================================
*Planetary nebula kinematics in NGC 1316: a young Sombrero.
* McNeil-Moylan E.K., Freeman K.C., Arnaboldi M., Gerhard O.E.
* <Astron. Astrophys. 539, A11 (2012)>
* =2012A&A...539A..11M
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table2.dat' ! Catalog of planetary nebulae in NGC 1316
integer*4 nr__
parameter (nr__=796) ! Number of records
character*44 ar__ ! Full-size record
C J2000 position composed of: RAdeg DEdeg
integer*4 NGC ! Parent galaxy NGC number (1316 or 1317)
integer*4 PN ! Planetary nebula number within the cluster
real*8 RAdeg ! (deg) Right Ascension in decimal degrees (J2000)
real*8 DEdeg ! (deg) Declination in decimal degrees (J2000)
real*4 EW ! (0.1nm) Measured wavelength of the [OIII]5007{AA} line
integer*4 HV ! (km/s) Heliocentric velocity of the PN based on the
* [OIII] 5007{AA} line
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'table3.dat' ! Catalog of planetary nebulae in NGC 1317
integer*4 nr__1
parameter (nr__1=69) ! Number of records
character*44 ar__1 ! Full-size record
C J2000 position composed of: RAdeg DEdeg
integer*4 NGC_1 ! Parent galaxy NGC number (1316 or 1317)
integer*4 PN_1 ! Planetary nebula number within the cluster
real*8 RAdeg_1 ! (deg) Right Ascension in decimal degrees (J2000)
real*8 DEdeg_1 ! (deg) Declination in decimal degrees (J2000)
real*4 EW_1 ! (0.1nm) Measured wavelength of the [OIII]5007{AA} line
integer*4 HV_1 ! (km/s) Heliocentric velocity of the PN based on the
* [OIII] 5007{AA} line
C=============================================================================
C Loading file 'table2.dat' ! Catalog of planetary nebulae in NGC 1316
C Format for file interpretation
1 format(3X,I4,2X,I3,2X,F8.5,1X,F9.5,1X,F6.1,1X,I4)
C Effective file loading
open(unit=1,status='old',file=
+'table2.dat')
write(6,*) '....Loading file: table2.dat'
do i__=1,796
read(1,'(A44)')ar__
read(ar__,1)NGC,PN,RAdeg,DEdeg,EW,HV
c ..............Just test output...........
write(6,1)NGC,PN,RAdeg,DEdeg,EW,HV
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
C Loading file 'table3.dat' ! Catalog of planetary nebulae in NGC 1317
C Format for file interpretation
2 format(3X,I4,2X,I3,2X,F8.5,1X,F9.5,1X,F6.1,1X,I4)
C Effective file loading
open(unit=1,status='old',file=
+'table3.dat')
write(6,*) '....Loading file: table3.dat'
do i__=1,69
read(1,'(A44)')ar__1
read(ar__1,2)NGC_1,PN_1,RAdeg_1,DEdeg_1,EW_1,HV_1
c ..............Just test output...........
write(6,2)NGC_1,PN_1,RAdeg_1,DEdeg_1,EW_1,HV_1
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end