pynkowski.data

This module contains all the classes to compute Minkowski Functionals on data. So far, they are the following:

  • scalar: scalar maps on the sphere, in the healpix convention,

  • There is also a general utilities submodule called utils.

 1'''This module contains all the classes to compute Minkowski Functionals on data. So far, they are the following:
 2
 3- [`scalar`](data/scalar.html): scalar maps on the sphere, in the healpix convention,
 4
 5- There is also a general utilities submodule called [`utils`](data/utils.html).
 6'''
 7
 8
 9import numpy as np
10import healpy as hp
11
12try:
13    from tqdm.auto import tqdm
14except:
15    tqdm = lambda x: x
16    print('tqdm not loaded')
17    
18from .scalar import Scalar
19 
20
21        
22#__all__ = ["Scalar"]
23__docformat__ = "numpy"