Coverage for python/lsst/images/fields/__init__.py: 0%
6 statements
« prev ^ index » next coverage.py v7.15.2, created at 2026-07-23 09:23 +0000
« prev ^ index » next coverage.py v7.15.2, created at 2026-07-23 09:23 +0000
1# This file is part of lsst-images.
2#
3# Developed for the LSST Data Management System.
4# This product includes software developed by the LSST Project
5# (https://www.lsst.org).
6# See the COPYRIGHT file at the top-level directory of this distribution
7# for details of code ownership.
8#
9# Use of this source code is governed by a 3-clause BSD-style
10# license that can be found in the LICENSE file.
12"""Fields are 2-d parametric functions used to represent some property of an
13image, like a background model or a spatially-varying aperture correction.
14"""
16from ._base import *
17from ._chebyshev import *
18from ._spline import *
19from ._product import *
20from ._sum import *
21from ._concrete import *