LSST Applications g0265f82a02+0e5473021a,g02d81e74bb+0dd8ce4237,g1470d8bcf6+3ea6592b6f,g2079a07aa2+86d27d4dc4,g2305ad1205+5ca4c0b359,g295015adf3+d10818ec9d,g2a9a014e59+6f9be1b9cd,g2bbee38e9b+0e5473021a,g337abbeb29+0e5473021a,g3ddfee87b4+703ba97ebf,g487adcacf7+4fa16da234,g50ff169b8f+96c6868917,g52b1c1532d+585e252eca,g591dd9f2cf+ffa42b374e,g5a732f18d5+53520f316c,g64a986408d+0dd8ce4237,g858d7b2824+0dd8ce4237,g8a8a8dda67+585e252eca,g99cad8db69+d39438377f,g9ddcbc5298+9a081db1e4,ga1e77700b3+15fc3df1f7,ga8c6da7877+f1d96605c8,gb0e22166c9+60f28cb32d,gb6a65358fc+0e5473021a,gba4ed39666+c2a2e4ac27,gbb8dafda3b+e5339d463f,gc120e1dc64+da31e9920e,gc28159a63d+0e5473021a,gcf0d15dbbd+703ba97ebf,gdaeeff99f8+f9a426f77a,ge6526c86ff+889fc9d533,ge79ae78c31+0e5473021a,gee10cc3b42+585e252eca,gf18bd8381d+7268b93478,gff1a9f87cc+0dd8ce4237,w.2024.16
LSST Data Management Base Package
Loading...
Searching...
No Matches
Functions
lsst.pipe.tasks.script.makeDiscreteSkyMap Namespace Reference

Functions

 makeDiscreteSkyMap (repo, config_file, collections, instrument, skymap_id='discrete', old_skymap_id=None)
 

Function Documentation

◆ makeDiscreteSkyMap()

lsst.pipe.tasks.script.makeDiscreteSkyMap.makeDiscreteSkyMap ( repo,
config_file,
collections,
instrument,
skymap_id = 'discrete',
old_skymap_id = None )
Implements the command line interface `butler make-discrete-skymap` subcommand,
should only be called by command line tools and unit test code that tests
this function.

Constructs a skymap from calibrated exposure in the butler repository

Parameters
----------
repo : `str`
    URI to the location to read the repo.
config_file : `str` or `None`
    URI to a config file that contains overrides to the skymap config.
collections : `list` [`str`]
    An expression specifying the collections to be searched (in order) when
    reading datasets, and optionally dataset type restrictions on them.
    At least one collection must be specified.  This is the collection
    with the calibrated exposures.
instrument : `str`
    The name or fully-qualified class name of an instrument.
skymap_id : `str`, optional
    The identifier of the skymap to save.  Default is 'discrete'.
old_skymap_id : `str`, optional
    The identifer of the skymap to append to.  Must differ from
    ``skymap_id``.  Ignored unless ``config.doAppend=True``.

Definition at line 29 of file makeDiscreteSkyMap.py.

30 skymap_id='discrete', old_skymap_id=None):
31 """Implements the command line interface `butler make-discrete-skymap` subcommand,
32 should only be called by command line tools and unit test code that tests
33 this function.
34
35 Constructs a skymap from calibrated exposure in the butler repository
36
37 Parameters
38 ----------
39 repo : `str`
40 URI to the location to read the repo.
41 config_file : `str` or `None`
42 URI to a config file that contains overrides to the skymap config.
43 collections : `list` [`str`]
44 An expression specifying the collections to be searched (in order) when
45 reading datasets, and optionally dataset type restrictions on them.
46 At least one collection must be specified. This is the collection
47 with the calibrated exposures.
48 instrument : `str`
49 The name or fully-qualified class name of an instrument.
50 skymap_id : `str`, optional
51 The identifier of the skymap to save. Default is 'discrete'.
52 old_skymap_id : `str`, optional
53 The identifer of the skymap to append to. Must differ from
54 ``skymap_id``. Ignored unless ``config.doAppend=True``.
55 """
56 butler = Butler(repo, collections=collections, writeable=True)
57 instr = Instrument.from_string(instrument, butler.registry)
58 config = MakeDiscreteSkyMapConfig()
59 instr.applyConfigOverrides(MakeDiscreteSkyMapTask._DefaultName, config)
60
61 if config_file is not None:
62 resource = ResourcePath(config_file)
63 with resource.as_local() as local_config:
64 config.load(local_config.ospath)
65
66 # The coaddName for a SkyMap is only relevant in Gen2, and we completely
67 # ignore it here; once Gen2 is gone it can be removed.
68 oldSkyMap = None
69 if config.doAppend:
70 if old_skymap_id is None:
71 raise ValueError("old_skymap_id must be provided if config.doAppend is True.")
72 dataId = {'skymap': old_skymap_id}
73 try:
74 oldSkyMap = butler.get(BaseSkyMap.SKYMAP_DATASET_TYPE_NAME, collections=collections,
75 dataId=dataId)
76 except LookupError as e:
77 msg = (f"Could not find seed skymap with dataId {dataId} "
78 f"in collections {collections} but doAppend is {config.doAppend}. Aborting...")
79 raise LookupError(msg, *e.args[1:])
80
81 datasets = butler.registry.queryDatasets('calexp', collections=collections)
82 wcs_bbox_tuple_list = [(butler.get(ref.makeComponentRef("wcs")),
83 butler.get(ref.makeComponentRef("bbox")))
84 for ref in datasets]
85 task = MakeDiscreteSkyMapTask(config=config)
86 result = task.run(wcs_bbox_tuple_list, oldSkyMap)
87 result.skyMap.register(skymap_id, butler)