Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/580/A139 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-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/580/A139 GRB 130606A VLT/X-shooter spectroscopy (Hartoog+, 2015)
*================================================================================
*VLT/X-shooter spectroscopy of the afterglow of the Swift GRB 130606A.
* Hartoog O.E., Malesani D., Fynbo J.P.U., Goto T., Kruhler T.,
* Vreeswijk P.M., De Cia A., Xu D., Moller P., Covino S., D'Elia V.,
* Flores H., Goldoni P., Hjorth J., Jakobsson P., Krogager J.-K., Kaper L.,
* Ledoux C., Levan A.J., Milvang-Jensen B., Sollerman J., Sparre M.,
* Tagliaferri G., Tanvir N.R., de Ugarte Postigo A., Vergani S.D.,
* Wiersema K., Datson J., Salinas R., Mikkelsen K., Aghanim N.
* <Astron. Astrophys. 580, A139 (2015)>
* =2015A&A...580A.139H
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'list.dat' ! List of fits spectra
integer*4 nr__
parameter (nr__=16) ! Number of records
character*162 ar__ ! Full-size record
integer*4 Nx ! Number of pixels along X-axis
integer*4 Nsp ! Number of spectra in the file (1)
character*10 Obs_date ! ("YYYY-DD-MM") Observation date (2013-06-07)
character*13 Obs_time ! ("h:m:s") Observation time
real*8 lam_min ! (nm) [533/1066] Lower value of wavelength
* interval
real*8 lam_max ! (nm) [1019/2480] Upper value of wavelength
* interval
real*4 dlam ! (nm) [0.02/0.05] Spectral resolution
integer*4 size ! (Kibyte) Size of FITS file
character*62 FileName ! Name of FITS file, in subdirectory fits
character*41 Title ! Title of the file
*Note (1): For individual observations (xsh*), spectrum, error and quality.
C=============================================================================
C Loading file 'list.dat' ! List of fits spectra
C Format for file interpretation
1 format(
+ I5,1X,I1,1X,A10,1X,A13,1X,F7.2,1X,F7.2,1X,F4.2,1X,I3,1X,A62,
+ 1X,A41)
C Effective file loading
open(unit=1,status='old',file=
+'list.dat')
write(6,*) '....Loading file: list.dat'
do i__=1,16
read(1,'(A162)')ar__
read(ar__,1)
+ Nx,Nsp,Obs_date,Obs_time,lam_min,lam_max,dlam,size,FileName,
+ Title
c ..............Just test output...........
write(6,1)
+ Nx,Nsp,Obs_date,Obs_time,lam_min,lam_max,dlam,size,FileName,
+ Title
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end