---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-6-efbbf56178e9> in <module>()
1 from Starfish.grid_tools import load_BTSettl
----> 2 load_BTSettl(2200, 4.5, 0.0)
~/Phd/Codes/Repos/Starfish/Starfish/grid_tools.py in load_BTSettl(temp, logg, Z, norm, trunc, air)
1252 def load_BTSettl(temp, logg, Z, norm=False, trunc=False, air=False):
1253 rname = "BT-Settl/CIFIST2011/M{Z:}/lte{temp:0>3.0f}-{logg:.1f}{Z:}.BT-Settl.spec.7.bz2".format(temp=0.01 * temp, logg=logg, Z=Z)
-> 1254 file = bz2.BZ2File(rname, 'r')
1255
1256 lines = file.readlines()
~/anaconda3/envs/sims/lib/python3.6/bz2.py in __init__(self, filename, mode, buffering, compresslevel)
94
95 if isinstance(filename, (str, bytes, os.PathLike)):
---> 96 self._fp = _builtin_open(filename, mode)
97 self._closefp = True
98 self._mode = mode_code
FileNotFoundError: [Errno 2] No such file or directory: 'BT-Settl/CIFIST2011/M0.0/lte022-4.50.0.BT-Settl.spec.7.bz2'