diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-12-13 10:03:50 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-12-13 10:04:33 +0800 |
commit | 4db3a8d951176f1631c7c4a90c386b235539302a (patch) | |
tree | 1ae5be84b5bf9112b76573c4ef60a1297d743e18 /bin/healpix2hpx | |
parent | 2e01bf4145087159fbecc741a9e8a96dc0a2b9c3 (diff) | |
download | fg21sim-4db3a8d951176f1631c7c4a90c386b235539302a.tar.bz2 |
Import modules (with Numba JIT) just before usage
Thus, the usage information can be printed out quickly :)
Diffstat (limited to 'bin/healpix2hpx')
-rwxr-xr-x | bin/healpix2hpx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/healpix2hpx b/bin/healpix2hpx index fda9627..ed4b66e 100755 --- a/bin/healpix2hpx +++ b/bin/healpix2hpx @@ -13,12 +13,9 @@ import sys import argparse import logging -from astropy.io import fits - import fg21sim from fg21sim.configs import configs from fg21sim.utils import setup_logging -from fg21sim.utils.healpix import healpix2hpx def main(): @@ -70,6 +67,9 @@ def main(): else: raise OSError("Output file already exists: %s" % args.outfile) + logger.info("Importing modules + Numba JIT, waiting ...") + from astropy.io import fits + from fg21sim.utils.healpix import healpix2hpx hpx_data, hpx_header = healpix2hpx(args.infile, append_history=history, append_comment=comments) |