aboutsummaryrefslogtreecommitdiffstats
path: root/bin/hpx2healpix
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2016-12-13 10:03:50 +0800
committerAaron LI <aaronly.me@outlook.com>2016-12-13 10:04:33 +0800
commit4db3a8d951176f1631c7c4a90c386b235539302a (patch)
tree1ae5be84b5bf9112b76573c4ef60a1297d743e18 /bin/hpx2healpix
parent2e01bf4145087159fbecc741a9e8a96dc0a2b9c3 (diff)
downloadfg21sim-4db3a8d951176f1631c7c4a90c386b235539302a.tar.bz2
Import modules (with Numba JIT) just before usage
Thus, the usage information can be printed out quickly :)
Diffstat (limited to 'bin/hpx2healpix')
-rwxr-xr-xbin/hpx2healpix5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/hpx2healpix b/bin/hpx2healpix
index 5d48987..e5460c8 100755
--- a/bin/hpx2healpix
+++ b/bin/hpx2healpix
@@ -16,8 +16,6 @@ import logging
import fg21sim
from fg21sim.configs import configs
from fg21sim.utils import setup_logging
-from fg21sim.utils.healpix import hpx2healpix
-from fg21sim.utils.fits import write_fits_healpix
def main():
@@ -69,6 +67,9 @@ def main():
else:
raise OSError("Output file already exists: %s" % args.outfile)
+ logger.info("Importing modules + Numba JIT, waiting ...")
+ from fg21sim.utils.healpix import hpx2healpix
+ from fg21sim.utils.fits import write_fits_healpix
hp_data, hp_header = hpx2healpix(args.infile,
append_history=history,
append_comment=comments)