|
Field | table = Field(dtype=str, default="raw", doc="Name of table") |
|
DictField | columns |
|
ListField | unique |
|
ListField | visit |
|
Field | ignore = Field(dtype=bool, default=False, doc="Ignore duplicates in the table?") |
|
Field | permissions = Field(dtype=int, default=0o664, doc="Permissions mode for registry; 0o664 = rw-rw-r--") |
|
Configuration for the RegisterTask
Definition at line 223 of file ingest.py.
◆ columns
DictField lsst.pipe.tasks.ingest.RegisterConfig.columns |
|
static |
Initial value:= DictField(keytype=str, itemtype=str, doc="List of columns for raw table, with their types",
itemCheck=lambda x: x in ("text", "int", "double"),
default={'object': 'text',
'visit': 'int',
'ccd': 'int',
'filter': 'text',
'date': 'text',
'taiObs': 'text',
'expTime': 'double',
},
)
Definition at line 226 of file ingest.py.
◆ ignore
Field lsst.pipe.tasks.ingest.RegisterConfig.ignore = Field(dtype=bool, default=False, doc="Ignore duplicates in the table?") |
|
static |
◆ permissions
Field lsst.pipe.tasks.ingest.RegisterConfig.permissions = Field(dtype=int, default=0o664, doc="Permissions mode for registry; 0o664 = rw-rw-r--") |
|
static |
◆ table
Field lsst.pipe.tasks.ingest.RegisterConfig.table = Field(dtype=str, default="raw", doc="Name of table") |
|
static |
◆ unique
ListField lsst.pipe.tasks.ingest.RegisterConfig.unique |
|
static |
Initial value:= ListField(dtype=str, doc="List of columns to be declared unique for the table",
default=["visit", "ccd"])
Definition at line 237 of file ingest.py.
◆ visit
ListField lsst.pipe.tasks.ingest.RegisterConfig.visit |
|
static |
Initial value:= ListField(dtype=str, default=["visit", "object", "date", "filter"],
doc="List of columns for raw_visit table")
Definition at line 239 of file ingest.py.
The documentation for this class was generated from the following file: