generated from ivoa-std/doc-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathVOEvent.tex
1736 lines (1550 loc) · 89.4 KB
/
VOEvent.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[11pt,a4paper]{ivoa}
\input tthdefs
\input gitmeta
\usepackage{hyperref}
\usepackage{verbatim}
\lstloadlanguages{XML,SQL}
\lstset{flexiblecolumns=true,numberstyle=\small,showstringspaces=False,
identifierstyle=\texttt,basicstyle=\footnotesize}
\title{Sky Event Reporting Metadata (VOEvent)}
% see ivoatexDoc for what group names to use here
\ivoagroup[IG]{Time Domain}
\author[https://orcid.org/0000-0001-7915-5571]{Baptiste {\bf Cecconi}, Observatoire de Paris-PSL, France}
\author[https://orcid.org/0000-0002-3709-8393]{\\Alasdair {\bf Allan}, University of Exeter, UK}
\author{\\Scott {\bf Barthelmy}, NASA Goddard Spaceflight Center, USA}
\author[https://orcid.org/0000-0002-7777-216X]{\\Joshua S. {\bf Bloom}, University of California, Berkeley, USA}
\author[https://orcid.org/0000-0002-9873-1471]{\\John M. {\bf Brewer}, Yale University, USA}
\author{\\Markus {\bf Demleitner}, Universit\"at Heidelberg, Germany}
\author{\\Robert B. {\bf Denny}, DC-3 Dreams SP, USA}
\author{\\Mike {\bf Fitzpatrick}, National Optical Astronomy Observatory, USA}
\author{\\Matthew {\bf Graham}, California Institute of Technology, USA}
\author[https://orcid.org/0000-0002-1941-9202]{\\Norman {\bf Gray}, University of Glasgow, UK}
\author[https://orcid.org/0000-0002-0672-4945]{\\Frederic {\bf Hessman}, University of Gottingen, Germany}
\author[https://orcid.org/0000-0001-9629-2922]{\\Pierre {\bf Le Sidaner}, Observatoire de Paris, France}
\author[https://orcid.org/0000-0002-3957-1324]{\\Szabolcs {\bf Marka}, Columbia University, USA}
\author[https://orcid.org/0000-0001-6847-2328]{\\Dave {\bf Morris}, University of Edinburg, UK}
\author[https://orcid.org/0000-0003-2377-2356]{\\Arnold {\bf Rots}, Harvard-Smithsonian Center for Astrophysics, USA}
\author[https://orcid.org/0000-0001-9385-8978]{\\Rob {\bf Seaman}, National Optical Astronomy Observatory, USA}
\author{\\Tom {\bf Vestrand}, Los Alamos National Laboratory, USA}
\author[https://orcid.org/0000-0002-9145-8580]{\\Roy {\bf Williams}, California Institute of Technology, USA}
\author[https://orcid.org/0000-0002-9919-3310]{\\Przemyslaw {\bf Wozniak}, Los Alamos National Laboratory, USA}
\editor[mailto:[email protected]]{Baptiste Cecconi}
\editor[mailto:[email protected]]{Rob Seaman}
\editor[mailto:[email protected]]{Roy Williams}
\previousversion[http://www.ivoa.net/documents/VOEvent/20110711/]{VOEvent 2.0}
\setcounter{secnumdepth}{5}
\begin{document}
\begin{abstract}
VOEvent defines the content and meaning of a
standard information packet for representing, transmitting, publishing and
archiving information about a transient celestial event, with the implication
that timely follow-up is of interest. The objective is to motivate the
observation of targets-of-opportunity, to drive robotic telescopes, to trigger
archive searches, and to alert the community. VOEvent is focused on the
reporting of photon events, but events mediated by disparate phenomena such as
neutrinos, gravitational waves, and solar or atmospheric particle bursts may
also be reported.
Structured data is used, rather than natural language, so that automated systems
can effectively interpret VOEvent packets. Each packet may contain zero or more
of the ``who, what, where, when \& how'' of a detected event, but in addition,
may contain a hypothesis (a ``why'') regarding the nature of the underlying
physical cause of the event.
Citations to previous VOEvents may be used to place each event in its correct
context. Proper curation is encouraged throughout each event's life cycle from
discovery through successive follow-ups.
VOEvent packets gain persistent identifiers and are typically stored in
databases reached via registries. VOEvent packets may therefore reference other
packets in various ways. Packets are encouraged to be small and to be processed
quickly. This standard does not define a transport layer or the design of
clients, repositories, publishers or brokers; it does not cover policy issues
such as who can publish, who can build a registry of events, who can subscribe
to a particular registry, nor the intellectual property issues.
\end{abstract}
\section{Introduction}
Throughout human history, unexpected events in the sky have been interpreted as
portents and revelations. Modern curiosity seeks to use such transient events to
probe the fundamental nature of the universe. In decades to come the scientific
study of such events will be greatly extended, with new survey telescopes making
wide-area systematic searches for time-varying astronomical events, and with a
large number of robotic facilities standing ready to respond. These events may
reflect purely local solar system phenomena such as comets, solar flares,
asteroids and Kuiper Belt Objects, or those more distant such as gravitational
microlensing, supernovae and Gamma-Ray Bursts (GRBs). Most exciting of all may
be new and unknown types of event, heralding new horizons for astrophysics.
Searches for astrophysical events are taking place at all electromagnetic
wavelengths from gamma-rays to radio, as well as quests for more exotic events
conveyed by such means as neutrinos, gravitational waves or high-energy cosmic
rays.
\subsection{Astrophysical events}
For many types of events, astrophysical knowledge is gained through fast,
comprehensive follow-up observation --- perhaps the immediate acquisition of the
spectrum of a suspected optical counterpart, for example --- and in general, by
observations made with instruments in different wavelength regimes or at
different times. To satisfy these needs, several projects are commissioning
robotic telescopes to respond to digital alerts by pointing the telescope and
triggering observations in near real-time and without human intervention. These
include, for instance, SkyAlert \citep{bib05} in the USA, and RoboNet-II
\citep{bib12} and eSTAR \citep{bib03} in the United Kingdom. Automated systems
may also query archives and initiate pipelines in response to such alerts.
Many projects have been conceived --- some now in operation --- that will
discover such time-critical celestial events. These include a large number of
robotic survey and monitoring telescopes with apertures from tens of centimetres
to tens of meters, large-field survey projects like Catalina Real-Time Transient
Survey (CRTS)\footnote{\url{http://crts.caltech.edu}} \citep{bib08}, Palomar
Transient Factory (PTF)\footnote{\url{https://www.ptf.caltech.edu}}
\citep{bib31}, Zwicky Transient Factory (ZTF)\footnote{
\url{https://www.ztf.caltech.edu}} \citep{2014htu..conf...27B},
Pan-STARRS\footnote{\url{https://panstarrs.stsci.edu}} \citep{bib09} and Large
Synoptic Survey Telescope (LSST)\footnote{\url{https://www.lsst.org}}
\citep{bib07}, satellites like Swift \citep{bib11a} and Fermi \citep{bib11b},
and more singular experiments like Laser Interferometer Gravitational Waves
Observatory (LIGO)\footnote{\url{https://www.ligo.org}} \citep{bib06}. The
community has demonstrated that robotic telescopes\footnote{
\url{http://www.astro.physik.uni-goettingen.de/~hessman/MONET/links.html}} can
quickly follow-up events using the standard outlined in this document. In the
past, human-centric event alert systems have been very successful, including the
Central Bureau for Astronomical Telegrams (CBAT)\footnote{
\url{http://www.cbat.eps.harvard.edu/index.html}} and the Astronomer's Telegram
(ATEL)\footnote{\url{http://www.astronomerstelegram.org}} \citep{bib01}, but
these systems use predominantly natural-language text to describe each event,
and do not have sophisticated selection criteria for subscribers. The GRB
Coordinates Network (GCN)\footnote{\url{http://gcn.gsfc.nasa.gov}} \citep{bib04}
reports one of the most fruitful event streams of current times, and its events
are transmitted very successfully for follow-up within seconds or minutes. With
VOEvent, we leverage the success of GCN by making it interoperable with other
producers of events, and by generalising its transport mechanisms.
A much larger rate of events can be expected as new facilities are commissioned
or more fully automated. These rates indicate events that must be handled by
machines, not humans. Subscribing agents must be able to automatically filter a
tractable number of events without missing any that may be key to achieving
their goals. In general, the number of pending events from a large-scale survey
telescope (such as LSST) that are above the horizon at a given observatory
during a given observing session may be orders of magnitude larger than a human
can sift through productively. Selection criteria will need to be quite precise
to usefully throttle the incoming event stream(s) --- say --- ``\emph{give me
all events in which a point source R-band magnitude increase of at least -2.0
was seen to occur in less than four hours, that are located within specified
molecular column density contours of a prioritised list of galactic star forming
regions}''. In practice the result of complex queries such as these will be
transmitted through intermediary ``brokers'' --- which will subscribe to
VOEvent-producing systems and provide filter services to client groups
(``subscribers'') via specialised VOEvents. Filtering will often be based on
coincidence between multiple events. A gravitational wave detector may produce
a large number of candidate events, but the interesting ones may be only those
that register with multiple instruments.
A recent study \citep{2018arXiv181112680C} extended the usage of VOEvent to
reports or predictions of Solar System events. This assessment revealed the
following needs: (a) The capability to specify the only target name as a
location. It can be a planet, a satellite, a comet, a moon, a spacecraft, a
rover, etc. Standard names should be used here, such as IAU names for natural
bodies. (b) The capability to specify the location using a planetary body
reference frame, or in a reference frame related to an object in the Solar
System. (c) The capability to specify a time range, with a start and end time.
\subsection{Why VOEvent?}
Handling the anticipated event rates quickly and accurately will require alert
packets to be issued in a structured data format, not natural language. Such a
structured discovery alert --- and any follow-up packets --- will be referred
to as a VOEvent. VOEvent will rely on XML schema\footnote{
\url{https://www.w3.org/XML/Schema}} to provide the appropriate structured
syntax and semantics. These schemata may be specific to VOEvent or may implement
external schemata such as the IVOA's Space-Time Coordinate (STC) metadata
specification \citep{2007ivoa.spec.1030R}. Some of the VOEvent structure is
provided by this document, for example the meaning of the \texttt{<Who>} and \texttt{
<Date>} elements; however other structure is provided by the author of the event
stream, who might define, for example, what the \texttt{<peak\_energy>} and \texttt{
<energy\_variance>} parameters mean when supplied with one of those events.
VOEvent is a pragmatic effort that crosses the boundary between the Virtual
Observatory and the larger astronomical community. The results of astronomical
observations using real telescopes will be expressed using the IVOA VOEvent
standard and disseminated by registries and brokers within and outside the VO.
Each event that survives rigorous filtering can then be passed to other
telescopes to acquire follow-up observations that will confirm (or deny) the
original hypothesis as to the classification of the object(s) or processes that
generated that particular VOEvent in the first place. This must happen quickly
(often within seconds of the original VOEvent) and must minimise unnecessary
expenditures of either real or virtual resources.
VOEvent is \emph{transport neutral}, but deploying and operating a robust
general-purpose network of interoperating brokers has always been a
high-priority issue. Various special-purpose networks and prototype networks
for the global VOEventNet have been deployed and operated. See references under
SkyAlert \citep{bib05} and Transport \citep{bib33} for two options.
Following the Abstract and Introduction, this document contains a discussion of
appropriate VOEvent usage in \S\ref{sec:2}. Section \S\ref{sec:3} is the heart
of the document, conveying the semantics of a VOEvent packet. Explicit examples
of VOEvent packets are in \S\ref{sec:4}, and linked references in \S\ref{sec:5}.
\subsection{Role within the VO Architecture}
\begin{figure}[ht!]
\centering\includegraphics[width=0.9\textwidth]{role_diagram}
\caption{VOEvent standard in the VO architecture diagram}
\label{fig:diagram}
\end{figure}
Fig.~\ref{fig:diagram} shows the role this document plays within the
IVOA architecture \citep{2021ivoa.spec.1101D}.
VOEvents inherit much of the structure and semantics of {\bf
VOTable} \citep{2019ivoa.spec.1021O}, including the {\bf UCD}
\citep{2018ivoa.spec.0527P} scheme for semantics of quantities and the VOUnits
standard \citep{2023ivoa.spec.1215G}. VOEvent takes space-time coordinates from
the {\bf STC} \citep{2007ivoa.spec.1030R}, and it uses the URI semantics of the
IVOA {\bf Vocabulary} 1.0 \citep{2009ivoa.spec.1007G} effort. IVOA {\bf Identifiers}
\citep{2016ivoa.spec.0523D} are used for events and their parent streams and
servers, and both these latter are described by IVOA {\bf Resource Metadata}
\citep{2007ivoa.spec.0302H} and stored in the VO Registry.
\subsection{VOEvent in the VO Architecture}
VOEvent is an IVOA standard, which means that it fits into a rich matrix of
other IVOA standards. Figure \ref{fig:diagram} shows where VOEvent fits into the broader
IVOA architecture. VOEvents inherit much of the structure and semantics of {\bf
VOTable} \citep{2019ivoa.spec.1021O}, including the {\bf UCD}
\citep{2018ivoa.spec.0527P} scheme for semantics of quantities and the VOUnits
standard \citep{2014ivoa.spec.0523D}. VOEvent takes space-time coordinates from
the {\bf STC} \citep{2007ivoa.spec.1030R}, and it uses the URI semantics of the
IVOA {\bf Vocabulary} \citep{2009ivoa.spec.1007G} effort. IVOA {\bf Identifiers}
\citep{2016ivoa.spec.0523D} are used for events and their parent streams and
servers, and both these latter will be described by IVOA {\bf Resource Metadata}
\citep{2007ivoa.spec.0302H} and stored in the registry.
\begin{figure}[ht!]
\centering\includegraphics[width=0.9\textwidth]{role_diagram}
\caption{VOEvent standard in the VO architecture diagram}
\label{fig:diagram}
\end{figure}
\section{Usage}
\label{sec:2}
This document defines the syntax and semantics of an alert packet known as
VOEvent \citep{2011ivoa.spec.0711S}. In this document, the word \emph{packet}
will refer to a single, syntactically complete, VOEvent alert or message,
however transmitted or stored. The transmission of such a packet announces that
an astronomical ``event'' has occurred, or provides information contingent on a
previous VOEvent through a citation mechanism. The packet may include
information regarding the ``who, what, where, when \& how'' of the event, and
may express ``why'' hypotheses regarding the physical cause of the observed
event and the likelihood of each of these hypotheses.
\subsection{Publishing VOEvent Packets}
\label{sec:2.1}
VOEvent packets express sky transient alerts. VOEvent users subscribe to the
types of alerts pertinent to their science goals. The following roles define the
interchange of VOEvent semantics:
\begin{itemize}
\item An \emph{\bf Author} is anyone (or any organisation) creating scientific
content suitable for representation as a sky transient alert. An author will
typically register with the IVOA registry, so that the \texttt{<Who>} element of
VOEvent packets can be small and reusable, expressing only the IVOA identifier
needed to retrieve the contact information for the author. An authoring
organisation or individual may often rely on autonomous systems to actually
create and transport the individual alert messages.
\item A \emph{\bf Publisher} receives alerts from one-or-more authors, and
assigns a unique identifier to each resulting packet. Either the author or the
publisher generates the actual XML syntax of the event, but the publisher is
responsible for the validity of the packet relative to the VOEvent schema.
Publishers will register with the IVOA registry as described below.
\item A \emph{\bf Repository} subscribes to (or is party to the original
creation of) one or more VOEvent streams, persists packets either permanently
or temporarily, and runs a service that allows clients to resolve identifiers
and apply complex queries to its holdings. A given packet had one Publisher but
may be held in more than one Repository. Public repositories will register with
the IVOA registry.
\item A \emph{\bf Subscriber} is any entity that receives VOEvent packets for
whatever purpose. Subscribers can find out how to get certain types of events
by consulting the lists of publishers and repositories in the IVOA registry.
A subscription is a filter on the stream of events from a publisher: the
subscriber is notified whenever certain criteria are met. For example, the
filter may involve the curation part of the event (\emph{e.g., ``all events
published by the Swift spacecraft''}), its location (\emph{``anything in
M31''}), or it may reference the detailed metadata of the event itself
(\emph{``whenever the cosmic ray energy is greater than 3 TeV''}).
\item A Broker or Relay, also sometimes known as a Filter, is any combination
of the atomic roles of Publisher, Repository, or Subscriber that also offers
arbitrary application-level functionality. See the IVOA VOEvent Transport Protocol
Recommendation \citep{2017ivoa.spec.0320S} for further discussion.
\end{itemize}
\subsection{VO Identifiers (IVORNs)}
\label{sec:2.2}
VOEvent benefits from the IVOA identifiers developed for the VO registry.
In this document, such
an identifier is called an \emph{IVORN}, that is, an \emph{International Virtual
Observatory Resource Name}. It is required to begin with ``\texttt{ivo://}'', and
will stand in for a particular packet. A \emph{registered} VOEvent packet is one
that has a valid identifier --- meaning that a mechanism exists that can resolve
that identifier to the full VOEvent packet. VOEvent identifiers thus provide a
citation mechanism --- a way to express that one VOEvent packet is a
\emph{follow-up} in some fashion of a previous packet. For these reasons,
VOEvent packets will often contain VO identifiers \citep{2016ivoa.spec.0523D}.
These take the general form \texttt{ivo://authorityID/resourceKey\#local\_ID}, and
are references to metadata packets that may be found at a VO registry or VOEvent
repository. There are several types of metadata schema that the registry can
hold. For the purposes of VOEvent, the principal schemata are:
\begin{itemize}
\item {\bf VOEvent}: the metadata packet for an alert resulting from the
observation of a transient celestial event. This schema is defined in this
document.
\item {\bf VOEventStreamRegExt}: the metadata packet for a stream of VOEvents,
including information about who is running it, the parameters that may be
included and their meaning. The VOEventStreamRegExt may also be shortened to
just `stream', they mean the same thing.
\item {\bf VOEventServerRegExt}: the metadata packet to describe a service that
provides VOEvents, which may be past events from a repository query service, or
may be events sent in near real-time from a subscription service. The server
definition includes the list of streams whose events are kept, the service
endpoint to query the repository, or the endpoint to resolve a VOEvent
identifier.
\item {\bf Author Organisation}: these metadata \citep{2007ivoa.spec.0302H}
describe an author, including contact information and a description of the
project. The VOEvent {\bf <Who>} element contains either a reference to an
author's IVORN or explicit contact information sufficient to describe the
author.
\end{itemize}
When such an identifier is \emph{resolved}, it means that the VOEvent metadata
packet is obtained in exchange for the identifier. Such resolution happens
through the global, distributed IVOA registry in stages. The registry is queried
to locate a repository holding the relevant packet, and then the repository is
queried for the packet itself. The part of the IVORN before the ``{\tt\#}''
symbol points to the \emph{VOEventStreamRegExt} of which the event is a member;
the whole IVORN (that includes the \texttt{local\_ID}) points to the event itself.
Thus VOEvent identifiers serve two purposes; they contain a stream identifier,
then the ``{\tt\#}'' sign, then the local reference within that stream.
This is a key point in understanding VOEvent identifiers: {\bf The Event
identifier also expresses the Stream identifier.} For example:
\begin{itemize}
\item \texttt{ivo://nvo.caltech/voeventnet/catot\#1004071150784109051}\\
This identifier points to a specific VOEvent (number \texttt{1004071150784109051})
that is an instance of the stream called \texttt{
ivo://nvo.caltech/voeventnet/catot}. However, this IVORN will not resolve from
the global VO registry, but only from a repository that has this stream of
events.
\item \texttt{ivo://nvo.caltech/voeventnet/catot}\\
This Stream identifier can be looked up in any VO registry, returning a
description, who runs it, the names, semantics, and descriptions of the
parameters used in the events, how to subscribe, etc. In this case, the stream
represents optical transients from the CRTS survey. For resolving the event
itself, we want a repository that will have the event, so a query would be used
like this: ``\emph{Find repositories that keep the events from this Stream}''
\end{itemize}
The nature of a standard service to query VOEvent server records and the
metadata necessary to describe a Stream remain under discussion in the VOEvent
Working Group.
\subsection{Authentication and Authorisation}
\label{sec:2.3}
VOEvents provide a mechanism for alerting members of the astronomical community
to time-critical celestial phenomena. As a result of such an alert, significant
hardware, software and personnel assets of the community may be retargeted to
investigate those phenomena. The scientific and financial costs of such
retargeting may be large, but the potential scientific gains are larger. The
success of VOEvent --- and of observations of astronomical transients in general
--- depends on minimising both intentional and unintentional noise/spam
associated with this communications channel. All of the familiar internet
security worries apply to VOEvents. A discussion of these issues is available
under Authentication \citep{bib34} from both the VOEvent standpoint and for
comparison, general XML signatures.
\section{VOEvent Semantics}
\label{sec:3}
A VOEvent packet provides a general purpose mechanism for representing
information about transient astronomical events. However, not all VO data are
suitable for expression using VOEvent. The VOEvent schema
\citep{2011ivoa.spec.0711S} is as simple as practical to allow the minimal
representation of scientifically meaningful, time critical, events. VOEvent
also borrows other standard VO and astronomical schema, specifically STC for
space-time coordinates. The usual IVOA standards such as registries and UCD
identifiers are used. VOEvent has a strong interest in the development of
complete and robust astronomical ontologies, but must rely on pragmatic and
immediately useful prototypes of planned facilities.
By definition, a VOEvent packet contains a single XML \texttt{<VOEvent>} element.
If multiple \texttt{<VOEvent>} elements are jointly contained within a larger
document in some fashion, they should still be handled as separate alert
packets. A \texttt{<VOEvent>} element may contain at most one of each of the
following optional sub-elements:
\begin{itemize}
\item[\tt <Who>] Identification of scientifically responsible Author (see
\S\ref{sec:3.2})
\item[\tt <What>] Event Characterisation modelled by the Author (see
\S\ref{sec:3.3})
\item[\tt <WhereWhen>] Space-Time Coordinates of the event (see \S\ref{sec:3.4})
\item[\tt <How>] Instrument Configuration (see \S\ref{sec:3.5})
\item[\tt <Why>] Initial Scientific Assessment (see \S\ref{sec:3.6})
\item[\tt <Citations>] Follow-up Observations (see \S\ref{sec:3.7})
\item[\tt <Description>] Human Oriented Content (see \S\ref{sec:3.8})
\item[\tt <Reference>] External Content (see \S\ref{sec:3.9})
\end{itemize}
Only those elements required to convey the event being described need be
present; the ordering of elements is not formally constrained. The intent of
VOEvent is to describe a single astronomical transient event per packet.
Multiple events should be expressed using multiple packets. On the other hand,
complex observations may best be expressed using multiple follow-up packets or
via embedded \texttt{<References>} to external resources such as VOTables or RTML
documents. XML structures other than those listed in this document should be
used with care within a \texttt{<VOEvent>} element, but some applications may
require the freedom to reference schema outside the scope of this specification.
Section 4 contains examples of complete VOEvent packets.
\subsection{\texttt{<VOEvent>} --- identifiers, roles and versions}
\label{sec:3.1}
A \texttt{<VOEvent>} expresses the discovery of a sky transient event, located in a
region of space and time, observed by an instrument, and published by a person
or institution who may have developed a hypothesis about the underlying
classification of the event.
The \texttt{<VOEvent>} element has three attributes:
\noindent {\bf 3.1.1} \texttt{ivorn} \label{sec:3.1.1} ---
Each VOEvent packet is required to have one-and-only-one identifier, expressed
with the \texttt{ivorn} attribute. VOEvent identifiers are URIs
\citep{2016ivoa.spec.0523D}. As the issuance of duplicate identifiers would
diminish the trust placed in systems exchanging VOEvents, it is anticipated that
a number of VOEvent publishers will be founded to issue unique IVORNs from a
variety of useful and appropriate namespaces. The non-opaque URI identifier is
constructed systematically so that the identifier of a different resource, the
VOEventStreamRegExt, is deducible from the identifier of an event. The first
part is the identifier for the publisher, and the event identifier is built
from this, then a {\tt\#} symbol, then a local string that is meaningful only
in the context of that publisher.
\noindent {\bf 3.1.2} \texttt{role} \label{sec:3.1.2} ---
The optional \texttt{role} attribute accepts the enumerated options:
\begin{itemize}
\item The value ``\emph{observation}'' is the default if the role is missing;
this means that the packet describes an observation of the actual universe.
\item The value ``\emph{prediction}'' indicates that the VOEvent describes an
event of whatever description that has yet to occur when the packet is created.
\item The value ``\emph{utility}'' means that the packet expresses nothing about
astrophysics, but rather information about the observing system. This could be
used, for example, for a satellite to express that it has changed its
configuration.
\item The value ``\emph{test}'' means that the packet does not describe actual
astronomical events, but rather is part of a testing procedure of some kind.
\end{itemize}
It is the responsibility of all who receive VOEvent packets to pay attention to
the \texttt{role}, and to be quite sure of the difference between an actual event
and a test of the system or a prediction of an event that has yet to happen.
\noindent {\bf 3.1.3} \texttt{version} \label{sec:3.1.3} ---
The \texttt{version} attribute is required to be present and to equal "2.1" for
all VOEvent packets governed by this version of the standard. There is no
default value.
For example, a \texttt{<VOEvent>} packet resulting from Tycho Brahe's discovery of
a ``Stella Nova'' in Cassiopeia on 11 November 1572 might start:
\begin{lstlisting}[language=XML]
<VOEvent ivorn="ivo://uraniborg.hven#1572-11-11/0001"
role="observation" version="2.0">...
\end{lstlisting}
\subsection{\texttt{<Who>} --- Curation Metadata}
\label{sec:3.2}
This element of a VOEvent packet is devoted to curation metadata: who is
responsible for the information content of the packet. Usage should be
compatible with section 3.2 of the IVOA Resource Metadata specification
\citep{2007ivoa.spec.0302H}. Typical curation content would include:
\subsubsection{\texttt{<Author>}}
Author information follows the IVOA curation information schema: the
organisation responsible for the packet can have a title, short name or acronym,
and a logo. A contact person has a name, email, and phone number. Other
contributors can also be noted.
An example of Author information might be:
\begin{lstlisting}
<Author>
<title>Rapid Telescope for Optical Response</title>
<shortName>Raptor</shortName>
<logoURL>http://www.raptor.lanl.gov/images/RAPTOR_patchLarge.jpg</logoURL>
<contactName>Robert White</contactName>
<contactEmail>[email protected]</contactEmail>
<contactPhone>+1 800 555 1212</contactPhone>
</Author>
\end{lstlisting}
Contributor information can be included using as many \texttt{<contributor>}
elements as necessary. The element value is the full name of the person or
organisation. Each element can have three optional attributes: an \texttt{ivorn}
attribute to refer to the person's or organisation information in the VO
registry; an \texttt{altIdentifier} attribute to refer to other identifier (such
as an ORCID (Open Researcher and Contributor ID)\footnote{
\url{https://orcid.org}} for persons, or a Research Organisation Registry
(ROR)\footnote{\url{https://ror.org}} identifier for institutions), in the form
of an URI; and a \texttt{role} attribute. The \texttt{role} attribute is an important
part of the contributor's metadata and allows proper attribution of work. We
recommend to use here the list of \emph{contributorType} from the DataCite
Metadata Schema v4.5 \citep{https://doi.org/10.14454/g8e5-6293}.
\subsubsection{\texttt{<AuthorIVORN>}}
As an alternative to quoting Author information over and over, this information
can be published to the VO registry, then referenced through an IVORN. The \texttt{
<AuthorIVORN>} element contains the identifier of the organisation responsible
for making the VOEvent available. Event subscribers will often use this as their
primary filtering criterion. Many subscribers will only want events from a
particular publisher, or more precisely, from a specific content creator. In
general, \texttt{<AuthorIVORN>} should be a VOResource identifier that resolves to
an organisation in the sense of \citep{2007ivoa.spec.0302H}. Publishers and
subscribers may use this VOResource to exchange curation metadata directly.
\subsubsection{\texttt{<Date>}}
The \texttt{<Date>} contains the date and time of the creation of the VOEvent
packet. The required format is a subset of ISO-8601 (\emph{e.g., \texttt{
yyyy-mm-ddThh:mm:ss}}). The timescale --- for curation purposes only --- is
assumed to be Coordinated Universal Time (UTC). Discussions of date and time for
the expression of meaningful scientific coordinates may be found in
\citep{2007ivoa.spec.1030R} and \citep{bib26}.
Minimal \texttt{<Who>} usage might resemble:
\begin{lstlisting}[language=XML]
<Who>
<AuthorIVORN>ivo://uraniborg.hven/Tycho</AuthorIVORN>
<Date>1573-05-05T01:23:45Z</Date>
</Who>
\end{lstlisting}
Tycho first noted SN 1572 on 11 November of that year. The event was published
in Tycho's pamphlet \emph{De Stella Nova} by 5 May 1573, thus this later date is
placed in the curation metadata. More detailed curation metadata can be
retrieved directly from the publisher.
\subsection{\texttt{<What>} --- Event Characterisation}
\label{sec:3.3}
The \texttt{<What>} and \texttt{<Why>} elements work together to characterise the
nature of a VOEvent. That is: \texttt{<What>} has author-defined parameters about
what was measured directly, or other relevant information about the event,
versus \texttt{<Why>} is a data model of fixed schema about the hypothesised
underlying cause or causes of the astrophysical event.
In general, an observation is the association of one or more dependent variables
with zero or more independent variables. The \texttt{<WhereWhen>} element, for
example, is often used to express the independent variables in an observation
--- where was the telescope pointed and when was the camera shutter opened. The
\texttt{<What>} element, on the other hand, is typically used to express the
dependent variables --- what was seen at that location at that time.
A \texttt{<What>} element contains a list of \texttt{<Param>} elements which may be
associated and labeled using \texttt{<Group>} elements. It may also have one or
more <Table> elements, each of which can contain \texttt{<Param>} and \texttt{<Field>}
elements: these last define a whole column, or vector of data, rather than a
single primitive value as with <Param>. See \S\ref{sec:4} for an example of
usage.
\subsubsection{\texttt{<Param>} --- Numbers and strings with semantics}
%\addtocounter{subsubsection}{1}
\label{sec:3.3.1}
\texttt{<Param>} elements may be used to represent the values of arbitrarily named
quantities. Thus a publisher need not establish a fixed schema for all events
they issue. Unified Content Descriptors (UCDs) \citep{2018ivoa.spec.0527P}.
%\citep{std:UCD}
may be used to clarify meaning. Usage of \texttt{<Param>} and \texttt{<Group>} is
similar to the VOTable specification, see \S4.9 of \citep{2019ivoa.spec.1021O}.
A \texttt{<Param>} may contain elements \texttt{<Description>} and \texttt{<Reference>}.
Like most VOEvent elements, these can be used to give further descriptive
documentation about what this parameter means. The \texttt{<Param>} may also
contain an element \texttt{<Value>} for the value of the parameter, as an alternate
to the `value' attribute defined below: if both are present, the attribute takes
precedence over the element. This allows parameter values to include a richer
variety of text strings, to avoid strings being changed by Attribute-Value
normalisation\footnote{\url{https://www.w3.org/TR/REC-xml/\#AVNormalize}} that
is part of the XML specification.
The following attributes are supported for \texttt{<Param>}:
\noindent {\bf3.3.1.1} \texttt{name}\label{sec:3.3.1.1} --- A simple utilitarian
name. This name may or may not have significance to subscribing clients.
\noindent {\bf3.3.1.2} \texttt{value}\label{sec:3.3.1.2} --- A string representing
the value in question. No range or type checking of implied numbers is
performed.
\noindent {\bf3.3.1.3} \texttt{unit}\label{sec:3.3.1.3} --- The unit for
interpreting \texttt{value}. See \S4.4 of \citep{2019ivoa.spec.1021O}
%\citep{std:VOTABLE}
which relies on VOUnits \citep{2014ivoa.spec.0523D}.
\noindent {\bf3.3.1.4} \texttt{ucd}\label{sec:3.3.1.4} --- A UCD
\citep{2018ivoa.spec.0527P}
%\citep{std:UCD}
expression characterizing the nature of the \texttt{<Param>}.
\noindent {\bf3.3.1.5} \texttt{dataType}\label{sec:3.3.1.5} --- A string specifying
the data type of the \texttt{<Param>}. Allowed values are ``string'', ``int'', or
``float'', with the default being ``string''.
\begin{itemize}
\item For \texttt{dataType=float}, the value must contain a possibly signed decimal
or floating point number, possibly embedded in whitespace; it may also be
$\pm$nan or $\pm$inf. If the value cannot be parsed this way, for example null
string, it may return zero or NaN, but no exception should be thrown.
\item For \texttt{dataType=int}, the value must contain a possibly signed decimal
number, possibly embedded in whitespace. Conversion of floating point numbers to
integers truncates (towards zero). If the value cannot be parsed this way, for
example null string, it will return zero, and no exception should be thrown.
\end{itemize}
\noindent {\bf3.3.1.6} \texttt{utype}\label{sec:3.3.1.6} --- A \texttt{utype} defines
this \texttt{<Param>} as part of a larger data structure, such as one of the IVOA
standard data models. For more details, read the corresponding IVOA
page\footnote{\url{http://www.ivoa.net/cgi-bin/twiki/bin/view/IVOA/Utypes}}.
For example, here are three values from a GCN \citep{bib04} notice:
\begin{lstlisting}
TRIGGER_NUM = 114299 RATE_SIGNIF = 20.49 GRB_INTEN = 73288
\end{lstlisting}
In VOEvent, these can be represented as:
\begin{lstlisting}
<Param name="TRIGGER_NUM" value="114299" ucd="meta.id" />
<Param name="RATE_SIGNIF" value="20.49" ucd="stat.snr" dataType="float">
<Description>Best significance after trying all algorithms</Description>
<Reference uri="http://gcn.gsfc.nasa.gov/swift.html"/>
</Param>
<Param name="GRB_INTEN" value="73288" ucd="phot.count" dataType="int"/>
\end{lstlisting}
\subsubsection{\texttt{<Group>} --- collection of related Params}
\label{sec:3.3.2}
\texttt{<Group>} provides a simple mechanism for associating several \texttt{<Param>}
(and/or \texttt{<Reference>}) elements, for instance, an error with a measurement.
\texttt{<Group>}s may NOT be nested. \texttt{<Group>} elements may have a \texttt{name}
attribute, and unlike VOTable usage, may also have a \texttt{type} attribute:
\noindent {\bf3.3.2.1} \texttt{name}\label{sec:3.3.2.1} --- A simple name such as
in \S\ref{sec:3.3.1.1}.
\noindent {\bf3.3.2.2} \texttt{type}\label{sec:3.3.2.2} --- A string that can be
used to build data structures, for example a Group with type ``complex'' might
have Params called ``real'' and ``imag'' for the two components of a complex
number.
In a GCN notice, for example, we might see this line:
\begin{lstlisting}
GRB_INTEN: 73288 [cnts] Peak=1310 [cnts/sec]
\end{lstlisting}
which could be expressed with one Param with a Value element, and the other with
a Value attribute:
\begin{lstlisting}
<Group type="GRB_INTEN">
<Param name="cnts" ucd="phot.count" dataType="int">
<Value>73288</Value>
</Param>
<Param name="peak" value="1310" ucd="arith.rate;phot.count"
dataType="float"/>
</Group>
\end{lstlisting}
Note also that there cannot be Groups within Groups: a Group may only contain
Params and not Groups or Tables; a Table may only contain Params and Fields and
not Groups or Tables. There are rules of uniqueness for Params, Groups, Fields
and Tables in VOEvent:
\begin{itemize}
\item Each Param and Field must have a name. A Group or Table without a name is
equivalent to having a name which is the null string.
\item Names must be unique within the set of those Params that are not in a
Group or Table.
\item Names must be unique for the set of Params and Fields within a given Group
or Table.
\item Groups and Tables must have unique names: this means that only one Group
or Table can be nameless.
\end{itemize}
\subsubsection{\texttt{<Table>} --- simple tabular data}
\label{sec:3.3.3}
This element is intended for a short and simple table, and re-uses the ideas and
syntax of the IVOA VOTable, but simplified and streamlined: this is appropriate
because complex tables can be written as full VOTable and linked from the
VOEvent. Specifically, these simplifications are: no support for hierarchy of
tables (RESOURCE); no internal references (FieldRef and ParamRef); no provision
for binary data, only XML; table cells can only be string, float, or int, in
place of the arrays of 12 possible types and extensions; no formatting
information contained in the Table, nor domain of the data (VALUES); no
referencing between cells; there is no INFO element.
There are five elements defined in this subsection: Table, Field, Data, TR, TD.
A \texttt{<Table>} element can contain a sequence of \texttt{<Field>} elements, one
for each column of the table, and \texttt{<Param>} elements for scalar information
about the table. There is then a single \texttt{<Data>} element that contains the
data of the table, which is represented as a sequence of table rows, which are
\texttt{<TR>} elements, each containing a sequence of \texttt{<TD>} elements for the
table cells. For a full table, where every cell has a value, the number of \texttt{
<TD>} elements in each row must be the same as the number of \texttt{<Field>}
elements. There is then a 1-to-1 correspondence between them for each row.
The Table can contain \texttt{<Description>} and \texttt{<Reference>} elements to add
documentation; the \texttt{<Field>} elements can also contain these. Thus the \texttt{
<Table>} can contain, in order, an optional \texttt{<Description>} and \texttt{
<Reference>}, then a sequence of one or more \texttt{<Field>} elements, then a \texttt{
<Data>} element. The \texttt{<Field>} element can also contain optional \texttt{
<Description>} and \texttt{<Reference>} and nothing else. The \texttt{<Data>} element
can contain only \texttt{<TR>} elements, each of which can contain only \texttt{<TD>}
elements. The following explains the attributes that are allowed for these five
elements.
The following attributes are supported for \texttt{<Table>}:
\noindent {\bf3.3.3.1} \texttt{name}\label{sec:3.3.3.1} --- A simple utilitarian
name that may be used for identification or presentation purposes. This name
may or may not have significance to subscribing clients.
\noindent {\bf3.3.3.2} \texttt{type}\label{sec:3.3.3.2} --- A string representing
the type of the Table, that consumers can use for presentation or parsing. For
example, a table of type ``spectralLines'' could mean to some community to
expect columns (i.e., the \texttt{<Field>}s) named ``wavelength'', ``width'',
``name'' to define spectral lines.
The \texttt{<Field>} element defines the semantic nature of a Table column, and is
structured similarly to the \texttt{<Param>} element of section \ref{sec:3.3.1}.
The following attributes are supported for \texttt{<Field>}, similarly to the \texttt{
<Param>} definition above:
\noindent {\bf3.3.3.3} \texttt{name}\label{sec:3.3.3.3} --- A simple utilitarian
name that may be used elsewhere in the packet. This name may or may not have
significance to subscribing clients.
\noindent {\bf3.3.3.4} \texttt{unit}\label{sec:3.3.3.4} --- The unit for
interpreting the values as given in the \texttt{<TD>} table cells. See \S4.4 of
\citep{2019ivoa.spec.1021O}, which relies on \citep{2014ivoa.spec.0523D}.
\noindent {\bf3.3.3.5} \texttt{ucd}\label{sec:3.3.3.5} --- A UCD
\citep{2018ivoa.spec.0527P} expression characterizing the nature of the data in
this table column.
\noindent {\bf3.3.3.6} \texttt{dataType}\label{sec:3.3.3.6} --- A string specifying
the data type of the table column. Allowed values are ``string'', ``int'', or
``float'', with the default being ``string''.
\noindent {\bf3.3.3.7} \texttt{utype}\label{sec:3.3.3.7} --- A utype (see \S4.6 of
\citep{2019ivoa.spec.1021O}) defines this \texttt{<Param>} as part of a larger data
structure, such as one of the IVOA standard data models.
The following is an example of a Table element. Note the \texttt{dataType}
attribute that is used to interpret the values in the table cells.
\begin{lstlisting}[language=XML]
<Table>
<Description>Individual Moduli and Distances for NGC 0931 from
NED</Description>
<Field name="(m-M)" unit="mag" ucd="phot.mag.distMod" dataType="float"/>
<Field name="err(m-M)" unit="mag" ucd="phot.mag.distMod;stat.err"
dataType="float"/>
<Field name="D" unit="Mpc" ucd="pos.distance dataType="float"/>
<Field name="REFCODE" ucd="meta.bib.bibcode"/>
<Data>
<TR><TD>33.16</TD><TD>0.38</TD><TD>42.9</TD>
<TD>1997ApJS..109..333W</TD></TR>
<TR><TD>33.32</TD><TD>0.38</TD><TD>46.1</TD>
<TD>1997ApJS..109..333W</TD></TR>
<TR><TD>33.51</TD><TD>0.48</TD><TD>50.4</TD>
<TD>2009ApJS..182..474S</TD></TR>
</Data>
</Table>
\end{lstlisting}
\subsection{\texttt{<WhereWhen>} --- Space-Time Coordinates}
\label{sec:3.4}
A VOEvent packet will typically include information about where in the sky and
when in time an event was detected, and from what location, along with spatial
and temporal coordinate systems and errors. If either the spatial or temporal
locators are absent, it is to be assumed that the information is either unknown
or irrelevant. VOEvent v2.1 borrows the syntax of the IVOA Space-Time Coordinate
(STC) specification version 1.30 or later; the \texttt{<WhereWhen>} element may
reference an STC \citep{2007ivoa.spec.1030R} \texttt{<ObsDataLocation>} element to
provide a sky location and time for the event. VOEvent publishers should
construct expressions that concisely provide all information that is
scientifically significant to the event, and no more than that. See
\S\ref{sec:4} for an example of usage.
STC expressions are used to locate the physical phenomena associated with a
VOEvent alert in both time and space as described below. The \texttt{
<ObsDataLocation>} element is a combination of information describing the
location of an observation in the sky along with information describing the
location of the observatory from which that observation was made. Both the sky
and the observatory are in constant motion, and STC inextricably relates spatial
and temporal information.
\begin{lstlisting}[language=XML]
<WhereWhen>
<ObsDataLocation>
<ObservatoryLocation/>
<ObservationLocation/>
</ObsDataLocation>
</WhereWhen>
\end{lstlisting}
\subsubsection{ObservationLocation}
\label{sec:3.4.1}
The \texttt{<ObservationLocation>} defines the location of the event, whereas
the \texttt{<ObservatoryLocation>} specifies the location of the observatory,
for which that event location is valid. It should contain a link to a
coordinate system, \texttt{<AstroCoordSystem>}, as well as the actual coordinates
of the event, \texttt{<AstroCoords>}, containing a reference back to the
coordinate system specification. For example:
\begin{lstlisting}
<ObservationLocation>
<AstroCoordSystem id="UTC-FK5-GEO" />
<AstroCoords coord_system_id="UTC-FK5-GEO">
<Time unit="s">
<TimeInstant>
<ISOTime>2004-07-15T08:23:56</ISOTime>
</TimeInstant>
<Error>2</Error>
</Time>
<Position2D unit="deg">
<Value2>
<C1>148.88821</C1>
<C2>69.06529</C2>
</Value2>
<Error2Radius>0.03</Error2Radius>
</Position2D>
</AstroCoords>
</ObservationLocation>
\end{lstlisting}
Specifying errors is optional but recommended for both time and space
components.
The \texttt{<AstroCoords>} element has a \texttt{coord\_system\_id} attribute and the
\texttt{<AstroCoordSystem>} has a \texttt{id} attribute. The value of both of these
should be identical, and represent the space-time coordinate system that will be
used for the event position and time.
A \texttt{coord\_system\_id} and \texttt{id} are built from a time part, a space part,
and a ``center'' specification, concatenated in that order and separated by
hyphens. Astronomical coordinate systems are extremely varied, but all VOEvent
subscribers should be prepared to handle coordinates expressed as combinations
of these basic defaults:
\begin{itemize}
\item The time part can be \emph{UTC} (Coordinated Universal Time
\citep{bib26}), \emph{TT} (Terrestrial Time, currently 65.184 seconds ahead of
UTC), \emph{GPS} time, or \emph{TDB} (Barycentric Dynamical Time). The full list
of valid timescales is available as an IVOA vocabulary:
\url{https://www.ivoa.net/rdf/timescale}
\item The space part can be equatorial coordinates (right ascension and
declination) expressed in either the \emph{ICRS} or \emph{FK5} coordinate
systems. The list of valid reference frames is available as an IVOA vocabulary:
\url{https://www.ivoa.net/rdf/refframe}
\item The center specification can be \emph{TOPO} (i.e., the location of the
observatory), \emph{GEO} (geocentric coordinates), or \emph{BARY} (relative to
the barycenter of the solar system). The full list of valid reference positions
is available as an IVOA vocabulary: \url{https://www.ivoa.net/rdf/refposition}
\end{itemize}
It is assumed that the center reference position (origin) is the same for both
space and time coordinates. That means, for instance, that \emph{BARY} should
only be paired with \emph{TDB} (and vice-versa). See the STC specification
\citep{2007ivoa.spec.1030R} %\citep{std:STC}
for further discussion. The list of \texttt{<AstroCoordSystem>} defaults that
VOEvent brokers and clients may be called upon to understand is: \\
\emph{TT-ICRS-TOPO, UTC-ICRS-TOPO, TT-FK5-TOPO, UTC-FK5-TOPO, GPS-ICRS-TOPO,
GPS-FK5-TOPO, TT-ICRS-GEO, UTC-ICRS-GEO, TT-FK5-GEO, UTC-FK5-GEO, GPS-ICRS-GEO,
GPS-FK5-GEO, TDB-ICRS-BARY, TDB-FK5-BARY}.
The STC specification, in particular \texttt{<ObsDataLocation>} and its contained
elements, allows more exotic coordinate systems (for example, describing
planetary surfaces). Further description of how VOEvent packets might be
constructed to convey such information to subscribers is outside the scope of
this document. As with other elements of an alert packet, subscribers must be
prepared to understand coordinates expressing the science and experimental
design pertinent to the particular classes of sky transients that are of
interest.
In short, subscribers are responsible for choosing what VOEvent packets and thus
\texttt{coord\_system\_id} values they will accept. Further, subscribers may choose
not to distinguish between coordinate systems that are only subtly different for
their purposes --- for instance between \emph{ICRS} or \emph{FK5}, or between
\emph{TOPO} or \emph{GEO}. As software determines whether a packet's \texttt{
coord\_system\_id} describes a supported coordinate system, the question is also
what accuracy is required and what coordinate transformations may be implicitly
or explicitly performed to that level of accuracy.
A similar question faces the authors of VOEvent packets, who must make a
judicious choice between the available coordinate system options to meet the
expected scientific needs of consumers of those packets. If a detailed or high
accuracy coordinate system selection is not needed, \emph{\bf UTC-ICRS-TOPO}
would be a good choice as an interoperability standard.
\subsubsection{ObservatoryLocation}
\label{sec:3.4.2}
The \texttt{<ObservatoryLocation>} element is used to express the location from
which the observation being described was made. It is a required element for
expressing topocentric coordinate systems.
An instance of \texttt{<ObservatoryLocation>} may take two forms. In the first,
an observatory location may be taken from a library, for example:
\begin{lstlisting}
<ObservatoryLocation id="Palomar" />
\end{lstlisting}
The \texttt{id} here indicates the name of the observatory, other examples being:
Keck, KPNO, JCMT, MMTO, VLA, etc., or it may indicate one of the following
generic observatory locations:
\begin{itemize}
\item \emph{GEOSURFACE} - any location on the surface of the earth
\item \emph{GEOLEO} - any location in Low Earth Orbit (altitude<700 km)
\item \emph{GEOGSO} - any location within Geostationary orbit altitude
\item \emph{GEONBH} - any location within 50,000 km of the geocenter
\item \emph{GEOLUN} - any location within the Moon's orbit
\end{itemize}
For example, a packet might contain the following \texttt{<ObservatoryLocation>}
to indicate that the coordinates expressed in the \texttt{<WhereWhen>} element are
located with an accuracy comprising the Earth's surface:
\begin{lstlisting}[language=XML]
<ObservatoryLocation id="GEOSURFACE" />
\end{lstlisting}
The second option for \texttt{<ObservatoryLocation>} is that an observatory can be
located by specifying the actual coordinate values of longitude, latitude and
altitude on the surface of the Earth. Note the use of a coordinate system for
the surface of the Earth (UTC-GEOD-TOPO) is natural for an observatory location,
whereas coordinate systems in the previous section are for astronomical events.
\begin{lstlisting}[language=XML]
<ObservatoryLocation id="KPNO">
<AstroCoordSystem id="UTC-GEOD-TOPO" />
<AstroCoords coord_system_id="UTC-GEOD-TOPO">
<Position3D>
<Value3>
<C1 pos_unit="deg">248.4056</C1>
<C2 pos_unit="deg">31.9586</C2>
<C3 pos_unit="m">2158</C3>
</Value3>
</Position3D>
</AstroCoords>
</ObservatoryLocation>
\end{lstlisting}
Each \texttt{C1}, \texttt{C2} and \texttt{C3} element have \texttt{pos\_unit} and \texttt{ucd}
optional attributes.
\subsubsection{Parsing the WhereWhen Element}
\label{sec:3.4.3}
When parsing a VOEvent packet, the following pseudocode may be of use to provide
the time, the right ascension and the declination, if the author used
\emph{ICRS} spatial coordinates and \emph{UTC} time.
\begin{lstlisting}
Let x =/voe:VOEvent/WhereWhen/ObsDataLocation/ObservationLocation/AstroCoords
If x[@coord_system_id='UTC-ICRS-TOPO'] then
Let Time = x/Time/TimeInstant/ISOTime
Let RA = x/Position2D/Value2/C1
Let Dec = x/Position2D/Value2/C2
\end{lstlisting}
The coordinate system is first checked to verify that it is set to a specific
value(s), \emph{UTC-ICRS-TOPO}. In practice, a subscriber may not care about the
difference between \emph{ICRS} and \emph{FK5} (of the order of 0.01'') or
between \emph{TOPO} and \emph{GEO} (in terms of timing, this is of the order of
25 ms for ground-based and low-earth-orbit observatories). Software may be
written to simply accept anything that contains \emph{ICRS} or \emph{FK5},
\emph{TOPO} or \emph{GEO}.
\subsubsection{Solar System Events}
\label{sec:3.4.4}
Solar system events include Solar events and planetary events.
Solar events have similar requirement as astronomical events in terms of
Observatory and Observation location but are using a different reference frames.
The following coordinate systems are recognised for solar event data:
\begin{itemize}
\item \emph{UTC-HPC-TOPO} --- Cartesian helio-projective coordinates (solar disk)
\item \emph{UTC-HPR-TOPO} --- Polar helio-projective coordinates (coronal events)
\item \emph{UTC-HGS-TOPO} --- Stonyhurst heliographic coordinates
\item \emph{UTC-HGC-TOPO} --- Carrington heliographic coordinates
\end{itemize}
What this means is that these coordinate combinations will be supported in the
library and that, hence, use of VOEvent by the solar research community is
supported. It does not imply, of course, that all VOEvent participants are
expected to recognise and handle these solar coordinates --- nor, for that
matter, that solar subscribers be able to handle equatorial coordinates.
Planetary events (including events at Earth, in a global solar system context,
e.g., for Space Weather or Near Earth Objects) have specific requirements that
have been discussed by \citet{2018arXiv181112680C}. Since many solar system body
reference frames exist, we do not list them here.
A \texttt{PositionName} element is available in the \texttt{
ObservationLocation/AstroCoords} element. It is used to refer to named objects,