Skip to content

Commit

Permalink
Merge pull request #51 from anissa111/fix-typo
Browse files Browse the repository at this point in the history
Fix typo in skewt notebook
  • Loading branch information
anissa111 authored Jan 12, 2024
2 parents 8551ace + 2856cbe commit 5dbad25
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions notebooks/5-skewt.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,6 @@
"Additionally, we've also set the `rotation` kwarg to be 45 degrees. This is the angle that the temperature lines will be drawn at. `MetPy`'s default is 30 degrees, but we're going to use a more traditional 45 degrees for this tutorial.\n",
"\n",
"```python\n",
"\n",
"```python\n",
"# plot sounding data\n",
"skewt.plot(p, T, 'r') # air temperature\n",
"skewt.plot(p, Td, 'b') # dew point\n",
Expand Down Expand Up @@ -324,7 +322,7 @@
"# At what point an air parcel lifted as a dry parcel becomes saturated\n",
"skewt_plots[0].ax.set_title('LCL and Parcel Profile')\n",
"skewt_plots[0].plot(p, lcl_prof, 'k')\n",
"skewt_plots[0].plot(lcl_p, lcl_t, 'ko') # Lifted Condensation Level \n",
"skewt_plots[0].plot(lcl_p, lcl_t, 'ko') # Lifted Condensation Level\n",
"\n",
"\n",
"# add constant temperature line at t=0\n",
Expand Down Expand Up @@ -373,11 +371,6 @@
"- [MetPy's SkewT documentation](https://unidata.github.io/MetPy/latest/api/generated/metpy.plots.SkewT.html)\n",
"- [NOAA's JetStream](https://www.noaa.gov/jetstream)'s [Skew-T Plot](https://www.noaa.gov/jetstream/upperair/skew-t-plots) page"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": []
}
],
"metadata": {
Expand Down

0 comments on commit 5dbad25

Please sign in to comment.