FORTRAN Generation
(/./ftp/cats/J/ApJ/613/343)

Conversion of standardized ReadMe file for file /./ftp/cats/J/ApJ/613/343 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 2024-Apr-19
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/ApJ/613/343       Cas A knot and filament proper motions      (Delaney+, 2004)
*================================================================================
*Kinematics of X-Ray-emitting components in Cassiopeia A.
*    Delaney T., Rudnick L., Fesen R.A., Jones T.W., Petre R., Morse J.A.
*   <Astrophys. J., 613, 343-348 (2004)>
*   =2004ApJ...613..343D
C=============================================================================

C  Internal variables

      integer*4 i__

c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

C  Declarations for 'table1.dat'	! Knot and filament proper motions

      integer*4 nr__
      parameter (nr__=261)	! Number of records
      character*57 ar__   	! Full-size record

      integer*4     v_DRF2003_ (nr__) ! Knot or filament designation number
      real*4        blcX       (nr__) ! (arcsec) X location of bottom left corner (1)
      real*4        blcY       (nr__) ! (arcsec) Y location of bottom left corner (1)
      real*4        trcX       (nr__) ! (arcsec) X location of top right corner (1)
      real*4        trcY       (nr__) ! (arcsec) Y location of top right corner (1)
      real*4        pmRA       (nr__) ! (arcsec/yr) Right Ascension proper motion (2)
      real*4        pmDE       (nr__) ! (arcsec/yr) Declination proper motion (2)
      real*4        Rpm        (nr__) ! (%/yr) Radial component of motion
      real*4        e_Rpm      (nr__) ! (%/yr) Error in Rpm
      character*1   Class      (nr__) ! Spectral classification (3)
*Note (1): Of box defining the region used to measure each knot or filament
*     and extract spectra (arcseconds of offset on epoch 2002 image with
*     respect to the optical expansion center at 23:23:27.77+58:48:49.4 (J2000) 
*     (Thorstensen, Fesen & van den Bergh 2001AJ....122..297T).
*Note (2): All knots have been assigned a constant error of 0.07arcsec/yr.
*     Positive right ascension offset or motion is defined to be westward.
*Note (3): Spectral classification, defined as follows:
*    S = Si-dominated;
*    F = Fe-dominated;
*    L = LowEnergy-enhanced;
*    C = continuum-dominated;
*    M = mixture of two or more classes.

C=============================================================================

C  Loading file 'table1.dat'	! Knot and filament proper motions

C  Format for file interpretation

    1 format(
     +  I3,1X,F6.1,1X,F6.1,1X,F6.1,1X,F6.1,1X,F5.2,1X,F5.2,1X,F5.2,1X,
     +  F4.2,1X,A1)

C  Effective file loading

      open(unit=1,status='old',file=
     +'table1.dat')
      write(6,*) '....Loading file: table1.dat'
      do i__=1,261
        read(1,'(A57)')ar__
        read(ar__,1)
     +  v_DRF2003_(i__),blcX(i__),blcY(i__),trcX(i__),trcY(i__),
     +  pmRA(i__),pmDE(i__),Rpm(i__),e_Rpm(i__),Class(i__)
c    ..............Just test output...........
        write(6,1)
     +  v_DRF2003_(i__),blcX(i__),blcY(i__),trcX(i__),trcY(i__),
     +  pmRA(i__),pmDE(i__),Rpm(i__),e_Rpm(i__),Class(i__)
c    .......End.of.Just test output...........
      end do
      close(1)

C=============================================================================
      stop
      end