Merge pull request #75 from srcarter3/website

Small changes for Model Sounding Notebook (website)
This commit is contained in:
srcarter3 2022-08-22 13:35:30 -06:00 committed by GitHub
commit 294aa95766
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,7 +38,7 @@
"[4 Filtering by Time](https://unidata.github.io/python-awips/examples/generated/Model_Sounding_Data.html#filtering-by-time)<br> \n",
"[5 Get the Data!](https://unidata.github.io/python-awips/examples/generated/Model_Sounding_Data.html#get-the-data)<br> \n",
"[6 Use the Data!](https://unidata.github.io/python-awips/examples/generated/Model_Sounding_Data.html#use-the-data)<br> \n",
"&nbsp;&nbsp;&nbsp;&nbsp;[6.1 Prepare the Data!](https://unidata.github.io/python-awips/examples/generated/Model_Sounding_Data.html#prepare-the-data)<br> \n",
"&nbsp;&nbsp;&nbsp;&nbsp;[6.1 Prepare Data Objects](https://unidata.github.io/python-awips/examples/generated/Model_Sounding_Data.html#prepare-data-objects)<br> \n",
"&nbsp;&nbsp;&nbsp;&nbsp;[6.2 Calculate Dewpoint from Specific Humidity](https://unidata.github.io/python-awips/examples/generated/Model_Sounding_Data.html#calculate-dewpoint-from-specific-humidity)<br> \n",
"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[6.2.1 Method 1](https://unidata.github.io/python-awips/examples/generated/Model_Sounding_Data.html#method-1)<br> \n",
"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[6.2.2 Method 2](https://unidata.github.io/python-awips/examples/generated/Model_Sounding_Data.html#method-2)<br> \n",
@ -1279,7 +1279,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### 6.2 Prepare data objects\n",
"### 6.1 Prepare Data Objects\n",
"\n",
"Here we construct arrays for each parameter to plot (temperature, pressure, moisture (spec. humidity), wind components, and cloud cover). We have two sets of arrays for temperature and pressure, where the second set only has values as long as the specific humidity is not zero. That is because we are going to do some calculations with specific humidity, temperature, and pressure and we need all those arrays to be the same length, and for the specific humidty to not equal zero."
]
@ -1523,21 +1523,23 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## See Also\n",
"## 8 See Also\n",
"\n",
"### Related Notebooks\n",
"### 8.1 Related Notebooks\n",
"\n",
"* [Grid Levels and Parameters](https://unidata.github.io/python-awips/examples/generated/Grid_Levels_and_Parameters.html)\n",
"* [Upper Air BUFR Soundings](http://unidata.github.io/python-awips/examples/generated/Upper_Air_BUFR_Soundings.html)\n",
"* [Forecast Model Vertical Sounding](http://unidata.github.io/python-awips/examples/generated/Forecast_Model_Vertical_Sounding.html)\n",
"\n",
"### Additional Documentation\n",
"### 8.2 Additional Documentation\n",
"\n",
"**python-awips:**\n",
"\n",
"* [awips.DataAccessLayer](http://unidata.github.io/python-awips/api/DataAccessLayer.html)\n",
"* [awips.PyGeometryData](http://unidata.github.io/python-awips/api/PyGeometryData.html)\n",
"\n",
"**matplotlib:**\n",
"\n",
"* [matplotlib.pyplot](https://matplotlib.org/3.3.3/api/_as_gen/matplotlib.pyplot.html)\n",
"* [metpy.skewt](https://unidata.github.io/MetPy/latest/api/generated/metpy.plots.SkewT.html)"
]