Skip to content

Commit

Permalink
pointing schema: rename (ra, dec) (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vidushi-GitHub committed Jun 7, 2024
1 parent b0afdb4 commit 4784a02
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions gcn/notices/core/Pointing.example.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://gcn.nasa.gov/schema/main/gcn/notices/core/Pointing.schema.json",
"ra": 120.5,
"dec": 30.2,
"ra_pointing": 120.5,
"dec_pointing": 30.2,
"roll": -12.8,
"position_angle": 23.7,
"attitude_quarternion": [0.2, 0.3, 0.4, 0.5],
Expand Down
8 changes: 4 additions & 4 deletions gcn/notices/core/Pointing.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"$comment": "Providers should $ref this schema directly but Attitudes.schema.json instead.",
"type": "object",
"properties": {
"ra": {
"ra_pointing": {
"type": "number",
"description": "RA pointing of the instrument Z axis"
"description": "RA pointing of the instrument Z axis. ICRS declination [deg], utilizes the J2000 epoch and an equatorial coordinate system."
},
"dec": {
"dec_pointing": {
"type": "number",
"description": "Dec pointing of the instrument Z axis"
"description": "Dec pointing of the instrument Z axis. ICRS declination [deg], utilizes the J2000 epoch and an equatorial coordinate system."
},
"roll": {
"type": "number",
Expand Down

0 comments on commit 4784a02

Please sign in to comment.