diff options
author | Aaron LI <aly@aaronly.me> | 2017-08-26 09:51:16 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-08-26 09:51:16 +0800 |
commit | 4b5967f7c51a340ecbfb418fabf62e292b65020d (patch) | |
tree | db1cba385777ab8030222fd621c19c8379c28ee9 /fg21sim/galactic/synchrotron.py | |
parent | e65379d62e5f92f96603775e8806ab32b97c60a9 (diff) | |
download | fg21sim-4b5967f7c51a340ecbfb418fabf62e292b65020d.tar.bz2 |
sky.py: Rename load() -> open(), read() -> load()
Diffstat (limited to 'fg21sim/galactic/synchrotron.py')
-rw-r--r-- | fg21sim/galactic/synchrotron.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fg21sim/galactic/synchrotron.py b/fg21sim/galactic/synchrotron.py index 5881c4c..9f89217 100644 --- a/fg21sim/galactic/synchrotron.py +++ b/fg21sim/galactic/synchrotron.py @@ -75,9 +75,9 @@ class Synchrotron: """Load the template map and spectral index map.""" sky = get_sky(self.configs) logger.info("Loading template map ...") - self.template = sky.load(self.template_path) + self.template = sky.open(self.template_path) logger.info("Loading spectral index map ...") - self.indexmap = sky.load(self.indexmap_path) + self.indexmap = sky.open(self.indexmap_path) def _add_smallscales(self): """ @@ -194,7 +194,7 @@ class Synchrotron: _preprocessed : bool This attribute presents and is ``True`` after the preparation procedures are performed, which indicates that it is ready to - do the final simulations. + do the subsequent simulations. """ if hasattr(self, "_preprocessed") and self._preprocessed: return |