-
Notifications
You must be signed in to change notification settings - Fork 44
Technical Review Cheat Sheet
robelgeda edited this page Jun 16, 2020
·
4 revisions
-
If you need to download a zipped dataset and extract please use Cami's Notebook as an example. Look at the
Set path to data and download from box link
section for reference. -
Adding developer notes in notebook:
*Developer Note:*
...
In [ ]: spec = Spectrum(np.linspace(a, b, 1000)*u.angstrom, some_complex_function(...))
Creating the spectrum above is a bit complicated, and it would improve the workflow if there was a single simple function that just did ``spec = simulate_jwst_spectrum(a, b)``
*Development:*
This has now been implemented as JWSTSimulator.make_spectrum(a, b, anotherparameterthatturnsouttobeimportant). Can you try that and ensure it works here?