-
Notifications
You must be signed in to change notification settings - Fork 59
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
Help in generating representative contour and save as .nc #248
Comments
To my knowledge, matplotlib does not allow you to create geotiffs.
|
Thank you so much for your response. @AntSimi for all four figures of Anticyclonic frequency, Cyclonic frequency |
Take a look at this method RegularGridDataset.contour |
Could you please write demo like you created deom on frequency ? Thank you |
Use is similar to grid display method, keyword argument are listed on documentation and on matplotlib documentation linked in pet contour documentation. replace_by_my_grid.contour(replace_by_my_ax, 'replace_by_my_var', levels=[-3500,-2500,-1500]) Use could look like this if you want contour for a number of levels: replace_by_my_grid.contour(replace_by_my_ax, 'replace_by_my_var', levels=5) |
Thank you so much. Could you please show any way to calculate kinetic energy and baroclinic and barotropic instability ? |
Thank you so much for creating wonderfull Package. I am trying to reproduce following
https://py-eddy-tracker.readthedocs.io/en/latest/python_module/10_tracking_diagnostics/pet_pixel_used.html#sphx-glr-python-module-10-tracking-diagnostics-pet-pixel-used-py
Could you please help me on how to add some representative contour lines on top this plot? and how I can save as nc/ geotif file so I could further work on this.
Here my code
The text was updated successfully, but these errors were encountered: