- fixed sentence in "imports" section
- fixed a/an spelling in Function:get_color() section
- Added further explanation in Significance (Sig) Constants section about phen from phensig. Added link for phensig pamphlet as well.
- fixed Get the Data section note about 12 hours (vs 6 hours) of data requested
- added comma in Extract Phensigs, Geometries, and Times section
- commented out the println (lines 65-67) in the Extract Phensigs, Geometries, and Times code section
- modified the plot title to remove the seconds and add " UTC" for clarity
- added a link for "Phensig Explanation" in the See Also section
- createed a new notebook with a slightly different name
- added a preview image for the notebook
- use the template to format the notebook
- changed the time query to use hours instead of just the past x-records
- added an informative legend and title to the plot
- added the ability to turn on/off records based on significance (ie. hide advisories)
- draw the WWAs in an order that promotes best visibility if all are drawn
- updated the notebook to follow the new template
- created a directory for the preview images
- created and added a preview image for the grids and cartopy notebook
- this should get changed again later today, hopefully! But in case it doesnt, at the very least make this small change to remove the plotting portion at the end of the notebook.
- Added a new Template.ipynb file in the examples dir
- Added a new notebook GOES_CIRA_Product_Writer.ipynb in the examples/notebooks dir
- This notebook walks through:
- how to request multiple GOES products from EDEX
- how to resize the images using pixels
- how to write out images locally
- how to combine multiple channels in to an rgb product
- Created a new images directory for the notebooks
- Added two image files for the preview options of the notebook
Pulled these steps out of the for loop, perform first:
-instantiate the air temp array once
-nan out the null values (-9999)
-convert from c to f
In the for loop:
-create a copy of tair (subtair)
-use this copy to isolate values in the given threshold range
-when setting the data on the stationplot use the 'value' variable instead of using x again in the threshold to find the color value
-fixed the xlabels_top and ylabels_right warning by using top_labels and right_labels instead
-fixed the invalid transform error by using PlateCarree() instead of Geodetic()
-fixed the 'extend' warning by moving it from the colorbar() function to the contourf() function