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-15180: Add coord covariance to hsc schema #133

Merged
merged 1 commit into from
Sep 15, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
126 changes: 126 additions & 0 deletions yml/hsc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,24 @@ tables:
description: Fiducial ICRS Right Ascension of centroid used for database indexing
mysql:datatype: DOUBLE
fits:tunit: deg
- name: coord_decErr
"@id": "#Object.coord_decErr"
datatype: float
description: Error in fiducial ICRS Declination of centroid.
mysql:datatype: FLOAT
fits:tunit: deg
- name: coord_raErr
"@id": "#Object.coord_raErr"
datatype: float
description: Error in fiducial ICRS Right Ascension of centroid.
mysql:datatype: FLOAT
fits:tunit: deg
- name: coord_ra_dec_Cov
"@id": "#Object.coord_ra_dec_Cov"
datatype: float
description: Covariance between fiducial ICRS Right Ascension and Declination of centroid.
mysql:datatype: FLOAT
fits:tunit: deg^2
- name: deblend_nChild
"@id": "#Object.deblend_nChild"
datatype: int
Expand Down Expand Up @@ -575,6 +593,12 @@ tables:
description: Position in declination, measured on g-band.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: g_decErr
"@id": "#Object.g_decErr"
datatype: float
description: Error in declination, measured on g-band.
mysql:datatype: FLOAT
fits:tunit: deg
- name: g_decl
"@id": "#Object.g_decl"
datatype: double
Expand Down Expand Up @@ -1164,6 +1188,18 @@ tables:
description: Position in right ascension, measured on g-band.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: g_raErr
"@id": "#Object.g_raErr"
datatype: float
description: Error in right ascension, measured on g-band.
mysql:datatype: FLOAT
fits:tunit: deg
- name: g_ra_dec_Cov
"@id": "#Object.g_ra_dec_Cov"
datatype: float
description: Covariance between right ascension and declination, measured on g-band.
mysql:datatype: FLOAT
fits:tunit: deg^2
- name: i_ap03Flux
"@id": "#Object.i_ap03Flux"
datatype: double
Expand Down Expand Up @@ -1542,6 +1578,12 @@ tables:
description: Position in declination, measured on i-band.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: i_decErr
"@id": "#Object.i_decErr"
datatype: float
description: Error in declination, measured on i-band.
mysql:datatype: FLOAT
fits:tunit: deg
- name: i_decl
"@id": "#Object.i_decl"
datatype: double
Expand Down Expand Up @@ -2131,6 +2173,18 @@ tables:
description: Position in right ascension, measured on i-band.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: i_raErr
"@id": "#Object.i_raErr"
datatype: float
description: Error in right ascension, measured on i-band.
mysql:datatype: FLOAT
fits:tunit: deg
- name: i_ra_dec_Cov
"@id": "#Object.i_ra_dec_Cov"
datatype: float
description: Covariance between right ascension and declination, measured on i-band.
mysql:datatype: FLOAT
fits:tunit: deg^2
- name: r_ap03Flux
"@id": "#Object.r_ap03Flux"
datatype: double
Expand Down Expand Up @@ -2509,6 +2563,12 @@ tables:
description: Position in declination, measured on r-band.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: r_decErr
"@id": "#Object.r_decErr"
datatype: float
description: Error in declination, measured on r-band.
mysql:datatype: FLOAT
fits:tunit: deg
- name: r_decl
"@id": "#Object.r_decl"
datatype: double
Expand Down Expand Up @@ -3098,6 +3158,18 @@ tables:
description: Position in right ascension, measured on r-band.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: r_raErr
"@id": "#Object.r_raErr"
datatype: float
description: Error in right ascension, measured on r-band.
mysql:datatype: FLOAT
fits:tunit: deg
- name: r_ra_dec_Cov
"@id": "#Object.r_ra_dec_Cov"
datatype: float
description: Covariance between right ascension and declination, measured on r-band.
mysql:datatype: FLOAT
fits:tunit: deg^2
- name: y_ap03Flux
"@id": "#Object.y_ap03Flux"
datatype: double
Expand Down Expand Up @@ -3476,6 +3548,12 @@ tables:
description: Position in declination, measured on y-band.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: y_decErr
"@id": "#Object.y_decErr"
datatype: float
description: Error in declination, measured on y-band.
mysql:datatype: FLOAT
fits:tunit: deg
- name: y_decl
"@id": "#Object.y_decl"
datatype: double
Expand Down Expand Up @@ -4065,6 +4143,18 @@ tables:
description: Position in right ascension, measured on y-band.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: y_raErr
"@id": "#Object.y_raErr"
datatype: float
description: Error in right ascension, measured on y-band.
mysql:datatype: FLOAT
fits:tunit: deg
- name: y_ra_dec_Cov
"@id": "#Object.y_ra_dec_Cov"
datatype: float
description: Covariance between right ascension and declination, measured on y-band.
mysql:datatype: FLOAT
fits:tunit: deg^2
- name: z_ap03Flux
"@id": "#Object.z_ap03Flux"
datatype: double
Expand Down Expand Up @@ -4443,6 +4533,12 @@ tables:
description: Position in declination, measured on z-band.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: z_decErr
"@id": "#Object.z_decErr"
datatype: float
description: Error in declination, measured on z-band.
mysql:datatype: FLOAT
fits:tunit: deg
- name: z_decl
"@id": "#Object.z_decl"
datatype: double
Expand Down Expand Up @@ -5032,6 +5128,18 @@ tables:
description: Position in right ascension, measured on z-band.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: z_raErr
"@id": "#Object.z_raErr"
datatype: float
description: Error in right ascension, measured on z-band.
mysql:datatype: FLOAT
fits:tunit: deg
- name: z_ra_dec_Cov
"@id": "#Object.z_ra_dec_Cov"
datatype: float
description: Covariance between right ascension and declination, measured on z-band.
mysql:datatype: FLOAT
fits:tunit: deg^2

- name: Source
"@id": "#Source"
Expand Down Expand Up @@ -5112,6 +5220,24 @@ tables:
description: Deprecated duplicate of dec.
mysql:datatype: DOUBLE
fits:tunit: deg
- name: raErr
"@id": "#Source.raErr"
datatype: float
description: Error in right ascension.
mysql:datatype: FLOAT
fits:tunit: deg
- name: decErr
"@id": "#Source.decErr"
datatype: float
description: Error in declination.
mysql:datatype: FLOAT
fits:tunit: deg
- name: ra_dec_Cov
"@id": "#Source.ra_dec_Cov"
datatype: float
description: Covariance between right ascension and declination.
mysql:datatype: FLOAT
fits:tunit: deg^2
- name: calibFlux
"@id": "#Source.calibFlux"
datatype: double
Expand Down