Conversion of standardized ReadMe file for
file /./ftp/cats/J/A_A/529/A91 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-Apr-23
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/529/A91 Proper motions of 555 quasars from VLBI (Titov+, 2011)
*================================================================================
*VLBI measurement of the secular aberration drift.
* Titov O., Lambert S.B., Gontier A.-M.
* <Astron. Astrophys. 529, A91 (2011)>
* =2011A&A...529A..91T
C=============================================================================
C Internal variables
integer*4 i__
c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
C Declarations for 'list555.dat' ! Position and proper motions of 555 quasars
integer*4 nr__
parameter (nr__=555) ! Number of records
character*94 ar__ ! Full-size record
C J2000 position composed of: RAdeg DEdeg
character*8 IERS (nr__) ! Radio source IERS designation
integer*8 N (nr__) ! Number of sessions after 1990
real*8 RAdeg (nr__) ! (deg) Averaged right ascension, J2000
real*8 DEdeg (nr__) ! (deg) Averaged declination, J2000
real*8 pmRA (nr__) ! (uas/yr) Proper motion in right ascension, pmRA*cosDE
real*8 pmDE (nr__) ! (uas/yr) Proper motion in declination
real*8 e_pmRA (nr__) ! (uas/yr) rms uncertainty on pmRA
real*8 e_pmDE (nr__) ! (uas/yr) rms uncertainty on pmDE
C=============================================================================
C Loading file 'list555.dat' ! Position and proper motions of 555 quasars
C Format for file interpretation
1 format(A8,I10,F18.12,F18.12,F10.2,F10.2,F10.2,F10.2)
C Effective file loading
open(unit=1,status='old',file=
+'list555.dat')
write(6,*) '....Loading file: list555.dat'
do i__=1,555
read(1,'(A94)')ar__
read(ar__,1)
+ IERS(i__),N(i__),RAdeg(i__),DEdeg(i__),pmRA(i__),pmDE(i__),
+ e_pmRA(i__),e_pmDE(i__)
c ..............Just test output...........
write(6,1)
+ IERS(i__),N(i__),RAdeg(i__),DEdeg(i__),pmRA(i__),pmDE(i__),
+ e_pmRA(i__),e_pmDE(i__)
c .......End.of.Just test output...........
end do
close(1)
C=============================================================================
stop
end