ModeledParameters#

See also

ParameterList

Documentation for the ParameterList table

Table Documentation#

The below table is built directly from the schema and is included here from the astrodb-template-db documentation: source.

ModeledParameters#

The ModeledParameters table contains a range of derived/inferred parameters for sources listed in the Sources table. The combination of source, parameter, and reference is expected to be unique. Note that parameter is linked to the Parameters table.

Columns marked with an exclamation mark (❗️) may not be empty.

Column Name

Description

Datatype

Length

Units

UCD

❗️ source

Unique identifier for the source; links to Sources table

string

50

meta.id;meta.main

model

Model name

string

30

meta.id

❗️ parameter

Parameter name; links to ParameterList table

string

30

meta.id

❗️ value

Value of the parameter

double

stat.value;meta.modelled

error

Uncertainty of the parameter value

double

stat.error;meta.modelled

error_upper

Upper uncertainty of the parameter value

double

stat.error;meta.modelled

error_lower

Lower uncertainty of the parameter value

double

stat.error;meta.modelled

❗️ unit

Unit of the parameter value. Should be compatible with astropy.units.

string

30

meta.unit

comments

Free form comments

string

100

meta.note

❗️ reference

Reference; links to Publications table

string

30

meta.ref

Indexes#

Name

Columns

Description

PK_ModeledParameters

[‘#ModeledParameters.source’, ‘#ModeledParameters.model’, ‘#ModeledParameters.parameter’, ‘#ModeledParameters.reference’]

Primary key for ModeledParameters table

Foreign Keys#

Description

Columns

Referenced Columns

Link ModeledParameters source to Sources table

[‘#ModeledParameters.source’]

[‘#Sources.source’]

Link ModeledParameters reference to Publications table

[‘#ModeledParameters.reference’]

[‘#Publications.reference’]

Link ModeledParameters parameter to ParameterList table

[‘#ModeledParameters.parameter’]

[‘#ParameterList.parameter’]