\documentstyle{book}
\def\b{$\backslash$}
\def \m {$^{\rm m}$}
\def \h {$^{\rm h}$}
\def \s {$^{\rm s}$}
\def\g{^\circ}
\def \dg {\hspace*{2.3pt}.{\hspace*{-0.7ex}{$^\circ$}}}
\def \dm {\hspace*{3.0pt}.{\hspace*{-1.0ex}{$^{\rm m}$}}}
\parindent0pt
\parskip3pt
\oddsidemargin0pt
\evensidemargin0pt
\textwidth16cm
\topmargin0pt
\textheight23cm
\title{Radiant 1.4 -- Manual}
%\subtitle{Manual}
\author{Rainer Arlt}
\date{December 1993, revised October 1997}
\begin{document}
\maketitle
\tableofcontents

\chapter{Introduction}
This software calculates density distributions of meteor radiants. The disk-read procedures interpret meteor co-ordinate data in the
PosDat and FIDAC formats. The user should have some basic
knowledge of creating dBase files.
The density distributions are gnomonically projected, thus simplifying the
calculating procedures. For most radiant searches the investigated area is small enough ($<20\g$ across) that the scale change
over this ``gnomonic chart'' can be neglected. Radiant knows three methods of radiant determinations: backward tracings,
intersection counts and probability distributions.

Radiant is a product which developed by its users. I would like to specially thank Malcolm J. Currie for his numerous
suggestions, Andr\'e Kn\"ofel for testing the current version and setting up the FIDAC file structure, Ralf Koschack for
mathematical ideas and the analysis of plotting and velocity errors, Luis R. Bellot for modifying the angular speed formula,
Detlef Koschny for setting up the PosDat file structure and many more. I would also like to thank my computer system
(386-40) and a late hard disk for patiently compiling the software thousands of times.

Hardware Requirements   Operating System
\begin{itemize}
\item PC AT, hard disk recommended with at least 600K free disk space
\item MS-DOS or PC-DOS version 3 or higher, DR-DOS 5.0 or higher
\item at least 350K free memory
\item VGA graphics board ($640\times480$~pixel, 16 colours)
\item at least analog black-and-white monitor (VGA-Monitor)
\item a numeric processor is required which is included in all 486DX and
Pentium processors
\end{itemize}

The following files should be on the Radiant 1.41 diskette:

\begin{tabular}{lp{12.5cm}}
{\tt RAD14.EXE}:&main programme of the Radiant software\\
{\tt RAD14.OVR}:&overlay file for Radiant\\
{\tt RAD14.HLP}:&help file for context help\\
{\tt RAD14.IDX}:&help index\\
{\tt RAD14.CFG}:&standard configuration file\\
{\tt RAD14.ICO}:&icon for Windows 3.x*\\
{\tt RAD14.PRJ}:&example project file\\
{\tt PRJ14.EXE}:&Project Editor\\
{\tt EGAVGA.BGI}:&graphics driver\\
{\tt PDHEAD-S.DBF}:&example header file (in PosDat format)*\\
{\tt PDDATA-S.DBF}:&example data file*\\
{\tt FIDAC-S.DBF}:&example FIDAC file*\\
{\tt VMDBSITE.DBF}:&site code file of IMO (use it if you do not have programmes
of the Visual Meteor DataBase, otherwise it can be erased)\\
\end{tabular}

Additionally, Radiant may create the following files during runtime:

\begin{tabular}{lp{12.5cm}}
{\tt \~{}RADLIST.TMP}:&When started Radiant creates this file to swap large numbers of meteors to disk. If you find this
              file after unregularly exiting the programme you can erase it. Otherwise it will be overwritten at
              the next start of Radiant.\\
{\tt \~{}RADTELE.TMP}:&Temporary file to swap telescopic fields to disk when running a DOS shell.
\end{tabular}

*) Files can be deleted if not needed.

You can run Radiant with different configuration files. Give the name behind the programme name:

\qquad{\tt RAD14} {\it cfgname}

where {\it cfgname} is the filename of the configuration file. The standard {\it cfgname} is
{\tt RAD14.CFG}.

\chapter{How to Use Radiant}
\section{The creation of PosDat databases}
Either of the database packages dBase (version II or higher) or Fox software
(FoxBase, FoxPlus, FoxPro) should be installed in your computer. The maintainance
of PosDat files needs some dBase commands which will be shortly desribed
here. First, we should talk about the understanding of PosDat, then tackle the
details.

dBase files are sequential, each record is followed by another. In
a database containing meteors, this would mean one record for each meteor.
A part of the information belonging to a meteor is redundant for many meteors
in an observing session, like the date, the field of view or the observing
method, which may no doubt be interesting for future analyses. PosDat tries to
keep these repetitions less frequent by the introduction of two files: The
{\it header file\/}, in which general information about an observing session
is stored, and the {\it data file\/}, in which the actual meteors are stored.
Whenever we refer to PosDat data, we refer to two parallel files that should
never be separated.

Both files are connected by an {\tt ID} field containing three characters. For
example, a one-hour observing session containing 15~meteors leads to one
record in the header file with a certain {\tt ID}, say {\tt AAA}, and 15~records
in the data file with the same {\tt ID}, {\tt AAA}. The {\tt ID}s should
be subsequently increased like {\tt AAA}, {\tt AAB}, \dots, {\tt AAZ},
{\tt ABA}, {\tt ABB}, \dots, {\tt ABZ}, \dots, {\tt ZZZ}, giving
17576~combinations.

The software Radiant is delivered with two PosDat example files,
{\tt PDHEAD-S.DBF} and {\tt PDDATA-S.DBF}, the header and data files resp.
It is recommended to maintain separate sets of files for each year. If you
wish to create files for 1997, enter your database software and type

\qquad{\tt use pdhead-s}

and

\qquad{\tt copy structure to pdhead97}

The same applies for the data file:

\qquad{\tt use pddata-s}

\qquad{\tt copy structure to pddata97}

If you want to add a record to the header file, type

\qquad{\tt use pdhead97}

to open the database and

\qquad{\tt append blank}

to add a blank new record which can be filled with the header data of the
observing session. Then for the meteors:

\qquad{\tt use pddata97}

\qquad{\tt append blank}

You can write your own software for the input of meteors in PosDat, either
in dBase language or in another language for which the following command may
be useful. You should create ASCII files with one row for each record; the
fields must follow each other without delimiter, with the same field lengths
as given in the table below. In the database software, type

\qquad{\tt use pdhead97}

\qquad{\tt append from pdhead97.txt type sdf}

depending on what filename you used for the ASCII file. The structure
descriptions of both the header and data file follow.

Fields of {\tt PDHEAD}{\it yy\/}{\tt .DBF}:

\begin{tabular}{lp{13cm}}
{\tt ID}&3-character identification field to connect one header records with the
   data records in {\tt PDDATA}{\it yy\/}{\tt .DBF}. Following strings
   should be used: AAA, AAB, \dots, ZZZ; 000, 001, \dots, 999.\\
{\tt YEAR}&Although the filename specifies the year already, it is safer to have
     this value also in the database itself. Moreover, one might compile
     several PosDat files to one for some global analysis. It is an 4-digit
     field.\\
{\tt MONTH}&2-digit field for the month of the observation. An observation on
      31~July/01~Aug gives {\tt MONTH}=7.\\
{\tt DAY}&5-character field for the night of observation. Generally, 05/06 for the
    night July~05-06. (By definition, the first day gives that day, meteors
    between 12--24h UT refer to; the second gives the day, meteors between
    0--12h UT refer to.) The night Jul~31/Aug~01 gives {\tt DAY}=31/01 ({\tt MONTH}=7).
    The night 1991 Dec 31/1992 Jan 01 is stored as {\tt YEAR}=1991, {\tt MONTH}=12, {\tt DAY}=31/01.
    The complete observation belongs to {\tt PDHEAD91.DBF} und {\tt PDDATA91.DBF}.\\
{\tt OBSCODE}&5-character IMO-code. If new codes are introduced, the names and
        coutries should be mentioned in a separate file of any structure or
        on a paper.\\
{\tt SITECODE}&5-digit IMO-code. If new codes are introduced, the names, countries
         and co-ordinates of these sites should be mentioned in a separate
         file or on a paper.\\
{\tt METHOD}&11-character field for the observing method. Visual observers simply
       give P for plotting, R for reporting. Telescopic observers give
       {\tt TmmXaaatfff}, where

       \begin{tabular}{lp{10cm}}
       {\tt mm}&magnification,\\
       {\tt aaa}&diameter of aperture in millimeter,\\
       {\tt t}&type (B -- binoculars, N -- Newtonian, M -- bin. Newtonian, R -- refracting
          telescope, S -- Schmidt-Newtonian),\\
       {\tt fff}&field of view in tenth of a degree ($5\g$ is 050).
       \end{tabular}

       {\tt T10X080B035} -- telescopic observation with 10x80 binoculars with $3.5\g$
       field of view.\\
{\tt MAP}&5-character field for the charts used. BR -- Atlas Brno, T\dots -- user defined
    telescopic charts, FE -- FEMA charts, SL -- Slovak gnomonic atlas,
    AG -- gnomonic maps of Roland Egger.\\
{\tt LM}&4,1-digit field for the limiting magnitude.\\
{\tt RACEN}&3-digit field for the right ascension of the centre of the view field.
      If no centre is reported this field is 999.\\
{\tt DECCEN}&3-digit field for the declination of the centre of  the view field.
      If no centre is reported this field is 999.\\
\end{tabular}

\newpage

Fields of {\tt PDDATA}{\it yy\/}{\tt .DBF}:

\begin{tabular}{lp{13cm}}
{\tt REF\_NO}&4-digit field for individual reference numbers. This field is optional.\\
{\tt HOUR}&2-digit field for the time in UT (hours).\\
{\tt MIN}&2-digit field (minutes).\\
{\tt SEC}&2-digit field (seconds).\\
{\tt MAG}&4,1-digit field for the magnitude of the meteor.\\
{\tt VEL}&2-character field. It should contain numbers in degrees per second
    (0\dots40 ø/s). Arbitrary speed scales should be given as characters
    (A\dots E).\\
{\tt TYPE}&2-character field for telescopic observations only. 00 -- meteor started
     and ended within the field of view, 10 -- started within, ended outside the
     field, 01 -- started outside, ended within the field, 11 -- start and end lie
     outside the field of view.\\
{\tt RABEG}&6,2-digit field for the right ascension of the meteor's start point
      with two decimals.\\
{\tt DECBEG}&6,2-digit field for the declination.\\
{\tt RAEND}&6,2-digit field for the right ascension of the meteor's end point with
      two decimals.\\
{\tt DECEND}&6,2-digit field for the declination.\\
{\tt ACC}&1-digit field for the subjective plotting accuracy. 1 -- accurate plot,
    2 -- not the best plot, 3 -- inaccurate plot.\\
{\tt ID}&3-character field which connects this file ({\tt PDDATA}{\it yy\/}{\tt .DBF}) with the header
    file ({\tt PDHEAD}{\it yy\/}{\tt .DBF}) of the same year. (Remember that {\it yy\/} is replaced by
    the year of the observations.) See description of {\tt ID} in {\tt PDHEAD}{\it yy\/}{\tt .DBF} for
    details.\\
REM&Optional 4-character field for some references to remarks. You may also
    use this field to give the observer's shower association for the meteor.\\
\end{tabular}

Database structure of {\tt PDHEAD}{\it yy\/}{\tt .DBF} as it is expressed
in dBase:

\begin{tabular}{rllrr}
    1&  {\tt ID}       &   Character  &    3 \\
    2&  {\tt YEAR}     &   Numeric    &    4 \\
    3&  {\tt MONTH}    &   Numeric    &    2 \\
    4&  {\tt DAY}      &   Character  &    5 \\
    5&  {\tt OBSCODE}  &   Character  &    5 \\
    6&  {\tt SITECODE} &   Numeric    &    5 \\
    7&  {\tt METHOD}   &   Character  &   11 \\
    8&  {\tt MAP}      &   Character  &    5 \\
    9&  {\tt LM}       &   Numeric    &    4 &     1\\
   10&  {\tt RACEN}    &   Numeric    &    3 \\
   11&  {\tt DECCEN}   &   Numeric    &    3 \\
\multicolumn{3}{l}{** Total **}    &   51 \\
\end{tabular}

Database structure of {\tt PDDATA}{\it yy\/}{\tt .DBF} as it is expressed
in dBase:

\begin{tabular}{rllrr}
    1&  {\tt REF\_NO} &     Numeric   &     4  \\
    2&  {\tt HOUR}    &    Numeric    &    2   \\
    3&  {\tt MIN}     &    Numeric    &    2   \\
    4&  {\tt SEC}     &    Numeric    &    2   \\
    5&  {\tt MAG}     &    Numeric    &    4  &    1\\
    6&  {\tt VEL}     &    Character  &    2   \\
    7&  {\tt TYPE}    &    Character  &    2   \\
    8&  {\tt RABEG}   &    Numeric    &    6  &    2\\
    9&  {\tt DECBEG}  &    Numeric    &    6  &    2\\
   10&  {\tt RAEND}   &    Numeric    &    6  &    2\\
   11&  {\tt DECEND}  &    Numeric    &    6  &    2\\
   12&  {\tt ACC}     &    Numeric    &    1   \\
   13&  {\tt ID}      &    Character  &    3   \\
   14&  {\tt REM}     &    Character  &    4   \\
\multicolumn{3}{l}{** Total **} & 51  \\
\end{tabular}

\section{The keyboard and the mouse}

The {\bf pull-down menu} can be activated by the {\sc tab} key or {\sc F10}. You can also press the first letter of the item you want to open.
Move the black bar up and down with $\uparrow$ and $\downarrow$. Change to another menu with $\leftarrow$ and $\rightarrow$ or with the highlighted letter of the
menu name. You may leave the pull-down menu with {\sc esc} without releasing any function or with {\sc enter} to accept a certain
item. Dots behind menu items indicate, that there is a further dialogue box for input. Some items in the pull-down menu are
switches. If they are enabled they show a $\surd$.
{\it Mouse} -- Click with the left button on the item you want to open and drag down the selection bar to the desired item with the mouse
button held down. Release the button to execute the item.

In {\bf lists and directories} select the items with $\uparrow$, $\downarrow$, {\sc PgUp} and {\sc PgDn}.
The highlighted bar moves up and down. Select a list item
with {\sc enter}. When you want to leave a menu press {\sc esc}.
{\it Mouse} -- Click on the required list item. Press the right mouse button to leave the list.

In {\bf adjusting boxes} select the items with $\uparrow$ and $\downarrow$. Change the value of the highlighted item with $\leftarrow$ and $\rightarrow$ or enter a
number. Press {\sc esc} (``Cancel") to cancel changes or {\sc enter} (``OK'') to accept the adjustments.
{\it Mouse} -- Put the mouse pointer on the value to be changed and press the left and right button of the mouse to decrease and increase
the value respectively. Press the button ``OK'' to accept the values and ``Cancel'' to abandon the changes.

In {\bf input boxes} you have to use the letters and numbers on the keyboard. If something is already written in the input line
simply replace it by entering the new text. Exception: {\sc backspace} deletes the character before the cursor, $\leftarrow$ and $\rightarrow$ move the
cursor, {\sc home} moves to the first letter, {\sc end}, to the last character of the line. The right mouse button leaves the window.
In alternative boxes select ``YES'' or ``NO'' with {\sc y} and {\sc n} resp. Press the left mouse button on one of the buttons.

\label{help}At almost every situation you get a {\bf help window} with key {\sc F1}. Generally, you will see the help index. The help text itself
has four buttons. Press {\sc enter} (``OK'') to return to the current action or {\sc F1} to see the ``Index''. Press a letter to access a certain
topic of the index faster. You can go through the latest help screens with {\sc Alt+F1} (``Back'') and {\sc Ctrl+F1} (``Next'').
Cross-references are implemented as buttons as well.
\label{keys}
In several cases (buttons ``Find'', ``Cros'', ``Area'' and menu items ``Include", ``Exclude'') you have to {\bf define parts} of the
display.
{\it Mouse} -- With the mouse simply press the left button at the position of the upper left corner and drag the mouse pointer with pressed
button to the lower right one. Keyboard users can move a small cross with the cursor keys. Press {\sc enter} when you reach the
upper left corner of the desired field. Move with the cursor keys to the lower right corner and press {\sc enter} again.

\section{Generating radiant distributions}
\subsection{First steps}
The software Radiant is delivered with a set of sample PosDat files,
{\tt PDHEAD-S.DBF} and {\tt PDDATA-S.DBF}. We will use these files for
getting accustomed to how the programme works. If you have not changed
the start-up configuration of Radiant yet, i.e.\ if you just put
Radiant onto your harddisk, you can try the following items to quickly
get a first result:
\begin{itemize}
\item Start Radiant with {\tt rad14} from the command line,
\item press {\sc enter}; you will see an input box asking for the database
from which meteors are imported.
\item The pre-defined input text just refers to the above mentioned
example databases. Press {\sc enter} to accept the header file and
\item press {\sc enter} again to accept the data file.
\item Now, Radiant immediately starts to calculate a radiant distribution.
Equatorial grid lines will be shown, and different coloured boxes
represent the strength of the convergence points. The colour ranges from
black (no radiant) via white (medium strength) to red (strong radiant).
\item Use the cursor keys to move the little cross in the middle of the screen
to the strongest radiant, i.e.\ to the red bin. The title line of the
distribution window shows both the equatorial and ecliptical coordinates.
It should read $\alpha=127$\dg04, $\delta=17$\dg00 now.
\item Press {\sc s} or the `Smth' button on the screen now. An averaging
procedure blurs the image reducing the aliasing effect of the discrete
radiant bins a little.
\end{itemize}
After we have found a first radiant at $\alpha=127\g$, $\delta=17\g$, we
should understand what we did. {\sc enter} is the short-key of the menu
item ``DISPLAY: Calculate''. Try to activate it with the mouse too. When no
meteors are loaded into Radiant, the calculation procedure asks for
databases to be imported. This was the input box you have seen. After the
filenames were entered or accepted, the calculation procedure starts its
work and draws the final result on the screen. The pre-defined method for
radiant searches is the simple backward prolongation of meteors. A part of
the sky (the square on the screen, with the coordinate lines) is divided
into little pices (pixels), and the value of each piece is increased
when a backward prolongation of a meteor crosses it.

\subsection{Adjustments prior to a radiant search}
Now we have to think about which parameters have to be adjusted before our
own radiant search. Most of the values can be set in the menu ``OPTIONS''.
If your PosDat database contains meteors of many nights of the year, you
have to select the period in which the investigated shower is active. Do
this by ``OPTIONS: Selection''. A lot of selection criteria will show up;
generally you will just give a beginning and end of the period of interest.

Now select ``OPTIONS: Calculation'' from the menu and adjust the geocentric
velocity, which is a very essential parameter for radiant investigations.
Since we have to look at the right part of the sky for our radiant, we have
to choose ``OPTIONS: Centre'' to set the coordinates of the centre of the
radiant distribution grid. Finally, some information on the daily motion of
the shower should be given under ``OPTIONS: Daily Motion''. Every radiant
moves towards the east about parallel to the ecliptic for geometrical
reasons. You will be asked for a daily-motion value in degrees which means
the drift of a radiant parallel to the ecliptic per day. The standard value
of 1\dg0 is reasonable for most radiant searches as long as the period
from which the meteors are selected is not too large. The daily-motion value
allows the usage of meteors from different dates, since each meteor is
shifted along the ecliptic producing a sharp radiant, albeit the drift
would smear out the structure. Naturally, we must give the reference date
to which all meteors are shifted. This is asked for in the second line of the
input box. You can either give a date in the form MM/DD.DD with decimal
days or just a solar longitude in degrees.

We are ready for the calculation of a radiant distribution. Start it with
``DISPLAY: Calculate'', and you will be asked for the database files in case
you changed the selection of meteors from the database. After the calculation
is ready, ou can save the result with ``DISPLAY: Save''. The option
``Save Meteor List'' is recommended to be tagged when saving displays; this
allows the exact reproduction of the calculation. The meteor lists are saved
in Radiant's internal format which saves a lot of disk space compared to the
original PosDat files.

\subsection{Calculation methods}
The backward prolongation of meteors of the simplest method of finding
radiants. It can be improved by considering the angular velocity of meteors
and their path length as it is done in Radiant, but we should allow for
other methods as well. Radiant implements three methods which can be found
in the menu ``ENVIRONMENT''. The ``Tracings'' are tagged---below that you find
``Intersections'' and ``Probabilities''. The intersection method calculates
the intersection points of each pair of meteors possible and increases the
grid bin on the display in which this intersection point falls. The
probability-function method is the most expensive in calculation time.
Because of plotting errors, it is not just a straight line behind a meteor
which may include the true radiant, but a whole area of roughly elliptic
shape. Therefore, a certain probability to be the radiant of the meteor
is computed for each distribution bin behind the meteor. These probabilities
result from typical errors in plotting and velocity estimates.

\subsection{Analysing the result}
One of the most often used function is the ``Smth'' button about which we
talked in the ``First steps''. This feature is less important when calculating
radiant distributions from probability functions, since those are fairly
smooth {\it per se}. Another helpful tool is the ``Dist'' button which
shows the distribution of the actual meteors around the display. The
investigated area is indicated by a dotted line. This line is bended because
the meteor distribution is not shown on a gnomonic projection, which is
inappropriate for large distances from the centre. Hence, you should be
aware of that you cannot prolong the meteor streaks on the meteor
distribution screen by straight lines. Nevertheless, it gives you an idea
of how well the meteors are distributed around the area under study. It is
in fact essential to have a homogeneous distribution of meteors, otherwise
the result may be biased along the direction in which most of the meteors
emanated.

We should also find out whether or not a certain region of our result is a
significant radiant. This is the most tricky question and cannot be answered
unambiguously. The most essential prerequisite to any radiant study is,
that the meteors are not pre-selected. In order to determine the significance
of a radiant we need the noise of the surrounding areas for comparison. If
you use only meteors for your study which seem to come from the suspected
radiant, you will naturally find the radiant as a prominent source. We define
a certain value called the `prominence' telling us how strongly the radiant
exceeds the average level of spurious radiants. The values of all bins in
the radiant display are averaged and the standard deviation is calculated.
The prominence then means how many times the standard deviation our radiant
stands out of the average.

The prominence can be determined by ``BACKGRND: Get Noise''. A small window
appears showing you the average bin value, the standard deviation and the
prominence $z$. You move the small cross reporting the coordinates in the
display and find out how the prominence changes in each bin. The red bins
(white bins on b/w monitor) have highest prominence of course. The radiant
mentioned in the ``First steps'' has prominence $z=5.65$ after smoothing
with the ``Smth'' button. Unfortunately, the prominence is not a universal
value as it depends on many parameters like the screen resolution, the
calculation method and whether or not the display was smoothed. It is
recommended to use the prominence as a relative measure to compare the
development of a radiant with time as long as the parameters mentioned
are not changed. You can check whether the suspected radiant has a variation
in prominence just like an activity graph, instead of a constant, low
prominence indicating that you just found a number of spurious radiants
right in your area of investigation which do not belong to a real shower.

There are other methods of checking the significance of a radiant too.
They use the fact that a true meteor shower has certain characteristics,
particularly geocentric velocity and radiant drift, which must be fulfilled.
Hence, the radiant should be much less prominent when one of these parameters
is mistuned. You can set the daily motion to 0\dg0 and check the prominence
of the radiant. This, however, only works, if you have meteors from several
dates, say of a whole week or longer. Otherwise, the daily-motion value has
no effect of course. Changing the geocentric velocity is a very powerful
tool. When you tune the velocity you should again get a kind of prominence
curve with maximum at a certain speed. And if you are investigating an
unknown shower, you automatically get an estimate of the geocentric velocity
of the stream. This method shows, how important velocity estimates in degrees
per second are.

\chapter{Menu reference}
\section{The Menu Item ``PROGRAMME''}

\subsection{DOS}
With this item it is possible to run DOS commands, e.g. copy, replace, rename files or make directories. Radiant switches
to the normal DOS text screen. When you are done leave this screen with

\qquad{\tt exit}

You get into Radiant again. Functions ``Smth'', ``Log'', ``eXp'', ``Grad'' and the colour ranges are lost.

\subsection[PROJECT]{PROJECT\hfill{\sc Alt+p}}
This item starts the external Project Editor {\tt PRJ14.EXE}. It is a small editor for calculation projects, which make larger
analyses easier. See page~\pageref{prj} for a detailed description of the Project Editor.

\subsection{SAVE STATE}
Radiant does not save the settins of the programme when you finish your work. You may now explicitly save the configuration
with a chosen name of 8 characters. This way, you can make several configuration files which can be called while starting
Radiant with

\qquad{\tt rad14} {\it cfgname}

where {\it cfgname} is the filename of the configuration including the
extension {\tt .CFG}. You may also retrieve configuration files
with ``PROGRAMME: Load State''. The following example shows all settings
of the initialization file:

\begin{verbatim}
Mouse installed:                            Mouse=ON
Mouse pointer speed:                        MouseSpeed={1...63}
EMS manager installed:                      EMS=ON
Standard directory for displays:            DspDirectory=C:\RAD14\DSP
The file with the sitecode definitions:     SiteFile=C:\RAD14\VMDBSITE.DBF
PosDat header file:                         HeaderFile=C:\DBASE\POSDAT\PDHEAD-S.DBF
PosDat data file:                           DataFile=C:\DBASE\POSDAT\PDDATA-S.DBF
FIDAC file:                                 FidacFile=C:\DBASE\FIDAC\FIDAC91.DBF
Project file                                ProjectFile=C:\RAD14\RAD14.PRJ
If meteors are saved with the display       LoadSaveMeteors=ON
Calculation method                          Method={ Tracing|Intersection|Probability }
Switches in ENVIRONMENT:                    ScaleCorrection=ON
                                            VelocityConsideration=ON
                                            SitecodeInquiry=OFF
(OFF means ReadPosDat)                      ReadFIDAC=OFF
                                            ProjectLogFile=OFF
RESOLUTION:                                 Res={ 100|50|25 }
Switches in ADDITIONALS:                    Monitor={ Colour|Mono }
                                            Paint=ON
                                            EquGrid=OFF
                                            TelescopicFields=OFF
                                            Stars40=OFF
                                            Stars55=OFF
                                            Radiants=OFF
                                            Ecliptic=OFF
Switches in ASCII:                          ASCIIEnv=OFF
                                            ASCIIExpl=OFF
                                            ASCIIRaDec=ON
Delimiter (may contain any character):      ASCIIDel={ 32...127 }
Switches in PRINT:                          PrinterType={ EPSON9|IBM24|HPDESKJET|
                                                          HPLASERJET| HPLJMICROTONER }
                                            PrinterPort={ LPT1|LPT2|LPT3 }
                                            PrintCStrip=ON
                                            PrintEnv=OFF
                                            PrintFast=OFF
Centre of display:                          CenRA=150.00
                                            CenDE=5.00
Settings of OPTIONS, Calculation:           PixelSize=1.00
                                            GeoVel=35.0
                                            MinSpeed=0
                                            MaxSpeed=25
                                            MaxDist=70
                                            Ratio=1.00
                                            SpeedScale=5.00
                                            MinAngle=20
Settings of OPTIONS, Daily Motion:          Motion=1.00
                                            SolLong=300.00
Settings of OPTIONS, Colours                ColGrid=4
(0-black, 1...4-grey, 6-pink, 7-yellow,     ColTele=6                                                         8: orange, 9: lt. red, 10: dk. red, 11: lt. blue, 12: dk. blue, 13:
8-orange, 9-lt. red, 10-dk. red,            ColStars=15
11-lt. blue, 12-dk. blue, 13-lt. green,     ColExclude=4
14-dk. green, 15-white)                     ColRadiants=14
                                            ColEcliptic=7
Settings of OPTIONS, Std. Deviations:       S0 = 0.90
(velocity sigma)                            S5 = 3.00
                                            S10= 3.70
                                            S15= 4.60
                                            S20= 5.80
                                            S25= 5.90
                                            S30= 6.00
(plotting sigma)                            P0 = 0.50
                                            P5 = 1.40
                                            P15= 2.60
                                            P30= 3.80
                                            P50= 4.00
                                            P70= 4.50
Settings of OPTIONS, Image                  SmoothRate=0.50
                                            ExpBase=2.00
                                            LogBase=2.00
                                            GridWidthAlpha=10.0
                                            GridWidthDelta=10.0
\end{verbatim}

Values in parentheses give a list of alternative choices. Use only one word
or number from that list. Key words as well as settings are not
case-sensitive, hence {\tt Mouse=ON} is identical with {\tt mouse=on} and
{\tt MOUSE=On}.

\subsection{LOAD STATE}
Retrieves configuration files {\tt *.CFG}. These files must have been saved
with ``PROGRAMME: Save'' State or edited with an ordinary ASCII editor before.

\subsection{SYSTEM INFO}
Gives information about the following things:
\begin{itemize}
\item the release date which should be 23 December 1993 for Radiant 1.4 and 1.4a;
1 December 1996 for Radiant 1.41,
\item whether calculations are done by the CPU or on the numeric processor.
\item Free DOS RAM: Sum of all free conventional RAM blocks in kbytes.
\item Largest free RAM block. If the difference between free DOS RAM and largest block becomes large, please use
     ``PROGRAMME: DOS Shell'' to reorganize the memory.
\item Free EMS RAM: Free expanded memory in kbytes. If no EMM is installed this number is 0. Radiant uses 160 KB
     of EMS for fast overlay swapping.
\item Frame: address of the page frame which is used by the EMM as interface to the programme.
\item Free Disk Space: Complete free space in MB of the disk Radiant is working on.
\end{itemize}

\subsection[QUIT]{QUIT\hfill{\sc Alt+x}}
The Radiant session will be closed. The current state is not saved. This can be done with ``Save State''.


\section{The Menu Item ``OPTIONS''}

\subsection[SELECTION]{SELECTION Ctrl+s}
\label{selection}
A dialogue box opens showing several options to select appropriate observations from the header file of PosDat or from
FIDAC files respectively.
The meteors of these observations can be imported into a Radiant meteor list by ``METEORS: Import''. Additionally, there
is an automatism in the ``DISPLAY: Calculate'' function that every time when the selection was changed and the calculating
procedure is called, Radiant asks for the import databases. If the selection was not changed this procedure does not ask for
the names.
The input window is closed with ``OK''. The button ``Clear'' ({\sc F8}) releases all criteria without clearing the meteors currently
loaded. Every input line offers a help screen by pressing F1.

\begin{tabular}{lp{12.5cm}}
Observer:&Give the IMO abbreviations of the observers whose observations you want to be used. The observers
                    have to be separated by commas. Examples: {\tt renju,rogpa,wooje} or {\tt RENJU,ROGPA,WOOJE}. The
                    maximum number of selectable observers is 5.\\
Site:&Give the IMO abbreviation of the site from which the selected observations should be made. It is possible
                         to enter only the first digits to select more than one site; e.g. ``12'' selects all observations made at sites
                         in Australia.\\
Atlas:&Give an abbreviation of the used atlas or charts collection. This way
                         you can choose the observing method. E.g. type {\tt t}
                         to use only telescopic observations or {\tt br} to use
                         those which were made visually on the Atlas Brno charts.
                         Allowed abbreviations are:

                         \begin{tabular}{lp{10cm}}
                         {\tt br}& Atlas Brno (magnification 160)\\
                         {\tt fe}& FEMA charts (magnification 75)\\
                         {\tt sl}& Slovak gnomonic atlas\\
                         {\tt ag}& Gnomonic Atlas by Roland Egger\\
                         {\tt tXnnn}& Telescopic Atlas. {\tt X} is the atlas issue and {\tt nnn}, the number of the chart

                                Examples of input:
                                {\tt ta001}, {\tt tb123}, {\tt ta}, {\tt t}
                         \end{tabular}\\
Period:& Surely you only want to use observations made in a certain period including the investigated (expected)
                         shower. Then type the month and the day of begin and end of the period as numbers.
                         The selection includes meteors after 0\h00\m~UT of the begin date until 23\h59\m~UT of the end date. A period
                         from Aug 10 (08/10) to Aug 10 (08/10) selects meteors from 0\h\ to 24\h~UT of this day.
                         The button ``S.L.'' ({\sc F9}) switches to solar longitudes. These can be defined in degrees with two decimals.
                         With the same button you get back to dates. The dates and solar logitudes are not converted into each
                         other. The selection depends on what was given last.\\
Limiting Magn.:&The accuracy of meteor plottings diminishs with decreasing limiting magnitude because less reference
                    stars for plotting can be seen. Only observations made under equal or better conditions will be
                    considered. (The allowed values are from 3\m\ to 14\m.)\\
Accuracy:& This criterion uses the personal valuation of the plot. Meteors with equal or better plotting accuracy will
                    be selected (only 1, 2 or 3 allowed). If no accuracy was stored in the database Radiant sets it to nought
                    and rejects the meteors if a certain accuracy was specified.\\
Year:& Due to the idea of PosDat and FIDAC to have annual files this criterion is generally not necessary. Use
                         it if yet several years are in one database file. If you selected a period from December 20 to January 10
                         and the year 1990, meteors are selected from the end and beginning of 1990 only (not end 1990 to
                         beginning 1991).
\end{tabular}


\subsection[CALCULATION]{CALCULATION\hfill{\sc Ctrl+a}}
\label{calcopt}
A new menu will be opened which shows several adjustable items influencing the calculation of a radiant density
distribution. These adjustments are used whenever you choose the procedure ``DISPLAY, Calculate''.

Consider the following remarks on the behaviour of the calculation routine: If you did not change the selection criteria in
``OPTIONS: Selection'', i.e. if you want to use the same meteors, ``DISPLAY: Calculate'' immediately starts to compute a
new display without an inquiry whether or not to clear the display, since Radiant believes you are still looking for the best way
to display the density distribution. The adjustment of the calculation parameters is finished with ``OK''. ``Cancel'' or ``ESC"
nullifies all changes in that window.

\begin{tabular}{lp{11cm}}
Pixel Size:&Give the resolution of the display in the centre of the gnomonic projection in degrees. Since
            the image scale changes with increasing distance from the centre, the size of one pixel is smaller
            in these outer regions. The smallest size permitted is 0\dg05 ($=3'$). This gives an edge length of
            the display of $5\g$.
            The largest value depends on the type of display you have chosen. It can be up to $2\g$, $4\g$ and
            $8\g$ in high, medium and low resolution (cf.\ p.~\pageref{res}), respectively.
            {\bf Note:} With changed pixel size the display will be cleared since you cannot superimpose density
            distributions with different pixel sizes.\\
Geocentric Velocity:&Give the pre-atmospheric velocity $v_\infty$ in kilometers per
                     second. This velocity is the vectorial addition of the
                     motions of Earth and meteoroid (geocentric velocity $v_{\rm g}$),
                     increased by the acceleration due to the Earth's gravity.
                     Hence, the allowed range is $11\leq v_\infty\leq 72$~km/s. Note
                     that the pre-atmospheric velocity (also called entry
                     velocity) and geocentric velocity are not distinguished
                     throughout theis manual and the software itself, but
                     their difference will be noted when necessary.

                     The height of the meteor layer depends on the geocentric
                     velocity. It is re-calculated with the approximate
                     formula \label{height}$H\approx0.62\,v_\infty + 76$~[km].
                     In the calculations the velocity is not considered if
                     ``ENVIRONMENT: Velocity Consid.'' is off.\\
Minimum Angular Speed:&A telescopic observer looking at a certain point on the sky sees meteors from one shower with
                         very similar velocities, due to the small field size compared to the distance from the radiant.
                         Therefore, a certain shower can be filtered out of all meteors seen with Minimum and
                         Maximum Angular Speed.\\
Maximum Angular Speed:&The plotting accuracy depends on the angular velocity of the meteor. Therefore, give an upper
                         measure of the speed to exclude too fast meteors. The minimum angular velocity must be
                         smaller or equal to the Maximum Angular Speed.\\
\label{maxdist}Maximum Distance:&Since visual observations are rather inaccurate it will be necessary to give a maximum distance of
                              meteors from the centre of display thus sharpening the density distribution.\\
Ratio Distance/Length:&Since, generally, this is one of the criteria for shower association, it should also be considered
                              while calculating the backward tracings. The backward prolongations must not start less distant
                              than the path length multiplied by this ratio. Calculations in probability mode are not
                              influenced by this value. For example, if the ratio is 2 the tracing does not start until the
                              distance from the meteor's beginning point is further than twice the path length.\\
\label{speedscale}Speed Scale Factor:&Speed scales are expressed by characters in PosDat. The scale factor converts these letters into
                              velocities. A factor of 5 gives {\tt A}$\rightarrow5\g$/s, {\tt B}$\rightarrow10\g$/s, ...
                              A factor of 3 yields {\tt A}$\rightarrow3\g$/s, {\tt B}$\rightarrow6\g$/s, ...
                              FIDAC files contain an extra field for arbitrary velocity scales. Speeds are expressed by
                              numbers 1--5. Radiant's internal list stores {\tt A}--{\tt E} then.\\
Min. Intersection Angle:&Valid for the ``ENVIRONMENT: Intersection'' method (see p.~\pageref{intersection}). Defines the minimum angle
                         between two meteors to cause an intersection. Low intersection angles produce very inaccurate
                         results. This item is obsolete in Radiant~1.41. Intersections always get
                         a weight $\sin^2\alpha$ where $\alpha$ be the intersection angle.\\
\end{tabular}

\subsection[CENTRE]{CENTRE\hfill{\sc Ctrl+c}}
Enter the right ascension and declination in degrees of the region you want
to investigate.
The display is cleared immediately after the input indicating that you are
now looking at another area on the sky and everything now calculated has
nothing in common with your former distribution.

\subsection[DAILY MOTION]{DAILY MOTION\hfill{\sc Ctrl+d}}
With time, every radiant moves across the sky nearly parallel to the
ecliptic, and it is necessary to shift the meteors from different dates to a certain
reference solar longitude (Fig.1 and p.~\pageref{solarlong}). Otherwise the display would be
smeared over a certain ecliptical longitude.

\begin{tabular}{lp{12cm}}
Daily Motion:&Give the expected radiant drift in degrees of
              ecliptical longitude per day.\\
Refer. Date/Slong.:&Give the reference date or the solar longitude in the
                    following formats:
                    \begin{tabular}{lp{10cm}}
                    Date:&MM/DD.D as numericals (Day can
                    contain one decimal). The possibility to give
                    a date serves the purpose of simplifying the input of reference longitudes. Radiant
                    calculates an approximate solar longitude and writes it in the last line of the
                    ADJUSTMENTS box (``Used Solar Long.") when a display calculation is started. The
                    meteors are correctly shifted to that longitude. Thus the result is completely exact.\\
                    S.long:&Solar longitude in degrees (may contain decimals). When  Radiant calculates a display
                                        this value should be identical with the ``Used Solar Long.''\\
                    AUTO:&Type ``auto'' if you do not know a certain longitude. Then the calculating procedure
                                        takes the first meteor in the list to determine a reference solar longitude which is written
                                        in the last line of the ADJUSTMENTS box.
                    \end{tabular}

                    Examples:

                    \begin{tabular}{lp{8cm}}
                    {\tt 280.51}&The reference solar longitude is 280\dg51.\\
                    {\tt 09/08.5}&The solar longitude is computed from (1994) Aug 8, 12\h00\m\ giving $\lambda_\odot=135$\dg80.\\
                    {\tt auto}&The date and time of the first meteor represent the reference solar longitude.
                    \end{tabular}
\end{tabular}

\subsection{STANDARD DEVIATIONS}
The standard deviation of the angular velocity estimates depends on the
velocity itself. Likewise the plotting error at the radiant depends on the
distance of the meteor from the radiant. When you calculate backward
prolongations or intersections, only the velocity errors are needed to define
the most reasonable section of the backward prolongation begin added to the
radiant distribution. When you caluculate probability areas, both the speed
and the plotting error are needed.

The $\sigma$ for the angular velocity are valid for the middle of the given interval. Twice the standard deviation is used to define
the start and end point of the backward tracing.
The $\sigma$ for the plotting error concern the error of the backward tracing at the radiant. The closer an element of the
distribution array to the backward tracing the higher is its probability to be radiant according to a Gaussian distribution (see
Fig. 2 on p. XX). Therefore, the plotting error includes both the orientation and the shifting of the path, the last becoming
considerable with meteors near the radiant. Therefore, the plotting error even of a stationary meteor is not zero. The values
for different speeds and distances are linearly interpolated which is a sufficient approximation. The following table shows
the default errors for visual observations.

\begin{center}
\begin{tabular}{ll|ll}
\hline
Angular velocity $\omega$&Error $\sigma_\omega$&Distance $D$&
Plotting error $\sigma_{\rm p}$\\
\hline
$2.5\g$/s &$1.5\g$/s&  $0\g$& 0\dg8\\
$7.5\g$/s &$3.1\g$/s&  $5\g$& 1\dg2\\
$12.5\g$/s&$3.7\g$/s& $15\g$& 2\dg8\\
$17.5\g$/s&$4.5\g$/s& $30\g$& 4\dg5\\
$22.5\g$/s&$5.8\g$/s& $50\g$& 6\dg0\\
$27.5\g$/s&$5.9\g$/s& $70\g$& 6\dg6\\
$35\g$/s&$6.0\g$/s&   &\\
\hline
\end{tabular}
\end{center}


\subsection[IMAGE]{IMAGE\hfill{\sc Ctrl+i}}
\label{smoothrate}

\begin{tabular}{lp{11.5cm}}
Smooth Rate per Pixel&This value defines the strength of the anti-aliasing with the button ``Smth''. (0.0--1.0)\\
Base for Logarithms  &The base for taking the logarithms of the distribution values. (1.0--5.0)\\
Base for Raising     &The base which is raised to the power of the distribution elements. (1.0--5.0)\\
Width of Equ. Grid $\alpha$ &The step width of the equatorial grid shown with ``ADDIT, Equ. Grid'' can be adjusted from $2\g$ to $20\g$.\\
Width of Equ. Grid $\delta$ &see before.\\
\end{tabular}

\subsection[RADIANTS]{RADIANTS\hfill{\sc Ctrl+r}}
\label{radiants}
A window shows the contents of the radiant list {\tt RAD14.DBF}.

\begin{tabular}{lp{13.5cm}}
Abb      &abbreviation used by IMO for shower identification. {\tt RAD14.DBF} is sorted by this field.\\
Beg, End &dates of beginind and end dates of the activity period\\
Max      &date of acitivity maximum\\
SL       &solar longitude for which the radiant position is valid\\
$\alpha$, $\delta$     &radiant position\\
v        &pre-atmospheric velocity in km/s\\
$\Delta\alpha$, $\Delta\delta$&radiant drift in degrees; if the radiant motion is explicitly listed this value is 99.9\\
$\phi$ &diameter of the radiant or main axes for elliptical radiants\\
\end{tabular}

The small dots behind the radiant names indicate that these showers are selected for the additional drawing option ``ADDIT:
Radiants''. Generally, all radiants are selected. If you wish to see only a few of them, press on the ``Untag All'' button
({\sc Alt+u}) and switch the desired showers with ``Toggle'' ({\sc spacebar}) on. ``Tag All'' ({\sc Alt+t}) switches all showers on. As the
records in {\tt RAD14.DBF} are sorted you can easier access a radiant by typing the first letter of its abbreviation. Press {\sc esc} or
the right mouse button to quit the radiant list. If you wish to apply the parameters of a shower to calculations, press on ``Use
for Options'' ({\sc Ctrl+enter}) to change the display centre, geocentric velocity and daily motion.
The dBase file {\tt RAD14.DBF} is located in the programme directory. You can modify the file or add records. Please note that
the file is not sorted by Radiant. The programme does not require a sorted file but you should insert new showers at the right
position for your own convenience.

Structure of {\tt RAD14.DBF}

\begin{tabular}{llp{12cm}}
{\tt RADIANT}    &C 20&name of the shower\\
{\tt SHOWTYP}    &C 3 &abbreviation (sorting criterion)\\
{\tt ACTIVSTART} &C 5 &begin of activity (format DD/MM)\\
{\tt ACTIVEND}   &C 5 &end of activity (format DD/MM)\\
{\tt MAXIMUM}    &C 5 &activity maximum (format DD/MM)\\
{\tt SOLARLONG}  &N 6,2&solar longitude for which the position is valid\\
{\tt POSITIONRA} &N 5,1&position $\alpha$ in degrees\\
{\tt POSITIONDE} &N 5,1&position $\delta$ in degrees\\
{\tt VELOCITY}   &N 4,1&geocentric velocity in km/s\\
{\tt RADRIFT}    &N 5,2&radiant drift in $\alpha$ in degrees, is 99.99 for drift tables\\
{\tt DECDRIFT}   &N 5,2&radiant drift in $\delta$ in degrees, is 99.99 for drift tables\\
{\tt DIAMETER}   &C 5&diameter in degrees or elliptical axes (``5'' or ``15x10'')\\
\end{tabular}

Radiants with known drift tables have multiple records sorted by the solar longitude to which each of the radiant position
refers. In this case the fields {\tt RADRIFT} and {\tt DECDRIFT} store 99.99. These records must be sorted by the solar longitude,
otherwise Radiant cannot determine the correct position for the display function ``ADDIT: Radiants''. Showers straddling
March 21 ($\lambda_\odot\approx0\g$) are sorted correctly (e.g. record order: $340\g$, $350\g$, $0\g$, $10\g$).

\subsection{COLOURS}
The drawing colours of equatorial grid, telescopic fields, stars, radiants, ecliptic and excluded areas can be changed. Save
the configuration file to make changes permanent.

\section{The Menu Item ``DISPLAY''}
\subsection[CALCULATE]{CALCULATE\hfill{\sc enter}}
This item is the heart of Radiant where the density distributions are produced. The meteors are also imported here. Its
behaviour depends on the current status of selection and calculation.
\begin{itemize}
\item[i)] If you selected meteors (``Selection: CHANGED'' in the status box):
A new window opens prompting for the files of PosDat or FIDAC you want to use for the calculation. Give the names of
these files ({\tt .DBF} is not required). If the files are not in the same directory as Radiant give the full paths of these files.
If something is already displayed, you get a question whether or not to clear the former density distribution. Choose your
answer with {\sc y} and {\sc n}. Otherwise, the calculation starts immediately.
\item[ii)] If no selections were changed between two calculations: You are not asked to give the database names again, since the
meteors are already selected. However, if you want to use other files in spite of that, use the item ``METEORS: Clear'' before
or read other records with ``METEORS: Import''.
\end{itemize}

\subsubsection{How Does the Calculating Procedure Work?}
Radiant knows three methods to determine radiant distributions. The
first one simply traces the meteors backward, the second gives an intersection distribution of each meteor with each other
and the last method calculates probability distributions for every meteor.
At first the given reference solar longitude is checked. If it is {\tt AUTO} the first meteor in the temporary list in memory is
applied to determine a reference solar longitude written in the last line of the ADJUSTMENTS box. Otherwise, the value
given in ``OPTIONS: Daily Motion'' is used.

Secondly, Radiant checks whether the meteor is not too far from the centre of the projection, not too fast or too slow
considering the maximum and minimum angular speed (``OPTIONS: Calculation'') and not marked as deleted in
``METEORS: List''. \label{solarlong}If not, the solar longitude of the appearance date and time of the meteor is calculated. The equatorial
co-ordinates are shifted in ecliptical longitude $l$ by the product
$$\Delta l=1.01456\,m_{\rm d}(\lambda_{\rm ref}-\lambda_{\rm met})$$
of the daily motion $m_{\rm d}$ given under ``OPTIONS: Daily Motion'' and the difference of the reference solar longitude $\lambda_{\rm ref}$ and
the meteor's solar longitude $\lambda_{\rm met}$. Hence, the resulting radiant position will be valid for the reference date. The function
``METEORS: Mean Sol.Long.'' calculates the mean solar longitude of the meteors on the display and gives the difference
to the reference longitude.

\label{attraction}If the switch ``ENVIRONMENT: Zenithal Attraction'' is
enabled the meteor path will be shifted once more. The Earth's gravity
attracts the meteoroid to its centre. Hence, the radiant of the meteor
appears higher above the horizon. The lower the geocentric velocity of a
stream is the larger is the offset $\Delta z$:
$$\Delta z=2\arctan\left({\frac{v_{\rm g}-v_\infty}{v_{\rm g}+v_\infty}\tan\frac{z}{2}}\right)$$
$$v_\infty=\sqrt{(11.2\,\mbox{km/s})^2+v_{\rm g}^2}$$
where $v_{\rm g}$ is the geocentric velocity of the stream, and $v_\infty$ is the increased velocity due to the Earth's gravity, $z$ is the zenith
distance, and 11.2~km/s is the velocity of escape from the Earth's surface. Since meteors contributing to a radiant distribution
may have been seen from different geographical co-ordinates, the correction cannot be applied to the radiant after the
calculation. Therefore, paths are shifted before used for the calculation of radiant distributions. Every meteor has a most
probable radiant on its backward tracing (according to the angular and geocentric speed, and the height of the meteor). We
can correct this supposed radiant by the zenithal attraction value. The path is shifted on the celestial sphere that it meets the
corrected position of the most probable radiant of the meteor.

The following table gives an example of the zenith attraction of a meteoroid
stream with a geocentric velocity of $v_{\rm g}=30$~km/s, and, therefore, a
pre-atmospheric velocity of $v_\infty=32$~km/s.

\begin{center}
\begin{tabular}{ll|ll|ll}
\hline
$z$&$\Delta z$&$z$&$\Delta z$&$z$&$\Delta z$\\
\hline
30&$-$1\dg0&70&$-$2\dg6&85&$-$3\dg4\\
60&$-$2\dg2&80&$-$3\dg1&89&$-$3\dg7\\
\hline
\end{tabular}
\end{center}

\subsubsection{Backward Tracings}
The start and end distances $\xi_{\rm s}$ and $\xi_{\rm e}$ of the backward
tracing are calculated considering the given pre-atmospheric velocity
$v_\infty$, the altitude of the start point $h$, the meteors' layer in the
atmosphere $H$ (cf. p.~\pageref{height}), the length of the trail
$l$ and the observed angular velocity $\omega$ with the standard deviation $\sigma$ from ``OPTIONS: Std. Deviations''
$$\xi_{\rm s}=\arcsin\frac{(\omega-2\sigma)H}{v_\infty\sin h}-l,\qquad
  \xi_{\rm e}=\arcsin\frac{(\omega+2\sigma)H}{v_\infty\sin h}-l$$
Figure~2 shows the distances used in the above formula. Sometimes it happens
that the speed estimate plus twice the standard deviation, which determines
the far end of the backward tracing, is too large for the geocentric velocity
(arcsin($|x|>1$) is not defined). However, since it is acceptable with the lower
measure (estimate minus twice the standard deviation), we put $\xi_{\rm e}=\pi-\xi_{\rm s}$.
Even now the ratio of distance and path length has to be checked. If the
quotient of $\xi_{\rm s}$ and length is smaller than the given ratio we set $\xi_{\rm s}$ to the
product of the path length and the ratio.
The meteor is now traced backward between the two distances $[\xi_{\rm s},\xi_{\rm e}]$ from
the meteor's beginning point. Every square crossed by the tracing is increased
by 1; if ``OPTIONS: Scale Correction'' is switched on it is increased by the
scale correction $c$, given by the expression
$$c=1+x^2+y^2$$
\label{backward}where $x$ and $y$ mean the dimensionless gnomonic
co-ordinates with the radius of the projected sphere being 1.
The procedure stops and reads the next meteor when Radiant notices that the
tracing lies outside the visible display and moves away from it. The
calculation procedure can be interrupted by pressing {\sc esc}.

\begin{figure}
\vspace{7cm}
\special{psfile=/turu/rarlt/ps/tracing.ps vscale=50 hscale=50 voffset=-95
hoffset=70}
\caption{Distances considered in the backward tracing mode.}
\end{figure}

\label{intersection}
\subsubsection{Intersections}
Every meteor is checked on intersection with each other meteor resulting in
$n(n-1)/2$ intersections with $n$ the number of meteors. Several conditions
decrease this number. Equivalently to the backward tracings a subsection of
the backward tracing is valid for the calculation considering the angular
speed of the meteor and the ratio of the distance to the path length.
Intersections have to occur within the interval $[\xi_{\rm s},\xi_{\rm e}]$
of both meteors according to the previous paragraph. Furthermore, the
intersection angle must exceed the value defined in ``OPTIONS: Calculation,
Minimum Intersection Angle'' (Radiant versions 1.4 and 1.4a). Small angles
produce very uncertain intersections as slight errors in the meteor paths
cause considerable changes in the intersection position. In Radiant 1.41,
every intersection point gets the weight $\sin^2\alpha$ where $\alpha$ is the
interection angle between the backward prolongations. The enu item ``OPTIONS:
Calculation, Minimum Intersection Angle'' is obsolete in this version.
Stationary meteors are not used for intersection counts.

\subsubsection{Probability Distribution Functions}
Generally, every meteor represents
two radiants, according to its direction and angular velocity, one on the first
$90\g$ of the prolongation and the complementary one to $180\g$.
However, the estimates of speed and position have natural errors mainly caused
by the observer. We can give a radiant area with varying probabilities behind
each meteor. Points near the exact radiant have high probability to be
radiant, the further ones, low (see Figure~3).

\begin{figure}
\vspace{6cm}
\special{psfile=/turu/rarlt/ps/proba.ps hscale=50 vscale=50 voffset=-100
hoffset=60}
\caption{Probability distribution behind a meteor.}
\end{figure}

Since it is enormously difficult to find those pixels in advance, which have
a significant probability, the display is simply scanned column by column.
The procedure starts at the column and row behind the meteor. (Very steep
and very gradual meteors are specially considered.) A column is finished if
the probability falls below the first grey step again and the computation of
one meteor is finished if a complete column becomes zero. The probability
is the product of the value concerning the velocity and the value of the
position. The probabilities follow from Gaussian distributions with the standard deviations of ``OPTIONS: Std. Deviations"

$$p=\frac{1}{\sigma_\omega\sqrt{2\pi}}\,{\rm e}^{-\frac{\Delta_\omega^2}{2\sigma_\omega^2}}
\times\frac{1}{\sigma_{\rm p}\sqrt{2\pi}}\,{\rm e}^{-\frac{\Delta_{\rm p}^2}{2\sigma_{\rm p}^2}}$$

with $\Delta_\omega$ the error of speed, $\Delta_{\rm p}$ the positional error
and $\sigma_\omega$, $\sigma_{\rm p}$ the respective standard deviations. In
the case of the velocity the error is the difference
$$\Delta_\omega=\left|{\omega-\arctan\frac{v_\infty\sin(D+l)\sin h}{H}}\right|$$
of the estimated speed $\omega$ and the geometrical value, with $D$ the distance from
the start point of the meteor, $l$ the length of the trail, $h$ the altitude of the start
point, $v_\infty$ the geocentric velocity and $H$ the corresponding height of
appearance (see p.~\pageref{height}). The positional error $\Delta_{\rm p}$ is the distance of the current
pixel from a point on the backward tracing of the meteor, which has the same
distance from the start point of the meteor as the pixel (Figure~4). If
``ENVIRONMENT: Velocity Consid.'' is switched off, the probability
functions cannot be used, since the function is one-dimensional then,
although the distribution has two dimensions. The scale correction is also
applied provided, the corresponding switch is on. Here, the scale correction
preserves the total of weight of a meteor's probability area which should be
the same independent from the location of the area on the gnomonic chart.
Preserving areas means
$$c=\frac{1}{1+x^2+y^2}.$$
However, we are not interested in total weights, but in the weight of a
meteor per pixel, i.e.\ the radiant density. It is therefore recommended to
switch the scale correction off during probability calculations.

\begin{figure}
\vspace{5.5cm}
\special{psfile=/turu/rarlt/ps/dist.ps hscale=50 vscale=50 voffset=-110
hoffset=60}
\caption{Distances considered in the probability function mode.}
\end{figure}

\subsubsection{The ``STATUS of CALCULATION'' Box}
The first line shows the number of meteors currently loaded. It is always the
current size of the temporary list in memory. The second line indicates the
number of displayed meteors; it is the actual number of visible backward
tracings. (If you diminish the resolution with ``RES'' the number of displayed
meteors also changes to the correct value.)
The third line indicates the number of ignored meteors. Meteors can be
rejected if their angular velocity does not fit the values ``OPTIONS:
Calculation, Minimum Angular Speed'' and ``Maximum Angular Speed'' or if they
are more distant from the centre of the gnomonic projection than the
``Maximum Distance''. Meteors which were excluded from the calculation in ``METEORS: List'' are also
counted here. The fourth line counts the meteors being processed during the
calculation. The sum of displayed and ignored meteors need not be equal to
the number of selected meteors since there are often a number of tracings
outside the visible distribution.

The ``Calc.'' line shows different words:

\begin{tabular}{lp{12cm}}
{\tt NOTHING}&Status after start-up.\\
{\tt DOING}  &Radiant is calculating backward tracings or probability functions.\\
{\tt DONE}   &Calculation is ready.\\
{\tt INTERRUPTED}&The calculations were interrupted by pressing ``ESC''.\\
\end{tabular}

The ``Selection'' line indicates the status of selection from databases.

\begin{tabular}{lp{12cm}}
{\tt CHANGED} &The meteor selection for the database import was changed with ``OPTIONS: Selection''. It indicates
               that the ``Calculate'' procedure will ask you for the databases again and clear the current list of
               meteors in memory.\\
{\tt DONE}    &The selection was applied to the import of meteors.\\
{\tt RELEASED}&All kind of selective criteria are reset to their lowest level (all observers, all sites, period:
               Jan 01 to Dec 31, ...). ``Calculate'' will ask for databases.
\end{tabular}

\subsubsection{Some Remarks on the Angular Velocity}
Generally, the angular velocity of a meteor is stored in PosDat as a number
representing the speed in degrees per seconds. The {\tt VEL} field, however, can also contain letters from {\tt A} to {\tt E}. These
characters are interpreted by the value of ``OPTIONS: Calculation, Speed Scale Factor'' (cf. p.~\pageref{speedscale}). If the velocity is not
reported Radiant stores {\tt 99}. So you can delete these meteors in ``METEORS: List''.

\subsection{EXEC. PROJECT}
Projects are files containing the information of several calculation tasks which are executed like a batch file. This item opens
a directory window where you can select the project file to be executed. These files can be edited with the Project Editor
{\tt PRJ14.EXE} (see p.~\pageref{prj}) or ``PROGRAMME: Project''. The item ``Exec. Project'' executes the activated tasks of the selected
file one after another. The results are automatically saved to disk under the filenames given in the editor. The execution of
the calculation batch can be interrupted with {\sc esc}.

\subsection[LOAD]{LOAD\hfill{\sc F4}}
Loads a density distribution saved by Radiant. Give the name of the file and if necessary the directory of this file. Enter
{\it name\/} to load {\it name}{\tt .DSP} from disk, or press {\sc F5} to see the directory list (shows files with {\tt .DSP} extension).
The preview window opens by typing {\sc Alt+p}. It shows a mini image of the density distribution and the number of displayed
meteors. {\sc Alt+F5} switches to the mosaic mode where all density distributions stored in the current directory are displayed
as mini images. Choose a file by clicking with the left mouse button on the corresponding image. You can faster search for
a file by typing the first letter of its name.
The option Load Meteor List ({\sc Alt+m}) turns the automatic meteor loading on/off. Once a distribution is loaded the
corresponding meteors are opened when found. Switch this option off if you work with files created by Radiant 1.2 and 1.3
which did not store meteor lists on disk.

\subsection[ADD]{ADD\hfill{\sc Ctrl+F4}}
Similarly to ``Load'' density distributions saved by Radiant can be opened. However, the elements of the distribution grid
are added to the current display on the screen. If the projection centre, resolution or pixel size do not correspond to each
other you get an error message. If the reference solar longitudes of both images are different a message warns you and asks
for confirmation. You can decide whether this difference in solar longitude is negligible compared to the pixel resolution.

\subsection[SAVE]{SAVE\hfill{\sc F2}}
The current density distribution will be saved as well calculation-specific data. Enter a filename which can be up to eight
characters long. You need not give an extension for the filename. The extension is always {\tt .DSP} which should not interfere
with other software. The current display is saved in a highly compressed format that can only be retrieved by Radiant itself.
The option Save Meteor List ({\sc Alt+m}) turns the automatic saving of the meteor list on/off. These files have the same name
as the density distribution but with extension {\tt .M}. Note that this switch is also valid for project calculations (see above
under ``Exec.\ Project'') and cannot be set in the Project Editor.
Also saved: size of pixels, centre of display, reference solar longitude, number of displayed meteors, numbers of meteors
in lower resolutions (if possible), geocentric velocity, daily motion, method of calculation.

\subsection{EXPORT BMP}
Saves the current distribution screen in the uncompressed bitmap file format of Windows. The image size will be 400 by
400 pixels with a colour depth of 8 bit resulting in a file size of 157K. Enter the filename, the extension is always {\tt .BMP}.

\subsection[PICK DISPLAY]{PICK DISPLAY\hfill{\sc F7}}
This small list shows up to 16 of the recently loaded or saved density distributions.

\subsection[MOS. PICK]{MOS. PICK\hfill{\sc Alt+F7}}
The mosaic pick list shows the mini images of up to 16 of the recently loaded or saved density distributions. Click with the
left mouse button on the desired image to open it.

\section{The Menu Item ``METEORS''}
\subsection[OPEN]{OPEN\hfill{\sc Alt+o}}
Opens a meteor list saved by Radiant. Enter the filename without extension (always {\tt .M}) or press {\sc F5} to see the directory
list. As fields of telescopic observations belong to the meteors they are loaded as well.

\subsection{ADD}
Opens a meteor list once saved by Radiant and appends the data to the
currently used list. The on-screen status of the appended meteors is cleared.

\subsection[SAVE]{SAVE\hfill{\sc Alt+s}}
The currently opened meteor list is saved to disk in Radiant format. Meteors marked as deleted remain hidden but the status
whether the meteor contributes to the density distribution is cleared. This status is only valid when you save the density
distribution (``DISPLAY: Save'') coupled with the meteors. If telescopic fields were imported from PosDat they are
appended to the meteor list.

\subsection[IMPORT]{IMPORT\hfill{\sc Alt+m}}
Extracts meteor data from PosDat or FIDAC databases depending on the switches ``ENVIRONMENT: Read PosDat''
and ``Read FIDAC''. Meteors are selected by the criteria defined in ``OPTIONS: Selection'' and converted into the internal
format of Radiant. The upper line of the Status Box shows the number of selected meteors. (This import procedure is also
called when you use ``DISPLAY: Calculate'' and no meteors have been read yet or when you changed the selective criteria.)
Radiant automaticaly imports telescopic fields from PosDat if they are available. ``ADDIT, Telescopic Fields'' shows them
on the screen.

\subsection[INPUT METEORS]{INPUT METEORS\hfill{\sc Alt+i}}
Enters the input mode of individual meteors. The meteors are appended to the current list in memory. If the site code is not
found you are asked to put in the geographical co-ordinates.

\begin{tabular}{lp{12cm}}
Date:&Give the date in the format YY/MM/DD, e.g. 91/09/25. Use always two-digit integers for the date. Consider
      that the date changes after midnight UT.\\
Time:&The time contains hours and minutes (UT).
      Examples: 21\h03\m$\rightarrow$2103; 02\h35\m$\rightarrow$0235 or 235; 00\h05\m$\rightarrow$0005 or 5.\\
Sitecode:&Sitecode referring to {\tt VMDBSITE.DBF}.\\
Start $\alpha$\dots&Equatorial co-ordinates in degrees.\\
Velocity:&Angular velocity in degrees per second. Arbitrary character scales do not work.\\
\end{tabular}

\subsection[LIST]{LIST\hfill{\sc Alt+l}}
Sometimes it might be useful to have supervision above the selected meteors. Here you can check meteor by meteor and,
if necessary, exclude it from calculation. A ``$\diamond$'' indicates that this meteor contributes to the current display. The table shows
the date in YY/MM/DD format, the UT in HHMM format, the equatorial co-ordinates, the angular speed in degrees per
second ({\tt A}\dots{\tt E} represent step scales) and the geographical co-ordinates from which the meteor was seen. {\sc enter} changes
the status of the highlighted meteor; deleted or not deleted. Meteors marked with ``$\neg$'' (symbolizing ``not'') are ignored while
calculating the density distribution. ``{\small$\bigtriangleup\bigtriangleup$}'',
``{\small$\bigtriangledown\bigtriangledown$}'' or {\sc Ctrl+PgUp}, {\sc Ctrl+PgDn}: first/last page of the list.

\subsection[CLEAR]{CLEAR\hfill{\sc F8}}
All meteors are removed from the temporary list in memory. When you next use ``DISPLAY: Calculate'' you are asked for
the reference database again. The selective criteria are not affected.

\subsection{MEAN SOL. LONG.}
The mean solar longitude of the meteors in the temporary list as well as the meteors displayed is calculated. The first line
gives the mean, followed by the standard deviation and the full range of longitudes. Offset means the difference of the mean
from the reference solar longitude. The motion value gives the offset in ecliptical longitude, i.e. the product of the offset
and the daily motion. If you shift the radiant found by this value (see next
section) you get the radiant according to the centre of gravity of the
meteors' dates. Press on ``Radiant'' ({\sc spacebar}) to show the shifted radiant in a small window.

{\bf Note:} The motion value of all meteors is calculated with the setting ``OPTIONS: Daily Motion''; the motion value of
the displayed meteors uses the daily motion the currently visible display was calculated with.
The middle button (press {\sc h}) shows a diagram with the meteor distribution over the solar longitude.

\subsection{DISPLACEMENT}
The displacement value is identical with the motion value of the displayed meteors given under Mean Solar Longitude.
However, if you run projects and do not save the meteor lists, you cannot determine the motion value from the meteors
anymore. Therefore, switch the option ``ENVIRONMENT: Logfile'' on before executing the project. The motion value is
then stored in {\tt RAD14.LOG}. This value can be entered in ``Displacement''. A small window shows the shifted radiant then.

\section{The Menu Item ``ENVIRONMENT''}

\subsection[TRACINGS, INTERSECTIONS, PROBABILITIES]
{TRACINGS, INTERSECTIONS, PROBABILITIES\hfill{\sc Shift+t, i, p}}
These switches select the calculating method. Tracings are simple backward prolongations of the metors, intersections are
the points were the backward tracings meet and probability functions determine the probability of each distribution element
behind the meteor to be its radiant. Note that the last item is inactive when the velocity consideration (see below) was
switched off.

\subsection{SCALE CORRECTION}
Normally, every display is corrected with a scale correction considering the changing scale over a gnomonic projection.
With pixel sizes smaller than $1\g$ this correction is very slight.
For large pixel sizes the display is strongly disfigured. In such cases you can switch the scale correction off and re-calculate
the display.

\subsection{VELOCITY CONSID.}
If you expect meteors in the database that have no estimate for the angular velocity (esp.\ in older data), switch this item off.
Then Radiant prolongs the meteors over the entire sky. Probability calculations are not possible without velocity
consideration.

\subsection{ZENITHAL ATTRACTION}
Radiant positions suffer from the Earth's gravity. The calculating procedure corrects this attraction towards the zenith
(see p.~\pageref{attraction} for details).

\subsection{SITE CODE INQUIRY}
If Radiant finds meteors with unknown sitecodes these meteors are ignored and not loaded into the tem porary list in
memory. If the site code inquiry is on you are asked to enter the geographical co-ordinates of the unknown site as integers
in degrees. This site stays in memory until the Radiant session is closed. The same prompt occurs when you try to enter a
meteor via ``METEORS: Input'' seen from an unknown site independently of the switch.

\subsection{READ POSDAT, READ FIDAC}
These items switch between the import of PosDat and FIDAC files.

\subsection{PROJECT LOGFILE}
This item infuences the execution of projects. When you use ``DISPLAY: Exec. Project'' the following things are stored in
the ASCII file {\tt RAD14.LOG} for each task besides the calculations:
\begin{itemize}
\item date and time when the task was started,
\item number of selected meteors,
\item date and time of begin and end of the calculation
\item whether the calculation was interrupted
\item number of displayed meteors
\item number of ignored meteors
\item the mean solar longitude of the displayed meteors, its standard deviation,
\item the minimum and maximum solar longitude of the displayed meteors,
\item the offset in solar logitude and the resulting motion value in ecliptical longitude,
\item the time when the task was finished.
\end{itemize}
New entries into {\tt RAD14.LOG} are always appended. If you don not need older logs anymore simply delete the file or delete
the old parts with an ASCII editor.

\section{The Menu Item ``RES''}
\label{res}
\subsection[HIGH RESOLUTION 100 x 100]
{HIGH RESOLUTION 100 x 100\hfill{\sc Shift+1}}
The display is divided into 100 by 100 elements, i.e. 10\,000 real numbers.
If you switch this item on from lower resolution the display will be cleared.

\subsection[MEDIUM RESOLUTION  50 x 50]
{MEDIUM RESOLUTION  50 x 50\hfill{\sc Shift+5}}
The display is divided into 50 by 50 elements, i.e. 2500 real numbers. If you switch this item on from high resolution the
centre of the old display (elements [25,25]--[74,74]) stays available. Also the number of displayed meteors is adapted.
If you switch this item on from low resolution the display will be cleared.

\subsection[LOW RESOLUTION  25 x 25]
{LOW RESOLUTION  25 x 25\hfill{\sc Shift+2}}
The display is divided into 25 by 25 elements, i.e. 625 real numbers. If you switch this item on from high resolution the
centre of the old display (elements [38,38]--[62,62]) stays available. From a display with $50\times50$ pixels you get the elements
[13,13]--[37,37].


\section{The Menu Item ``ADDIT''}
\subsection{B/W MONITOR}
The display of density distributions is changed from colour steps to only greys. All other characteristics stay the same.

\subsection{PAINT WHILE CALC.}
Normally, Radiant already gives you an impression of the density distribution
at calculating time. This needs some additional time. If you switch this item
on the programme switches to the text screen and shows only the numbers of the
Status Box. The reduced information given speeds up the calculation. If you
run Radiant under Windows 3.x or Windows95 with a 386 or higher processor
you may now switch the background option on.

\subsection[EQUATORIAL GRID]{EQUATORIAL GRID\hfill{\sc Shift+g}}
This item switches an equatorial grid over the display on/off. The grid size is adjusted under ``OPTIONS, Image''. It defaults
to $10\g$.

\subsection[TELESCOPIC FIELDS]{TELESCOPIC FIELDS\hfill{\sc Shift+f}}
If this item is enabled the fields of view of telescopic observations are drawn as circles on the display. Telescopic fields are
stored in PosDat, and they are imported automatically when you use PosDat meteors. This item helps detect artificial
intersection areas due to the position of the fields. The field of view is stored in the fields {\tt RACEN} and {\tt DECCEN}, the
diameter, in {\tt METHOD} in the header file of PosDat.

\subsection[STARS $<$4.0]{STARS $<$4.0\hfill{\sc Shift+4}}
Shows the stars with a limiting magnitude of 4\dm0.

\subsection[STARS $<$5.5]{STARS $<$5.5\hfill{\sc Shift+s}}
Shows the stars with a limiting magnitude of 5\dm5. The file {\tt RAD14.DAT} stores the positions of the stars in a compressed
format; therefore, editing the file is not possible.

\subsection[RADIANTS]{RADIANTS\hfill{\sc Shift+r}}
Shows the radiants stored in the {\tt RAD14.DBF} dBase file considering the reference solar longitude with which the density
distribution was calculated. A selection of radiants is drawn if you chose a few showers from the radiant browser
``OPTIONS: Radiants'' (see p.~\pageref{radiants}).

\subsection[ECLIPTIC]{ECLIPTIC\hfill{\sc Shift+e}}
Draws the ecliptic if it crosses the display window.


\section{The Menu Item ``ASCII''}
\subsection{ENVIRONMENT}
Additionally to the distribution values, the centre of the display, pixel size, reference solar longitude, daily motion,
geocentric velocity, number of displayed meteors and the calculation method are saved in the ASCII file.

\subsection{EXPLAINING TEXT}
The Environment will be commented with some explaining text.

\subsection{($x$, $y$) AS ($\alpha$, $\delta$)}
Generally, the grid indices of the distribution array are of little use for other software. Therefore, Radiant saves the original
equatorial co-ordinates instead. Be careful with displays which lie near a celestial pole. Although grid indices are almost
equidistant the spherical co-ordinates are not.

\subsection{SPREADSHEET}
Values of one line of the distribution array are also stored in one line in the ASCII file. Therefore,
the item ``($x$, $y$) as ($\alpha$, $\delta$)''
has no influence.

\subsection{DEL. SPACE, DEL. COMMA, DEL. SEMICOLON}
Select the appropriate delimiter for your software importing Radiant results.
Other delimiters can be defined in the configuration file at ``ASCIIDel=''.
You can use any character by its ASCII code there.

\subsection{EXPORT ASCII}
The complete density distribution can be saved in ASCII format. Before saving ASCII files find out which delimiters are
required by the software reading Radiant's data. The extension {\tt .TXT} is not required. Use the button ``Area'' to export parts
of the density distribution (see p.~\pageref{area}). You may also export cross-sections through the density distribution to ASCII files
with the button ``Cros'' described on p.~\pageref{cross}.


\section{The Menu Item ``PRINT''}
\subsection{PRINT}
This item makes quality prints with 9- and 24-pin printers being able to print in graphics mode. Also HP DeskJet and
LaserJet II compatible printers are supported. The latter give reproducible results for publications. Before printing check
the right printer in the ``Configure'' menu.
The procedure prints the distribution window as you see it on the screen. However, the number of grey steps depends on
the printer type resulting in slightly different density representation. Overflowing areas are hatched. Note that you can also
print meteor distributions created with the button ``Dist''. The pixel resolution (in dots per inch) influences the size of the
drawing:
\begin{itemize}
\item $240\times216$~dpi $\rightarrow 128{\rm mm}\times142$mm
\item $300\times300$~dpi $\rightarrow 136{\rm mm}\times136$mm
\item $300\times300$~dpi $\rightarrow 68 {\rm mm}\times 68$mm (option ``Fast Print'')
\end{itemize}

\subsection{CONFIGURE}
Opens a menu offering the supported printer families and three parallel ports. Select the appropriate items and save the
configuration with ``PROGRAMME: Save State'' to make the printer settings permanent. The ``HP LJ Microtoner'' item
supports the micro-toner system of Laserjet III and higher printers which allows more grey levels. Try both the Laserjet and
Microtoner printing to find out which produce the best results.

\subsection{TEXT LINE}
You can give a self-defined text line to annotate the result with some additional information.

\subsection{COLOUR STRIP}
The graduations of grey will be printed with the corresponding values of the density distribution as well as the number of
displayed meteors.

\subsection{CALC. ADJUSTMENTS}
Prints the centre of the display, the pixel size, the geocentric velocity, the meteor height, the daily motion, the reference solar
longitude and the used calculating method.

\subsection{FAST PRINT}
Prints three times faster with 9-pin Epson or 24-pin IBM printers. It is useful to print comprehensive analyses or to print
an empty gnomonic chart since the equatorial grid is not affected. The distribution elements, however, look rather messy.
Prints four times faster with HP Printers. The density distribution has only half the size of normal prints. All features are
scaled down correctly.


\section{The Menu Item ``BACKGRND''}
The menu ``Background'' helps estimate the prominence of radiant and to filter certain regions. The importance of the
background noise is often overlooked. You can only estimate a prominence of a radiant if you included all the meteors being
plotted in the whole region around the investigated radiant. If you select meteors by their shower association prior to the
radiant calculation you get a sharp radiant anyway. Therefore, a reliable density distribution should contain a well defined
noise. The prominence of the radiant is then expressed by its height above the mean background.

\subsection{INCLUDE}
This item is only active if parts of the display were excluded from the background determination via ``Exclude'' or ``Exclude
All''. Use this function to include parts of the array. See p.~\pageref{keys} for details on defining the included region.

\subsection{EXCLUDE}
If several radiants are on the display you should exclude the disturbing radiants from the background determination. See
p.~\pageref{keys} for details on defining excluded regions. Do not exclude the radiant itself from the noise determination. Otherwise it
would not give an impression of the sharpness of the radiant. Hence, very large radiants have smaller prominence than sharp
ones, since large radiants shift the background mean up. Consequently, the prominence value is comparable only for displays
with equal pixel size and resolution. If you double the pixel size and re-calculate the display you get a larger prominence
but less information on the radiant position.

\subsection{INCLUDE ALL}
This item is only active if parts of the display were excluded from the background determination via ``Exclude'' or ``Exclude
All''. Use this function to make the complete display available for the background estimate again.

\subsection{EXCLUDE ALL}
Excludes the complete display from the background determination.

\subsection{GET NOISE}
All included parts of the display (non-hatched areas) are used to determine the mean density of the distribution. A small
window shows the mean value, the standard deviation and the prominence value
$$z=(\nu_{x,y}-\bar\nu)/\sigma$$
where $\nu_{x,y}$ is the grid value at the cursor position, $\bar\nu$ the mean and $\sigma$, the standard deviation. $z$
can be applied to compare the prominence of radiants. Please note the remarks
given under ``Exclude'' considering the prominence of a radiant.

\subsection[RANGE]{RANGE\hfill{\sc F6}}
Defines the scale limits of the colour strip. This can be useful to suppress
the background noise or to suppress a strong radiant in the vicinity of a
weaker one. This function is internally called by the buttons ``$\sigma$'',
``$2\sigma$'' and ``$3\sigma$'', too. Note that probability distributions
show percentages at the colour strip. You can use these percentages also for
the range limits. Any change of the grid values (Calculate, Load, Add, ``Smth'',
``Log'', ``eXp'', ``Grad'', ``Clr'') reset the scale limits. The button
``ClrR'' ({\sc Alt+r}) clears the range as well.


\section{The Button Bar}

\subsection[ZOOM]{ZOOM\hfill{\sc z}}
The density distribution will be magnified twice. Due to simplification of the displaying procedures the button always
magnifies the centre.

\subsection[SMTH]{SMTH\hfill{\sc s}}
This abbreviation stands for ``Smooth''. For every square the weighted average with the surrounding eight squares is
calculated (see Figure~5):
$$\nu_{x,y}'=\frac{\nu_{x,y}+r_{\rm s}(\nu_{x-1,y}+\nu_{x+1,y}+\nu_{x,y-1}+\nu_{x,y+1})
+\frac{r_{\rm s}}{2}(\nu_{x-1,y-1}+\nu_{x-1,y+1}+\nu_{x+1,y-1}+\nu_{x+1,y+1})}
{1+4 r_{\rm s} + 2 r_{\rm s}}$$
where $\nu$ means the distribution elements and $r_{\rm s}$ the smoothing rate
(see p.~\pageref{smoothrate}).

\begin{figure}
\vspace{4cm}
\special{psfile=/turu/rarlt/ps/weights.ps hscale=20 vscale=20 voffset=-30
hoffset=180}
\caption{Weights of neighbour pixels for the Smooth function.}
\end{figure}

\subsection[FIND]{FIND\hfill{\sc f}}
A certain part of the density distribution can be framed with the mouse or the cursor keys to estimate the average radiant
position from the currently visible display. With x and y being the indices in horizontal and vertical direction it is the simple
arithmetic mean in the interval [$x_1$, $y_1$] [$x_2$, $y_2$] weighted by the grid values:

$$\bar i=\frac{\sum\limits_{k=y_1}^{y_2}\sum\limits_{i=x_1}^{x_2} i\times\nu_{i,k}}
{\sum\limits_{k=y_1}^{y_2}\sum\limits_{i=x_1}^{x_2} \nu_{i,k}},\qquad
\bar j=\frac{\sum\limits_{l=y_1}^{y_2}\sum\limits_{j=x_1}^{x_2} j\times\nu_{j,l}}
{\sum\limits_{l=y_1}^{y_2}\sum\limits_{j=x_1}^{x_2} \nu_{j,l}}$$
with $\nu$ the distribution elements and $i$, $j$, $k$ and $l$ the array indices.
The appearing window shows the converted mean position in $\alpha$, $\delta$
and the standard deviation
$$\sigma=\sqrt{\sigma_x^2+\sigma_y^2}$$
with $\sigma_x$ and $\sigma_y$ the standard deviations in both directions.
The $\sigma$ given in the window is also converted into degrees.

\subsection[LOG]{LOG\hfill{\sc l}}
The fainter parts of the display can be made more evident by taking the logarithms of the
distribution values to a certain base defined under ``OPTIONS: Image''. The default base is 2.7. To
avoid negative values (the probability functions give values smaller than 1) the term
$\log_a (x+1) = \ln(x+1)/\ln a$  is used. The distribution values are always scaled to a maximum
of 10. Hence, the influence of the curvature
of the logarithmic function the same on all images.

\subsection[EXP]{EXP\hfill{\sc x}}
The most dense parts of the display can be made very distinct by raising a certain base (defined in ``OPTIONS: Image'') to
the power of each element of the density grid. To use exactly the inverse term as taking the logarithms, the exponential term
is  $a^x-1 = {\rm e}^{x \ln a}-1$. The default base is $a=2.7$. The distribution values are scaled to a maximum of 10. Hence,
floating point overflows are prevented.

\subsection[GRAD]{GRAD\hfill{\sc g}}
Estimates the magnitude of the gradient in each pixel with the formula
$$\nu_{x,y}'=\sqrt{(\nu_{x,y-1}-\nu_{x,y+1})^2+(\nu_{x-1,y}-\nu_{x+1,y})^2}$$
where $x$ and $y$ are the indices of the distribution array and $\nu$ are
the densities. The diagonal elements are not considered.

\subsection[CLR]{CLR\hfill{\sc c}}
The screen is reset to the original display as it was calculated. Hatched
areas which were excluded from noise calculations by ``BACKGRND: Exclude''
are included again, noise, mean-radiant and radiant-displacement
windows are closed. The colour range is set to the complete density range.

\subsection[DIST]{DIST\hfill{\sc Alt+d}}
If meteors are selected, it shows the distribution of the meteors around the centre of the display. The three circles represent
$30\g$, $60\g$ and $90\g$ distance. The vertical line is directed to the north pole, the horizontal line is the perpendicular great circle
through the centre. A pink circle indicates the Maximum Distance (see p.~\pageref{maxdist}). The field covered by the gnomonic projection
is indicated by a pillow-like frame. Meteors contributing to the display are white-coloured the others are grey.

{\bf Note:} This chart is not gnomonic; hence, the straight meteors are only
an approximation, but start and end points are correct.

\subsection[CROS]{CROS\hfill{\sc Alt+c}}
\label{cross}
Define a certain cross-section line through the display with the mouse or with the cursor keys. The values can be fitted with
single and double Gaussian distributions in a special window. The approximation is a stepwise method, searching for the
best improvement of the quadratic error. This function was implemented to find a statistical way to resolve double radiants.
However, there is still no value deciding if a double peak is real or an artifact. We put the single Gaussian to
$$y=l\,{\rm e}^{-\frac{(x-m)^2}{2\sigma^2}}+c$$
where $l$ is the amplitude, $m$ the mean and $\sigma$ the standard deviation of the Gaussian, and $c$ is a constant which can be defined
by the user to subtract the background noise. The constant is not changed by the approximation. The double Gaussians are
expressed by
$$y=l_1{\rm e}^{-\frac{(x-m_1)^2}{2\sigma_1^2}}+
  l_2{\rm e}^{-\frac{(x-m_2)^2}{2\sigma_2^2}}+c$$
the indices referring to the two assumed superimposed distributions. The step width decreases during the approximation until it
reaches the minimum defined by the buttons ``10\%'', ``1\%'', ``0.1\%''. This is the final accuracy of the Gaussian parameters
since the next approximation of a parameter is determined by
$$p_{t+1}=p_t\pm p_t\Delta$$
where $t$ is the index of iteration and $\Delta$ is the step width. An accuracy of 1\% means, the step width falls down to 0.01.

\begin{tabular}{llp{11.5cm}}
``Bckg'':& {\sc b}    &  A certain background level can be defined with the mouse in the diagramm. The background
                         is indicated with a red line and is used as the constant $c$ in the Gaussian. The value appears in
                         the upper part of the window.\\
``PcBk'':& {\sc Ctrl+b}& Pick background: The mean background noise is determined (considering excluded areas) to be used
                         as $c$. This is the recommended way to determine $c$.\\
``ClrB'':& {\sc Alt+b}&  Clear background: Puts the constant $c$ to zero.\\
``PcL1'':& {\sc l}&      Pick l1: Sometimes it happens that one of the $l$'s becomes zero. Use this button to put it to another
                         starting value.\\
``PcL2'':& {\sc Shift+l}&See ``PcL1''.\\
``Save'':& {\sc F2}&   Saves the current cross-section or area as a text file to export Radiant displays to other statistics
                       or image processing software. The extension for the filename is always {\tt .TXT}. The contents
                       is defined in ``ASCII''.\\
``FxM1'':&{\sc Shift+1}& The mean $m_1$ can be fixed, whence it is not changed during the approximation.\\
``FxM2'':&{\sc Shift+2}& Same as ``FxM1'' with $m_2$.\\
``M1'':&  {\sc Alt+1}&   It might be that the approximation finds unreasonable means. If you are sure about the mean
                         $m_1$ press this button and set the mean in the diagram with the mouse.\\
``M2'':&  {\sc Alt+2}&   Same as ``M1'' with $m_2$.\\
``Stop'':& {\sc spacebar}&Interrupts the current approximation. It may take the procedure some time to react on your
                         pressing. Press the mouse button until the screen button pushes in.\\
``Sgl'':& {\sc s}&       Starts the approximation of a single Gaussian distribution.\\
``Dbl'':& {\sc d} &     Starts the approximation of a double Gaussian distribution.\\
``Quit'':& {\sc esc} &   Leaves the cross-section window.\\
``10\%'': &{\sc 1} &      The approximation stops at step$<$0.1 (resulting in ñ10\% accuracy).\\
``1\%'':&  {\sc 2}&       The approximation stops at step$<$0.01 (resulting in ñ1\% accuracy).\\
``0.1\%'': &{\sc 3}&      The approximation stops at step$<$0.001 (resulting in ñ0.1\%  accuracy).\\
\end{tabular}

The values above the graph mean: ``max1'', ``max2'' the first and second maximum (l1, l2), ``$\alpha$1'', ``$\delta$1'', ``$\alpha$2'', ``$\delta$2'' the
co-ordinates of both maxima. ``$\Sigma$'' is the sum of error squares. The ``X2'' line is some kind of a $\chi^2$-value. However, it is not
comparable with tables which refer to degrees of freedom; the distribution values are not sample numbers.

\subsection[AREA]{AREA\hfill{\sc Alt+a}}
\label{area}
Define a certain part of the density distribution with the mouse or the cursor keys. The values can be fitted with a
two-dimensional Gaussian distribution in a special window. The approximation is a stepwise method, searching for the best
improvement of the quadratic error. This function was implemented to prove the existence of a radiant assuming that it has
Gaussian shape. Currently, it is not yet applicable to find a value which decides statistically whether or not the selected
region contains a radiant. We put the Gaussian function to
$$z=l\,{\rm e}^{-\frac{(x-m_x)^2}{2\sigma^2}}\times{\rm e}^{-\frac{(y-m_y)^2}{2\sigma}}$$
where $l$ is the maximum, $\sigma$ is the standard deviation (only circular Gaussians are fitted) and $m_x$ and $m_y$ are the means in $x$
and $y$ direction respectively. See the description of the button ``Cros'' for details on the buttons in the window. Some other
functions are:

\begin{tabular}{llp{11.5cm}}
``PcBk'':&{\sc Ctrl+b}&Pick background: The background noise is applied to the constant c in the above equation.\\
``ClrB'':&{\sc Alt+b}& Clear background: Sets the constant c to zero.\\
``Draw'':&{\sc d}&If this button is on, the approximation draws every step of iteration in the diagram being a very slow
                  process.\\
``Sun'':&{\sc s}&The diagram is illuminated by some kind of ``light'' source.\\
``Fram'':&{\sc f}& The surface elements are framed.\\
``Line'':&{\sc l}& Only the outlines of the array are drawn. This is the fastest method to draw the diagram.\\
``Calc'':&{\sc enter}& Starts the approximation.\\
``Val'':& {\sc v}& Shows the selected distribution values in the diagram.\\
``Curv'':& {\sc c}& Shows the current approximation.\\
``10\% ``:&{\sc 1}& The approximation stops at step$<$0.1 (resulting in $\pm10$\% accuracy).\\
``1\%'' :&{\sc 2}&  The approximation stops at step$<$0.01 (resulting in $\pm1$\% accuracy).\\
``0.1\%'':&{\sc 3} & The approximation stops at step$<$0.001 (resulting in $\pm0.1$\%  accuracy).\\
\end{tabular}

The values above the graph mean: ``max'' the maximum $l$ of the Gaussian, ``$\alpha$'', ``$\delta$'' the co-ordinates of the approximated
peak in equatorial co-ordinates.

\subsection[$\sigma$]{$\sigma$\hfill{\sc 1}}
Radiant calculates the mean background noise and puts the lower colour limit to the mean plus the standard deviation.

\subsection[$2\sigma$, $3\sigma$]{$2\sigma$, $3\sigma$\hfill{\sc 2, 3}}
Puts the lower colour limit to the mean plus two/three times the standard deviation resp.

\subsection[ClrR]{ClrR\hfill{\sc Alt+r}}
Clears the current colour range. The lower limit is put to zero, the upper, to the maximum value of the distribution.

\subsection[HELP]{HELP\hfill{\sc F1}}
Calls the help window. If you are not in a settings or input window you get the help index where you can select a topic.
Otherwise you get context help about the current input with access to the index, too. See page~\pageref{help} for details on the help
system.

\subsection[ESC]{ESC\hfill{\sc esc}}
This button can be used to leave any kind of input or settings menus.

\subsection{Buttons with ``$\Box$''}
This button closes small windows with results.

Mean background window: {\sc Alt+F4}

Mean radiant window: {\sc Alt+F5}

Shifted radiant window: {\sc Alt+F6}

\chapter{The Project Editor PRJ14.EXE}
\label{prj}
Comprehensive analyses may require lots of calculating hours. Several density distributions with similar computational
environment are to be created. It seems most unconvenient to execute these calculations one by one, since after each display
the selections must be changed or environmental data have to be adjusted. Therefore, a small programme was implemented
to create tasks which contain all the data necessary for a complete calculation. These tasks are stored in so called project
files. There is one example project {\tt RAD14.PRJ} in the working directory of Radiant.
If the editor is started without parameters a new project is created. You may call the editor with

\qquad{\tt prj14}~{\it projectname}

to edit an existing project. Otherwise you can load a project with {\sc F4}. The example project file {\tt RAD14.PRJ} contains some
pre-defined showers. As soon as you open it you will see a list of keywords of these showers on the right hand side of the
screen. Every item in this list is a task. The keyword is identical with the name of the display file being saved after the
calculation of the task. The large box on the left side is the input area, where the task can be specified. You are always
editing the task on top of the list window.

The first field is the Filename which can consist of 8 characters. The tasks in the list on the right side are sorted
alphabetically as soon as you write the first letter of the filename. Observers, Sitecodes, Charts, Period, Limiting Magnitude
and Accuracy can be filled like the input box ``OPTIONS: Selection'' in Radiant (see p.~\pageref{selection}). One exception is the period: The
format is MM/DD (do not forget the slash; the 8th August is {\tt 08/08} not {\tt 8/8}) for dates or SSS.S for solar longitudes. The
distinction between dates and solar longitudes is made by Radiant; but do not mix them in one task. Note that these selective
criteria are only valid for importing of meteors from dBase files. If you calculate meteor lists of Radiant (extension {\tt .M})
the criteria cannot be considered.

The fields Pixel Size, Geocentric Velocity, Minimum and Maximum Angular Speed, Maximum Distance and the Ratio
Distance/Length represent the menu item ``OPTIONS: Calculation'' (see p.~\pageref{calcopt}). The minimum intersection angle cannot be
adjusted for compatibility reasons. Centre $\alpha$, Centre $\delta$ defines the gnomonic projection centre and Daily Motion, Ref. Solar
Longitude the radiant motion in ecliptical longitude.

The field Meteor File records the name of the Radiant meteor list, the PosDat header file or the FIDAC file containing the
meteors for this task. Meteors from PosDat and FIDAC files are extracted applying the selective criteria given above. You
only need to write the direct path from Radiant to this file, however, it is safer to give the disk drive with the complete path.
The Data File field is needed for PosDat import as this database stored the individual meteor co-ordinates in a separate file.
Since data and header filename normally differ in the letters {\tt HEAD}$\rightarrow${\tt DATA}, you may write {\tt \dots} in the Data File field.
Hence if you want to use {\tt PDHEAD-S} and {\tt PDDATA-S} just enter {\tt Meteor File=PDHEAD-S.DBF} and {\tt Data File=\dots}
The check boxes have emphasized letters. Press this letter together with {\sc Alt} to check or uncheck the item (example: {\sc Alt+s}
for Scale Correction). Tasks can be enabled for calculation with the Active field. If the project is executed by Radiant, the
activated tasks are done one after another without interruption. If you want to have one task calculated do not forget to check
the field Active.

{\sc F4} opens a project file, {\sc F2} saves the project file. {\sc Alt+F2} saves the project prompting for the filename. {\sc F10} closes the project
editor. A new task can be inserted with {\sc F3}. An empty keyword appears on top of the list on the right side. As tasks of one
investigation will be often very similar, you may copy the currently edited task with Ins to a new one with the complete
contents. Then also the filename is the same; hence, do not forget to change the filename of the inserted task. Otherwise the
result created by the preceding task would be overwritten. {\sc F8} deletes the edited task without inquiry. {\sc Ctrl+Del} switches
all tasks off. {\sc F5} shows a table of the currently defined tasks. {\sc F6} creates a triple of tasks from the currently edited with
identical settings except the method is changed. Hence, a certain calculation can be executed with all three methods. Note
that the filenames will be modified in order to avoid overwriting files. There is a {\tt T}, {\tt I} and {\tt P} appended
to the filename resp.
The complete task list can be checked on correctness with {\sc F9}. Fields are checked on allowed ranges and the database names
of active tasks are checked on existence. You also get a hint if no task was enabled. The appearing messages allow one to
interrupt the checking procedure with {\sc esc} to correct the error. Otherwise you may continue checking with the {\sc spacebar}.


\chapter{Trouble-shooting}
\section{Possible problems}
\begin{itemize}
\item No meteors are selected.
You entered the names of the import databases and virtually the procedure does not find any meteor. Check the selective
criteria under ``OPTIONS: Selection''. Clear all criteria with F8 for testing and call ``METEORS: Import'' or ``DISPLAY:
Calculate'' again. Make sure that you use the {\tt VMDBSITE.DBF} file which is shipped with Radiant 1.4. Older versions of
{\tt VMDBSITE} have a different structure and will cause arbitrary sitecodes. Switch ``ENVIRONMENT: Sitecode Inquiry'' on
and call ``Import'' again. If you are asked for geographical co-ordinates at any observation you can be sure that you use a
wrong {\tt VMDBSITE} file. Note that if you have a {\tt VMDBSITE} version in a directory which is included in the DOS path
command Radiant reads the sites even if the configured path is wrong.

\item No meteor tracings are displayed.
What does the Selected Meteors line in the Status Box say? The number should be different from zero. Which areas are
covered by the meteors? Check the co-ordinates with ``METEORS: List''. Did you set the centre of projection with
"OPTIONS: Centre"? Did you set the ``Daily Motion'' parameters? The reference date/solar longitude is important, otherwise
meteors may be shifted around half of the sky, and you will not get any result although the centre of projection is correct.

\item The Calculate procedure asks for databases though meteors are available.
This automatic prompt occurs if the selective criteria were changed by ``OPTIONS: Selection''. Do not change the choice
unless you want to import other meteors. However, if you cancel the import request and call Calculate again the automatism
switches off.

\item The prints are not complete on laser printers.
The laser printer reads the information of a complete page into its memory before starting the output. The size of Radiant
prints needs 371K printer memory. Laser printers with 512K memory may not be able to store te complete information.
Solutions are using Fast Print which prints only non- reproducible drafts or adding printer memory.

\item You cannot enter the sitecode in ``INPUT: Meteors''. An error in Radiant
only allows sitecode up to {\tt 32767} in the direct input. The database
import is not affected.
\end{itemize}

\section{Messages}
\begin{itemize}
\item Add DESPITE the DIFFERENCE?

     You tried to add two displays that were calculated with different reference solar longitudes. If the difference is slight,
     you may choose YES.
\item Clear display?

     This message gives possibility to choose whether or not the display is cleared before calculation. NO means, the data are
     added to the current display.
\item Could you please tell me the path to the {\tt VMDBSITE.DBF} file?

     This message appears when Radiant does not find a {\tt VMDBSITE.DBF} file in its directory, e.g. if you erased this file since
     you use the VMDB where such a file is available. Then give the directories and the site file name (e.g.
     {\tt $\backslash$FOXPRO$\backslash$VMDBSITE.DBF}). This path to the site file must be stored in the configuration file of Radiant with
     ``PROGRAMME: Save State'', i.e. you needn't give that path again and again.
\item File already EXISTS.   Overwrite ?

     You gave a name of a distribution file (Radiant or ASCII format), a meteor file or a bitmap file which already exists.
\item FILE DOES NOT EXIST

     Check the filenames you entered. In the case it is sent by the import procedure METEORS, Import or at ``DISPLAY:
     Calculate'' check the names of both the header and the data files. The error message also appears when the file is used
     by other software in multi-tasking systems.
\item Graphics not initialized.

     Obviously, the {\tt EGAVGA.BGI} driver is not in the same directory as Radiant.
\item Invalid file name.

     The distribution filename or the names data files are incorrect. Please use the Project Editor {\tt PRJ14.EXE} to check the
     error.
\item Invalid value in date.

     Reported by ``METEORS: Input''. One of the values in the date you just gave exceeds its ranges. It might be that you did
     not consider the order of YY/MM/DD.
\item Help and messages are not available.

     The files {\tt RAD14.HLP} and {\tt RAD14.IDX} are not in the work directory of Radiant.
\item Meteor List does not exist.

     The given name of the meteor file was not found. This message also occurs when you load a density distribution with
     checked ``Load Meteors'' option which was saved with this option switched off.
\item No task acticvated.

     Appears at ``DISPLAY: Exec. Project''. Use the Project Editor to switch tasks on with Alt+A.
\item Not enough disk space to swap meteors.

     Meteors are swapped to disk when reading them from a database. 1,000 meteors need 21,000 byte, 65534 meteors need
     1.3MB disk space.
\item Not enough memory to open the help screen.

     All functions of Radiant will work properly except the help. Consider removing some TSR programmes from your
     configuration which may eat a lot of memory.
\item Please load the paper

     If this message appears again and again though you loaded the printer with paper, check with Configure which parallel
     port you selected. Note that only parallel ports 1...3 are supported.
\item Site code ... not known

     Generally, if Radiant finds an observation made from an unknown (to the current {\tt VMDBSITE} file) site it is simply
     ignored. However, if you switched ``ENVIRONMENT: Sitecode Inquiry'' on then you are asked for the geographical
     co-ordinates of this site. These co-ordinates stay in memory until the Radiant session is finished. This inquiry also occurs
     when you tried to put in a meteor seen from an unknown site. Here the inquiry is independent of the switch Sitecode
     Inquiry.
\item Sol.log of screen display ...

     see ``Add despite the difference''.
\item The directory for density distribution and meteor files does not exist.

     The configuration file contains a line ``DspDirectory='' which specifies the default directory for density distribution and
     meteor files. Radiant assumes its working directory as default. Change the configuration file with an ASCII editor.
\item The environmental data DO NOT SUIT each other.

     You tried to add a display from disk which differs from the current on the screen in the centre of display, the size of the
     gnomonic squares or in the resolution (high, meduim, low).
\item The meteor list does not belong to the display.

     When Radiant opens a distribution file with the ``Load Meteors'' option checked, it compares the last-update times of the
     files. They should be identical if both files belong together. In spite of that you may load the meteors with ``METEORS:
     Open''.
\item The minimum angular velocity cannot be larger than the maximum.

     Appears at ``OPTIONS: Calculation''. Check your angular speed limitations.
\item The radiant database {\tt RAD14.DBF} does not exist.

     This file contains the information necessary for ``OPTIONS: Radiants'' and ``ADDIT: Radiants''. Make sure that the file
     is in the working directory of Radiant.
\item There is a fault in the database.

     This message can have different causes.
     1. The structure of the PosDat files should be absolutely correct. (A character field with a wrong length makes reading
     this file impossible.)
     2. The identification field ID, relating header with data files contains characters different from {\tt 000}\dots{\tt 999} and
     {\tt AAA}\dots{\tt ZZZ}. Sometimes it happens that there is a blank line in the database, due to any error in an input, appending
     or other software. In this case simply remove such a line.
     3. Most seldom Radiant could find an unexpected end of the databases. This can occur when the file was incorrectly
     closed or incorrectly created with other software.
\item The selceted meteors cover more than three months.

     Occurs at ``METEORS: Mean Solar Lognitude''. Please select a reasonable period with ``OPTIONS: Selection'' before
     importing meteors. As meteors are shifted to a certain reference solar longitude by a daily motion value of limited
     accuracy the errors become too large for long intervals.
\item This display was NOT created BY RADIANT.

     You gave the name of a file that was not saved by Radiant. Files of a version before 1.2 are not supported anymore.
\item Too many additional sites defined.

     Only five additional sites can be defined during a Radiant session. This will be necessary when data import encounters
     an unknown sitecode and the switch ``ENVIRONMENT: Sitecode Inquiry'' is on. Please note that these sites are not
     added to {\tt VMDBSITE.DBF} and are lost when you leave the programme.
\item You are NOT USING a VGA graphics board.

     It is impossible to run Radiant with another than VGA graphics board.
\item Wrong syntax in date. Use ``/'' between the values.

     Reported by ``METEORS: Input''. The format of the date is YY/MM/DD. Try again.
\end{itemize}
\end{document}


