lsst.pipe.tasks  21.0.0-53-ge728e5d5+3cb64fea8e
Static Public Attributes | List of all members
lsst.pipe.tasks.ingest.RegisterConfig Class Reference
Inheritance diagram for lsst.pipe.tasks.ingest.RegisterConfig:
lsst.pipe.tasks.ingestCalibs.CalibsRegisterConfig

Static Public Attributes

 table = Field(dtype=str, default="raw", doc="Name of table")
 
 columns
 
 unique
 
 visit
 
 ignore = Field(dtype=bool, default=False, doc="Ignore duplicates in the table?")
 
 permissions = Field(dtype=int, default=0o664, doc="Permissions mode for registry; 0o664 = rw-rw-r--")
 

Detailed Description

Configuration for the RegisterTask

Definition at line 223 of file ingest.py.

Member Data Documentation

◆ columns

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

lsst.pipe.tasks.ingest.RegisterConfig.ignore = Field(dtype=bool, default=False, doc="Ignore duplicates in the table?")
static

Definition at line 241 of file ingest.py.

◆ permissions

lsst.pipe.tasks.ingest.RegisterConfig.permissions = Field(dtype=int, default=0o664, doc="Permissions mode for registry; 0o664 = rw-rw-r--")
static

Definition at line 242 of file ingest.py.

◆ table

lsst.pipe.tasks.ingest.RegisterConfig.table = Field(dtype=str, default="raw", doc="Name of table")
static

Definition at line 225 of file ingest.py.

◆ unique

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

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: