|
def | openRegistry (self, directory, create=False, dryrun=False, name="registry.sqlite3") |
|
def | createTable (self, conn, table=None) |
|
def | check (self, conn, info, table=None) |
|
def | addRow (self, conn, info, dryrun=False, create=False, table=None) |
|
def | addVisits (self, conn, dryrun=False, table=None) |
|
Task that will generate the registry for the Mapper
Definition at line 262 of file ingest.py.
◆ addRow()
def lsst.pipe.tasks.ingest.RegisterTask.addRow |
( |
|
self, |
|
|
|
conn, |
|
|
|
info, |
|
|
|
dryrun = False , |
|
|
|
create = False , |
|
|
|
table = None |
|
) |
| |
Add a row to the file table (typically 'raw').
@param conn Database connection
@param info File properties to add to database
@param table Name of table in database
Definition at line 329 of file ingest.py.
◆ addVisits()
def lsst.pipe.tasks.ingest.RegisterTask.addVisits |
( |
|
self, |
|
|
|
conn, |
|
|
|
dryrun = False , |
|
|
|
table = None |
|
) |
| |
Generate the visits table (typically 'raw_visits') from the
file table (typically 'raw').
@param conn Database connection
@param table Name of table in database
Definition at line 353 of file ingest.py.
◆ check()
def lsst.pipe.tasks.ingest.RegisterTask.check |
( |
|
self, |
|
|
|
conn, |
|
|
|
info, |
|
|
|
table = None |
|
) |
| |
Check for the presence of a row already
Not sure this is required, given the 'ignore' configuration option.
Definition at line 310 of file ingest.py.
◆ createTable()
def lsst.pipe.tasks.ingest.RegisterTask.createTable |
( |
|
self, |
|
|
|
conn, |
|
|
|
table = None |
|
) |
| |
Create the registry tables
One table (typically 'raw') contains information on all files, and the
other (typically 'raw_visit') contains information on all visits.
@param conn Database connection
@param table Name of table to create in database
Definition at line 284 of file ingest.py.
◆ openRegistry()
def lsst.pipe.tasks.ingest.RegisterTask.openRegistry |
( |
|
self, |
|
|
|
directory, |
|
|
|
create = False , |
|
|
|
dryrun = False , |
|
|
|
name = "registry.sqlite3" |
|
) |
| |
Open the registry and return the connection handle.
@param directory Directory in which the registry file will be placed
@param create Clobber any existing registry and create a new one?
@param dryrun Don't do anything permanent?
@param name Filename of the registry
@return Database connection
Definition at line 268 of file ingest.py.
◆ ConfigClass
◆ placeHolder
string lsst.pipe.tasks.ingest.RegisterTask.placeHolder = '?' |
|
static |
◆ typemap
dictionary lsst.pipe.tasks.ingest.RegisterTask.typemap = {'text': str, 'int': int, 'double': float} |
|
static |
The documentation for this class was generated from the following file: