voevent.xml
2.79 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<voe:VOEvent ivorn="ivo://vopdc.obspm/VOEvent/#{{voevent_id}}"
role="observation" version="2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:voe="http://www.ivoa.net/xml/VOEvent/v2.0"
xsi:schemaLocation="http://www.ivoa.net/xml/VOEvent/v2.0 http://www.ivoa.net/xml/VOEvent/VOEvent-v2.0.xsd">
<Who>
<AuthorIVORN>ivo://psws/not_registered_yet</AuthorIVORN>
<Author>
<shortName>amateur</shortName>
<contactName>Pierre Le Sidaner</contactName>
<contactPhone>+33-1 40 51 20 82</contactPhone>
<contactEmail>pierre.lesidaner@obspm.fr</contactEmail>
</Author>
<Date>{{my_datetime}}</Date>
</Who>
<What>
<Description>{{my_list_description["what"]}}</Description>
{%- for key, value in my_list_what.items() %}
<Param name="{{key}}" value="{{value[0]}}" dataType="{{value[1]}}" ucd="{{value[2]}}" />
{%- endfor %}
{%- for group_param in my_list_groupname %}
<Group name={{my_groupname}}>
{%- for key, value in group_param.items() %}
<Param name="{{key}}" value="{{value[0]}}" dataType="{{value[1]}}" ucd="{{value[2]}}" />
{%- endfor %}
</Group>
{%- endfor %}
</What>
<WhereWhen>
<ObsDataLocation >
<ObservatoryLocation id="GEOSURFACE" >
<AstroCoordSystem id="UTC-GEOD-TOPO"/>
<AstroCoords coord_system_id="UTC-GEOD-TOPO">
<Position3D>
<ObservationLocation>
<AstroCoordSystem id="UTC-ICRS-TOPO" />
<AstroCoords coord_system_id="UTC-ICRS-TOPO">
<Time unit="s">
<TimeInstant>
<ISOTime>{{my_list_wherewhen_time["time_obs"]}}</ISOTime>
</TimeInstant>
</Time>
<Position2D unit="deg">
<Value2>
<C1>277.5794</C1>
<!-- RA -->
<C2>-62.3326</C2>
<!-- Dec -->
</Value2>
<Error2Radius>0.0500</Error2Radius>
</Position2D>
</AstroCoords>
</ObservationLocation>
</ObsDataLocation>
</WhereWhen>
<How>
<Description>{{my_list_how_instrument["instrument_name"]}}</Description>
<Reference uri="https://TBD.html" type="url" />
</How>
<Why>
<Concept>http://TBD</Concept>
<Description>Comet observation</Description>
<Name>{{my_list_wherewhen_target["target_name"]}}</Name>
</Why>
<Description>
</Description>
</voe:VOEvent>