Conversation
There was a problem hiding this comment.
I guess we can just keep it to make sure accessing graphics within a gridplot works etc.
| data = np.load("../data/random.npy") | ||
|
|
||
| iw.show() | ||
|
|
There was a problem hiding this comment.
can you test before and after setting timepoint?
set timepoint using the slider as well as @current_index
There was a problem hiding this comment.
need to think some more about testing image widget, somehow need renderer and canvas to be offscreen as in the other examples
| sine = np.load("../data/sine.npy") | ||
| cosine = np.load("../data/cosine.npy") | ||
| sinc = np.load("../data/sinc.npy") |
There was a problem hiding this comment.
just make these, don't save them since it's not randomly generated
There was a problem hiding this comment.
when I didn't save them was when I kept getting errors locally about the data changing...idk what the precision is like when you call np.sin() or np.cos() on a linspace but I think this is what was causing the problem before and that is why I saved them
There was a problem hiding this comment.
what if you force float32 when making the linspace?
|
it's not working just through pytest because:
data_path = Path(__file__).parent.parent.joinpath("data", "random.npy")
data = np.load(data_path) |
|
Seems like zenodo is still the best place to store these, ah well. The file will be small at least so download time should be very fast. |
|
superseeded by #179 |
refactored so there are no large binary files
did reorg for names
#152