-
Notifications
You must be signed in to change notification settings - Fork 10
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
Method to make multiple animations in one figure #38
Closed
Closed
Changes from 32 commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
e43fc05
Method to make multiple animations in one figure
johnomotani 39e8fb9
Shorten titles in animate_imshow and animate_line
johnomotani 5b27452
Option to use a color-scale symmetric around 0
johnomotani c96a2da
Raise exception instead of using 'assert'
johnomotani bb16d17
Merge branch '2d-animate-permissive-defaults' into animate_list
johnomotani 13b4c9f
Don't pass 'sep_pos' to animate_imshow
johnomotani 8ddf637
Use pcolormesh instead of imshow for 2d animations
johnomotani 34af963
Use animate_pcolormesh in animate_list
johnomotani 408e571
Add support for passing time-varying data to _decompose_regions
johnomotani 7e3619d
Add option/function to make animated poloidal plots (in R,Z coordinates)
johnomotani 2ab9fea
Support for poloidal plots in animate_list
johnomotani 2647995
Fix animate_pcolormesh
johnomotani dabf6a6
Import animate_poloidal to fix poloidal_plots option of animate_list
johnomotani 9eebf99
Fix colorbar of animate_poloidal when passing in axes object as ax
johnomotani 25d4836
Allow variable names as well as BoutDataArrays in animate_list variables
johnomotani aff3e8a
Fix appending of blocks when using animate_poloidal in animate_list
johnomotani a929445
Set equal aspect ratio in animate_poloidal
johnomotani 0c4df3e
subplots_adjust option for animate_list
johnomotani 9eca9a2
Arguments to make controls optional in animation methods
johnomotani 4080196
Fix colorbar creation in animate_pcolormesh
johnomotani f63c0ac
Remove sep_pos from animate_pcolormesh
johnomotani 5286636
Option for plotting gridlines in plot2d_wrapper
johnomotani 35deefa
Allow per-variable vmin and vmax arguments to animate_list
johnomotani 43c2990
Fix test_animate2D
johnomotani 37c8958
PEP8 fixes
johnomotani c546708
Merge branch 'master' into animate_list
johnomotani 8ed2268
Remove lines calculating unused 'aspect'
johnomotani bfba437
Fix merge of test_animate2D
johnomotani 54e533d
Arguments to make logarithmic color-scale in 2d plots
johnomotani 122704b
Implement logscale option for 2D animation methods
johnomotani 625a8e2
Document all arguments of animate_list()
johnomotani 91efd51
Use PillowWriter to save .gif in animate_list
johnomotani 85b0cc6
Tidy up imports in animate.py
johnomotani 9d18e9d
Allow logscale to be passed as a list to animate_list
johnomotani 26f1e19
Fix use of animate_over in animate_line()
johnomotani ee98a70
Allow poloidal_plot to be passed per variable to animate_list
johnomotani 1bf86d9
Tests for animate_list
johnomotani ef9947d
Don't rely on order of dims in _decompose_regions()
johnomotani 9f8470f
Replace redundant argument unpacking in plotting.utils
johnomotani 3176809
Simplify checking for sequences in arguments of animate_list
johnomotani 230d27c
Rename 'this' -> 'subplot_args'
johnomotani 7ea1c70
Make specification of 'gridlines' argument to plot2d_wrapper nicer
johnomotani 3bad703
Rename animations->animation in animate_list tests
johnomotani dba0831
Check fps was actually set it test_animate_list_fps
johnomotani File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Should this now default to
ds.attrs['bout_xdim']
?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.
I don't think so. Leaving the default as
None
passes off setting defaults to the called methods, so letsanimate_poloidal
use(R,Z)
andanimate_pcolormesh
useda.dims
.