Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-45499: Arrange twilight markers into Scheduler topics #892

Merged
merged 3 commits into from
Aug 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/news/interface_changes/DM-45499.scheduler.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add civil, nautical and astronomical twilight information to the generalInfo event.
1 change: 1 addition & 0 deletions doc/news/interface_changes/DM-45499.scheduler.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add additional metadata to the target event.
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,13 @@
<Units>unitless</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>blockId</EFDB_Name>
<Description>Target block id.</Description>
<IDL_Type>long</IDL_Type>
<Units>unitless</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>requestTime</EFDB_Name>
<Description>Time on target.</Description>
Expand Down Expand Up @@ -156,6 +163,20 @@
<Units>deg</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>alt</EFDB_Name>
<Description>Altitude of the target.</Description>
<IDL_Type>double</IDL_Type>
<Units>deg</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>az</EFDB_Name>
<Description>Azimuth of the target.</Description>
<IDL_Type>double</IDL_Type>
<Units>deg</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>skyAngle</EFDB_Name>
<Description>Sky position angle.</Description>
Expand Down Expand Up @@ -361,6 +382,30 @@
<Units>unitless</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>schedulerNote</EFDB_Name>
<Description>Note about the target.</Description>
<IDL_Type>string</IDL_Type>
<IDL_Size>1</IDL_Size>
<Units>unitless</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>targetName</EFDB_Name>
<Description>Target name.</Description>
<IDL_Type>string</IDL_Type>
<IDL_Size>1</IDL_Size>
<Units>unitless</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>snapshotUri</EFDB_Name>
<Description>The uri of the most recent scheduler snapshopt.</Description>
<IDL_Type>string</IDL_Type>
<IDL_Size>1</IDL_Size>
<Units>unitless</Units>
<Count>1</Count>
</item>
</SALEvent>
<SALEvent>
<Subsystem>Scheduler</Subsystem>
Expand Down Expand Up @@ -1075,6 +1120,48 @@
<Units>second</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>twilightCivilEvening</EFDB_Name>
<Description>Evening civil twilight (sun alt=-6deg, after sunset) in UTC timestamp (seconds).</Description>
<IDL_Type>double</IDL_Type>
<Units>second</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>twilightCivilMorning</EFDB_Name>
<Description>Morning civil twilight (sun alt=-6deg, before sunrise) in UTC timestamp (seconds).</Description>
<IDL_Type>double</IDL_Type>
<Units>second</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>twilightNauticalEvening</EFDB_Name>
<Description>Evening nautical twilight (sun alt=-12deg, after sunset) in UTC timestamp (seconds).</Description>
<IDL_Type>double</IDL_Type>
<Units>second</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>twilightNauticalMorning</EFDB_Name>
<Description>Morning nautical twilight (sun alt=-12deg, before sunrise) in UTC timestamp (seconds).</Description>
<IDL_Type>double</IDL_Type>
<Units>second</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>twilightAstronomicalEvening</EFDB_Name>
<Description>Evening astronomical twilight (sun alt=-18deg, after sunset) in UTC timestamp (seconds).</Description>
<IDL_Type>double</IDL_Type>
<Units>second</Units>
<Count>1</Count>
</item>
<item>
<EFDB_Name>twilightAstronomicalMorning</EFDB_Name>
<Description>Morning astronomical twilight (sun alt=-18deg, before sunrise) in UTC timestamp (seconds).</Description>
<IDL_Type>double</IDL_Type>
<Units>second</Units>
<Count>1</Count>
</item>
</SALEvent>
<SALEvent>
<Subsystem>Scheduler</Subsystem>
Expand Down
Loading