We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sphot.visualizeFilter(['2MASS J', 'NICMOS F110W'], spectrum=t0) Does not work /Users/caganze/Research/splat/splat/photometry.py in visualizeFilter(filt, **kwargs) 537 fwave,ftrans = filt[0],filt[1] 538 else: --> 539 raise ValueError('Could not parse input {}'.format(filt)) 540 else: 541 raise ValueError('Could not parse input {}'.format(filt))
sphot.visualizeFilter(['2MASS J', 'NICMOS F110W'], spectrum=t0)
ValueError: Could not parse input ['2MASS J', 'NICMOS F110W']
but sphot.visualizeFilter('NICMOS F110W', spectrum=t0) works
sphot.visualizeFilter('NICMOS F110W', spectrum=t0)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
sphot.visualizeFilter(['2MASS J', 'NICMOS F110W'], spectrum=t0)
Does not work
/Users/caganze/Research/splat/splat/photometry.py in visualizeFilter(filt, **kwargs)
537 fwave,ftrans = filt[0],filt[1]
538 else:
--> 539 raise ValueError('Could not parse input {}'.format(filt))
540 else:
541 raise ValueError('Could not parse input {}'.format(filt))
ValueError: Could not parse input ['2MASS J', 'NICMOS F110W']
but
sphot.visualizeFilter('NICMOS F110W', spectrum=t0)
works
The text was updated successfully, but these errors were encountered: