-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
Plotting helpers for TiledDataset #408
Conversation
CodSpeed Performance ReportMerging #408 will not alter performanceComparing Summary
|
6dcdb12
to
cf497c1
Compare
@SolarDrew can you rebase this horror show? |
Assumes a grid of 3x3 tiles, not sure if this will always be true
Just takes the clim values from each tile and uses the highest and lowest
Co-authored-by: Stuart Mumford <[email protected]>
This is to avoid a deprecation warning when it's not specified explicitly, but is just using the default anyway.
8753c6f
to
a1cf462
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like codecov isn't uploading from the figure tests?
Co-authored-by: Stuart Mumford <[email protected]>
Co-authored-by: Stuart Mumford <[email protected]>
Not sure how this wasn't already here
I think this is good to go unless there are any more issues you can see with it. |
Adds a
TiledDataset.plot()
method which creates a quick-look plot as per the example here.At the moment only plots the first image in each tile. Unsure whether to try and construct an animation like the normal dataset plotting or to pass an index argument to the plot to determine which slice is shown.
Closes #405