Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/680/A80 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-13
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/680/A80 3D dynamics of Tycho's SNR (Godinaud+, 2023)
*================================================================================
*A fresh perspective on the 3D dynamics of Tycho's supernova remnant:
*Ejecta asymmetries in X-rays.
* Godinaud L., Acero F., Decourchelle A., Ballet J.
* <Astron. Astrophys. 680, A80 (2023)>
* =2023A&A...680A..80G (SIMBAD/NED BibCode)
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'fig6.dat' ! *Proper motion vector field between 2003 and 2009
obtained with the tool POF
integer*4 nr__
parameter (nr__=1722) ! Number of records
character*56 ar__ ! Full-size record
C J2000 position composed of: RAdeg DEdeg
real*4 RAdeg (nr__) ! (deg) Right ascension (J2000)
real*8 DEdeg (nr__) ! (deg) Declination (J2000)
real*8 VRA (nr__) ! (km/s) Proper motion vector field component along RA
real*8 VDE (nr__) ! (km/s) Proper motion vector field component along DE
real*4 E_VRA (nr__) ! (km/s) Error on VRA (upper value)
real*4 e_VRA_1 (nr__) ! (km/s) Error on VRA (lower value)
real*4 E_VDE (nr__) ! (km/s) Error on VDE (upper value)
real*4 e_VDE_1 (nr__) ! (km/s) Error on VDE (lower value)
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'list.dat' ! Informations on fits image datacube
integer*4 nr__1
parameter (nr__1=1) ! Number of records
character*177 ar__1 ! Full-size record
C J2000 position composed of: RAdeg DEdeg
real*8 RAdeg_1 (nr__1) ! (deg) Right Ascension of center (J2000)
real*8 DEdeg_1 (nr__1) ! (deg) Declination of center (J2000)
integer*4 Nx (nr__1) ! Number of pixels along X-axis
integer*4 Ny (nr__1) ! Number of pixels along Y-axis
integer*4 Nz (nr__1) ! Number images
integer*4 size (nr__1) ! (Kibyte) Size of FITS file
character*43 FileName (nr__1) ! Name of FITS file, in subdirectory fits
character*99 Title (nr__1) ! Title of the FITS file
C=============================================================================
C Loading file 'fig6.dat' ! *Proper motion vector field between 2003 and 2009
* obtained with the tool POF
C Format for file interpretation
1 format(
+ F6.4,1X,F7.4,1X,F7.1,1X,F7.1,1X,F5.1,2X,F5.1,1X,F5.1,2X,F5.1)
C Effective file loading
open(unit=1,status='old',file=
+'fig6.dat')
write(6,*) '....Loading file: fig6.dat'
do i__=1,1722
read(1,'(A56)')ar__
read(ar__,1)
+ RAdeg(i__),DEdeg(i__),VRA(i__),VDE(i__),E_VRA(i__),
+ e_VRA_1(i__),E_VDE(i__),e_VDE_1(i__)
c ..............Just test output...........
write(6,1)
+ RAdeg(i__),DEdeg(i__),VRA(i__),VDE(i__),E_VRA(i__),
+ e_VRA_1(i__),E_VDE(i__),e_VDE_1(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
C Loading file 'list.dat' ! Informations on fits image datacube
C Format for file interpretation
2 format(F9.5,F9.5,1X,I3,1X,I3,1X,I1,1X,I4,1X,A43,1X,A99)
C Effective file loading
open(unit=1,status='old',file=
+'list.dat')
write(6,*) '....Loading file: list.dat'
do i__=1,1
read(1,'(A177)')ar__1
read(ar__1,2)
+ RAdeg_1(i__),DEdeg_1(i__),Nx(i__),Ny(i__),Nz(i__),size(i__),
+ FileName(i__),Title(i__)
c ..............Just test output...........
write(6,2)
+ RAdeg_1(i__),DEdeg_1(i__),Nx(i__),Ny(i__),Nz(i__),size(i__),
+ FileName(i__),Title(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end