Apdb¶
- class lsst.dax.apdb.Apdb¶
- Bases: - ABC- Abstract interface for APDB. - Methods Summary - Return the number of DiaObjects that have only one DiaSource associated with them. - dailyJob()- Implement daily activities like cleanup/vacuum. - deleteInsertIds(ids)- Remove insert identifiers from the database. - getDiaForcedSources(region, object_ids, ...)- Return catalog of DiaForcedSource instances from a given region. - Returns catalog of DiaForcedSource instances from a given time period. - getDiaObjects(region)- Returns catalog of DiaObject instances from a given region. - getDiaObjectsHistory(ids)- Returns catalog of DiaObject instances from a given time period including the history of each DiaObject. - getDiaSources(region, object_ids, visit_time)- Return catalog of DiaSource instances from a given region. - getDiaSourcesHistory(ids)- Returns catalog of DiaSource instances from a given time period. - Return collection of insert identifiers known to the database. - Returns catalog of SSObject instances. - makeField(doc)- Make a - ConfigurableFieldfor Apdb.- makeSchema([drop])- Create or re-create whole database schema. - reassignDiaSources(idMap)- Associate DiaSources with SSObjects, dis-associating them from DiaObjects. - store(visit_time, objects[, sources, ...])- Store all three types of catalogs in the database. - storeSSObjects(objects)- Store or update SSObject catalog. - tableDef(table)- Return table schema definition for a given table. - Methods Documentation - abstract countUnassociatedObjects() int¶
- Return the number of DiaObjects that have only one DiaSource associated with them. - Used as part of ap_verify metrics. - Returns:
- countint
- Number of DiaObjects with exactly one associated DiaSource. 
 
- count
 - Notes - This method can be very inefficient or slow in some implementations. 
 - abstract dailyJob() None¶
- Implement daily activities like cleanup/vacuum. - What should be done during daily activities is determined by specific implementation. 
 - abstract deleteInsertIds(ids: Iterable[ApdbInsertId]) None¶
- Remove insert identifiers from the database. - Parameters¶- idsiterable[ApdbInsertId]
- Insert identifiers, can include items returned from - getInsertIds.
 - Notes - This method causes Apdb to forget about specified identifiers. If there are any auxiliary data associated with the identifiers, it is also removed from database (but data in regular tables is not removed). This method should be called after successful transfer of data from APDB to PPDB to free space used by history. 
- ids
 - abstract getDiaForcedSources(region: Region, object_ids: Iterable[int] | None, visit_time: DateTime) DataFrame | None¶
- Return catalog of DiaForcedSource instances from a given region. - Parameters:
- regionlsst.sphgeom.Region
- Region to search for DIASources. 
- object_idsiterable [ int], optional
- List of DiaObject IDs to further constrain the set of returned sources. If list is empty then empty catalog is returned with a correct schema. If - Nonethen returned sources are not constrained. Some implementations may not support latter case.
- visit_timelsst.daf.base.DateTime
- Time of the current visit. 
 
- region
- Returns:
- catalogpandas.DataFrame, orNone
- Catalog containing DiaSource records. - Noneis returned if- read_forced_sources_monthsconfiguration parameter is set to 0.
 
- catalog
- Raises:
- NotImplementedError
- May be raised by some implementations if - object_idsis- None.
 
 - Notes - This method returns DiaForcedSource catalog for a region with additional filtering based on DiaObject IDs. Only a subset of DiaSource history is returned limited by - read_forced_sources_monthsconfig parameter, w.r.t.- visit_time. If- object_idsis empty then an empty catalog is always returned with the correct schema (columns/types). If- object_idsis- Nonethen no filtering is performed and some of the returned records may be outside the specified region.
 - abstract getDiaForcedSourcesHistory(ids: Iterable[ApdbInsertId]) ApdbTableData¶
- Returns catalog of DiaForcedSource instances from a given time period. - Parameters:
- idsiterable[ApdbInsertId]
- Insert identifiers, can include items returned from - getInsertIds.
 
- ids
- Returns:
- dataApdbTableData
- Catalog containing DiaForcedSource records. In addition to all regular columns it will contain - insert_idcolumn.
 
- data
 - Notes - This part of API may not be very stable and can change before the implementation finalizes. 
 - abstract getDiaObjects(region: Region) DataFrame¶
- Returns catalog of DiaObject instances from a given region. - This method returns only the last version of each DiaObject. Some records in a returned catalog may be outside the specified region, it is up to a client to ignore those records or cleanup the catalog before futher use. - Parameters:
- regionlsst.sphgeom.Region
- Region to search for DIAObjects. 
 
- region
- Returns:
- catalogpandas.DataFrame
- Catalog containing DiaObject records for a region that may be a superset of the specified region. 
 
- catalog
 
 - abstract getDiaObjectsHistory(ids: Iterable[ApdbInsertId]) ApdbTableData¶
- Returns catalog of DiaObject instances from a given time period including the history of each DiaObject. - Parameters:
- idsiterable[ApdbInsertId]
- Insert identifiers, can include items returned from - getInsertIds.
 
- ids
- Returns:
- dataApdbTableData
- Catalog containing DiaObject records. In addition to all regular columns it will contain - insert_idcolumn.
 
- data
 - Notes - This part of API may not be very stable and can change before the implementation finalizes. 
 - abstract getDiaSources(region: Region, object_ids: Iterable[int] | None, visit_time: DateTime) DataFrame | None¶
- Return catalog of DiaSource instances from a given region. - Parameters:
- regionlsst.sphgeom.Region
- Region to search for DIASources. 
- object_idsiterable [ int], optional
- List of DiaObject IDs to further constrain the set of returned sources. If - Nonethen returned sources are not constrained. If list is empty then empty catalog is returned with a correct schema.
- visit_timelsst.daf.base.DateTime
- Time of the current visit. 
 
- region
- Returns:
- catalogpandas.DataFrame, orNone
- Catalog containing DiaSource records. - Noneis returned if- read_sources_monthsconfiguration parameter is set to 0.
 
- catalog
 - Notes - This method returns DiaSource catalog for a region with additional filtering based on DiaObject IDs. Only a subset of DiaSource history is returned limited by - read_sources_monthsconfig parameter, w.r.t.- visit_time. If- object_idsis empty then an empty catalog is always returned with the correct schema (columns/types). If- object_idsis- Nonethen no filtering is performed and some of the returned records may be outside the specified region.
 - abstract getDiaSourcesHistory(ids: Iterable[ApdbInsertId]) ApdbTableData¶
- Returns catalog of DiaSource instances from a given time period. - Parameters:
- idsiterable[ApdbInsertId]
- Insert identifiers, can include items returned from - getInsertIds.
 
- ids
- Returns:
- dataApdbTableData
- Catalog containing DiaSource records. In addition to all regular columns it will contain - insert_idcolumn.
 
- data
 - Notes - This part of API may not be very stable and can change before the implementation finalizes. 
 - abstract getInsertIds() list[lsst.dax.apdb.apdb.ApdbInsertId] | None¶
- Return collection of insert identifiers known to the database. - Returns:
- idslist[ApdbInsertId] orNone
- List of identifiers, they may be time-ordered if database supports ordering. - Noneis returned if database is not configured to store insert identifiers.
 
- ids
 
 - abstract getSSObjects() DataFrame¶
- Returns catalog of SSObject instances. - Returns:
- catalogpandas.DataFrame
- Catalog containing SSObject records, all existing records are returned. 
 
- catalog
 
 - classmethod makeField(doc: str) ConfigurableField¶
- Make a - ConfigurableFieldfor Apdb.- Parameters:
- docstr
- Help text for the field. 
 
- doc
- Returns:
- configurableFieldlsst.pex.config.ConfigurableField
- A - ConfigurableFieldfor Apdb.
 
- configurableField
 
 - abstract makeSchema(drop: bool = False) None¶
- Create or re-create whole database schema. - Parameters:
- dropbool
- If True then drop all tables before creating new ones. 
 
- drop
 
 - abstract reassignDiaSources(idMap: Mapping[int, int]) None¶
- Associate DiaSources with SSObjects, dis-associating them from DiaObjects. - Parameters:
- idMapMapping
- Maps DiaSource IDs to their new SSObject IDs. 
 
- idMap
- Raises:
- ValueError
- Raised if DiaSource ID does not exist in the database. 
 
 
 - abstract store(visit_time: DateTime, objects: DataFrame, sources: DataFrame | None = None, forced_sources: DataFrame | None = None) None¶
- Store all three types of catalogs in the database. - Parameters:
- visit_timelsst.daf.base.DateTime
- Time of the visit. 
- objectspandas.DataFrame
- Catalog with DiaObject records. 
- sourcespandas.DataFrame, optional
- Catalog with DiaSource records. 
- forced_sourcespandas.DataFrame, optional
- Catalog with DiaForcedSource records. 
 
- visit_time
 - Notes - This methods takes DataFrame catalogs, their schema must be compatible with the schema of APDB table: - column names must correspond to database table columns 
- types and units of the columns must match database definitions, no unit conversion is performed presently 
- columns that have default values in database schema can be omitted from catalog 
- this method knows how to fill interval-related columns of DiaObject (validityStart, validityEnd) they do not need to appear in a catalog 
- source catalogs have - diaObjectIdcolumn associating sources with objects
 
 - abstract storeSSObjects(objects: DataFrame) None¶
- Store or update SSObject catalog. - Parameters:
- objectspandas.DataFrame
- Catalog with SSObject records. 
 
- objects
 - Notes - If SSObjects with matching IDs already exist in the database, their records will be updated with the information from provided records. 
 - abstract tableDef(table: ApdbTables) Table | None¶
- Return table schema definition for a given table. - Parameters:
- tableApdbTables
- One of the known APDB tables. 
 
- table
- Returns: