Coverage for python/lsst/sims/maf/maps/dustMap.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
""" Compute the E(B-V) for each point in a given spatial distribution of slicePoints. """
""" interp: should the dust map be interpolated (True) or just use the nearest value (False). """
# If the slicer has nside, it's a healpix slicer so we can read the map directly % (slicePoints['nside'],self.nside )) # Not a healpix slicer, look up values based on RA,dec with possible interpolation else: dec=slicePoints['dec'], interp=self.interp)
|