LSST Applications g0265f82a02+c6dfa2ddaf,g1162b98a3f+ffe7eabc7e,g2079a07aa2+1b2e822518,g2bbee38e9b+c6dfa2ddaf,g337abbeb29+c6dfa2ddaf,g36da64cc00+ea84795170,g3ddfee87b4+955a963fd8,g50ff169b8f+2eb0e556e8,g52b1c1532d+90ebb246c7,g555ede804d+955a963fd8,g591dd9f2cf+bac198a2cb,g5ec818987f+420292cfeb,g858d7b2824+d6c9a0a3b8,g876c692160+aabc49a3c3,g8a8a8dda67+90ebb246c7,g8cdfe0ae6a+4fd9e222a8,g99cad8db69+e6cd765486,g9ddcbc5298+a1346535a5,ga1e77700b3+df8f93165b,ga8c6da7877+acd47f83f4,gae46bcf261+c6dfa2ddaf,gb0e22166c9+8634eb87fb,gb3f2274832+12c8382528,gba4ed39666+1ac82b564f,gbb8dafda3b+0574160a1f,gbeb006f7da+dea2fbb49f,gc28159a63d+c6dfa2ddaf,gc86a011abf+d6c9a0a3b8,gcf0d15dbbd+955a963fd8,gdaeeff99f8+1cafcb7cd4,gdc0c513512+d6c9a0a3b8,ge79ae78c31+c6dfa2ddaf,geb67518f79+ba1859f325,gee10cc3b42+90ebb246c7,gf1cff7945b+d6c9a0a3b8,w.2024.13
LSST Data Management Base Package
Loading...
Searching...
No Matches
Functions
lsst.pipe.tasks.cli.cmd.commands Namespace Reference

Functions

 make_discrete_skymap (*args, **kwargs)
 
 register_skymap (*args, **kwargs)
 
 register_dcr_subfilters (**kwargs)
 

Function Documentation

◆ make_discrete_skymap()

lsst.pipe.tasks.cli.cmd.commands.make_discrete_skymap ( * args,
** kwargs )
Define a discrete skymap from calibrated exposures in the butler registry.

Definition at line 55 of file commands.py.

55def make_discrete_skymap(*args, **kwargs):
56 """Define a discrete skymap from calibrated exposures in the butler registry."""
57 script.makeDiscreteSkyMap(*args, **kwargs)
58
59
60@click.command(cls=ButlerCommand)
61@repo_argument(required=True)
62@config_option()
63@config_file_option(help="URI to a config file overrides file.")
64@options_file_option()

◆ register_dcr_subfilters()

lsst.pipe.tasks.cli.cmd.commands.register_dcr_subfilters ( ** kwargs)
Construct a set of subfilters for chromatic modeling and add them to a
registry.

Definition at line 76 of file commands.py.

76def register_dcr_subfilters(**kwargs):
77 """Construct a set of subfilters for chromatic modeling and add them to a
78 registry."""
79 print(script.registerDcrSubfilters.registerDcrSubfilters(**kwargs))

◆ register_skymap()

lsst.pipe.tasks.cli.cmd.commands.register_skymap ( * args,
** kwargs )
Make a SkyMap and add it to a repository.

Definition at line 65 of file commands.py.

65def register_skymap(*args, **kwargs):
66 """Make a SkyMap and add it to a repository."""
67 script.registerSkymap.registerSkymap(*args, **kwargs)
68
69
70@click.command(cls=ButlerCommand,
71 short_help="Add subfilters for chaotic modeling.")
72@repo_argument(required=True)
73@num_subfilters_argument()
74@band_names_argument()
75@options_file_option()