Skip to content
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
4 changes: 3 additions & 1 deletion docs/tbls/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
| [public.alembic_version](public.alembic_version.md) | 1 | | BASE TABLE |
| [public.cluster](public.cluster.md) | 10 | | BASE TABLE |
| [public.filter_name](public.filter_name.md) | 4 | | BASE TABLE |
| [public.fluxstd](public.fluxstd.md) | 61 | | BASE TABLE |
| [public.fluxstd](public.fluxstd.md) | 63 | | BASE TABLE |
| [public.input_catalog](public.input_catalog.md) | 9 | | BASE TABLE |
| [public.pfs_arm](public.pfs_arm.md) | 4 | | BASE TABLE |
| [public.proposal](public.proposal.md) | 15 | | BASE TABLE |
Expand Down Expand Up @@ -183,6 +183,8 @@ erDiagram
double_precision teff_gspphot_lower
double_precision teff_gspphot_upper
boolean is_fstar_gaia
boolean is_gc_neighbor
boolean is_dense_region
}
"public.input_catalog" {
varchar input_catalog_name
Expand Down
2 changes: 2 additions & 0 deletions docs/tbls/public.filter_name.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ erDiagram
double_precision teff_gspphot_lower
double_precision teff_gspphot_upper
boolean is_fstar_gaia
boolean is_gc_neighbor
boolean is_dense_region
}
"public.target" {
bigint target_id
Expand Down
6 changes: 5 additions & 1 deletion docs/tbls/public.fluxstd.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
| Name | Type | Default | Nullable | Children | Parents | Comment |
| ---- | ---- | ------- | -------- | -------- | ------- | ------- |
| fluxstd_id | bigint | nextval('fluxstd_fluxstd_id_seq'::regclass) | false | | | Unique identifier for each flux standard star |
| obj_id | bigint | | false | | | Gaia EDR3 sourceid |
| obj_id | bigint | | false | | | source_id (e.g., Gaia EDR3, DR3, etc.) |
| ra | double precision | | false | | | RA (ICRS, degree) |
| dec | double precision | | false | | | Dec (ICRS, degree) |
| epoch | varchar | | true | | | Epoch (e.g., J2000.0, J2015.5, etc.) |
Expand Down Expand Up @@ -67,6 +67,8 @@
| teff_gspphot_lower | double precision | | true | | | Lower confidence level (16%) of effective temperature inferred by GSP-phot Aeneas [K] |
| teff_gspphot_upper | double precision | | true | | | Upper confidence level (84%) of effective temperature inferred by GSP-phot Aeneas [K] |
| is_fstar_gaia | boolean | | true | | | Flag for F-star from Gaia (Teff=6000-7500K if True) |
| is_gc_neighbor | boolean | | true | | | Flag for globular cluster neighbor |
| is_dense_region | boolean | | true | | | Flag for dense stellar region |

## Constraints

Expand Down Expand Up @@ -170,6 +172,8 @@ erDiagram
double_precision teff_gspphot_lower
double_precision teff_gspphot_upper
boolean is_fstar_gaia
boolean is_gc_neighbor
boolean is_dense_region
}
"public.target_type" {
integer target_type_id
Expand Down
2 changes: 2 additions & 0 deletions docs/tbls/public.input_catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ erDiagram
double_precision teff_gspphot_lower
double_precision teff_gspphot_upper
boolean is_fstar_gaia
boolean is_gc_neighbor
boolean is_dense_region
}
"public.sky" {
bigint sky_id
Expand Down
2 changes: 2 additions & 0 deletions docs/tbls/public.target_type.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ erDiagram
double_precision teff_gspphot_lower
double_precision teff_gspphot_upper
boolean is_fstar_gaia
boolean is_gc_neighbor
boolean is_dense_region
}
"public.sky" {
bigint sky_id
Expand Down
Loading