diff --git a/dev/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip b/dev/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip index 220e107a28d..7df90e1c4e1 100644 Binary files a/dev/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip and b/dev/_downloads/315c4c52fb68082a731b192d944e2ede/tutorials_python.zip differ diff --git a/dev/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip b/dev/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip index 1fb910caab7..7047f8eba1c 100644 Binary files a/dev/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip and b/dev/_downloads/a5659940aa3f8f568547d47752a43172/tutorials_jupyter.zip differ diff --git a/dev/_downloads/aedfcde5d540d021d02883dc8627add4/Station_Plot_with_Layout.py b/dev/_downloads/aedfcde5d540d021d02883dc8627add4/Station_Plot_with_Layout.py index e98fd701727..af884491703 100644 --- a/dev/_downloads/aedfcde5d540d021d02883dc8627add4/Station_Plot_with_Layout.py +++ b/dev/_downloads/aedfcde5d540d021d02883dc8627add4/Station_Plot_with_Layout.py @@ -15,7 +15,7 @@ The `StationPlotLayout` class is used to standardize the plotting various parameters (i.e. temperature), keeping track of the location, formatting, and even the units for use in -the station plot. This makes it easy (if using standardized names) to re-use a given layout +the station plot. This makes it easy (if using standardized names) to reuse a given layout of a station plot. """ import cartopy.crs as ccrs diff --git a/dev/_downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip b/dev/_downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip index bacb6ddb835..be73c10a92a 100644 Binary files a/dev/_downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip and b/dev/_downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip differ diff --git a/dev/_downloads/ca19cf4d9fe41266757c83e7aff770db/Vorticity.py b/dev/_downloads/ca19cf4d9fe41266757c83e7aff770db/Vorticity.py index 1cd256a34e8..d99025d2cc4 100644 --- a/dev/_downloads/ca19cf4d9fe41266757c83e7aff770db/Vorticity.py +++ b/dev/_downloads/ca19cf4d9fe41266757c83e7aff770db/Vorticity.py @@ -20,13 +20,13 @@ ds = example_data() # Calculate the vertical vorticity of the flow -vor = mpcalc.vorticity(ds.uwind, ds.vwind) +vort = mpcalc.vorticity(ds.uwind, ds.vwind) # start figure and set axis fig, ax = plt.subplots(figsize=(5, 5)) # scale vorticity by 1e5 for plotting purposes -cf = ax.contourf(ds.lon, ds.lat, vor * 1e5, range(-80, 81, 1), cmap=plt.cm.PuOr_r) +cf = ax.contourf(ds.lon, ds.lat, vort * 1e5, range(-80, 81, 1), cmap=plt.cm.PuOr_r) plt.colorbar(cf, pad=0, aspect=50) ax.barbs(ds.lon.values, ds.lat.values, ds.uwind, ds.vwind, color='black', length=5, alpha=0.5) ax.set(xlim=(260, 270), ylim=(30, 40)) diff --git a/dev/_downloads/d04a9494716f000a1433c75d1fe171ba/Natural_Neighbor_Verification.py b/dev/_downloads/d04a9494716f000a1433c75d1fe171ba/Natural_Neighbor_Verification.py index 24d8fff332b..ae314665708 100644 --- a/dev/_downloads/d04a9494716f000a1433c75d1fe171ba/Natural_Neighbor_Verification.py +++ b/dev/_downloads/d04a9494716f000a1433c75d1fe171ba/Natural_Neighbor_Verification.py @@ -162,11 +162,11 @@ def draw_circle(ax, x, y, r, m, label): # spatial data structure that we use here simply to show areal ratios. # Notice that the two natural neighbor triangle circumcenters are also vertices # in the Voronoi plot (green dots), and the observations are in the polygons (blue dots). -vor = Voronoi(list(zip(xp, yp))) +vort = Voronoi(list(zip(xp, yp))) fig, ax = plt.subplots(1, 1, figsize=(15, 10)) ax.ishold = lambda: True # Work-around for Matplotlib 3.0.0 incompatibility -voronoi_plot_2d(vor, ax=ax) +voronoi_plot_2d(vort, ax=ax) nn_ind = np.array([0, 5, 7, 8]) z_0 = zp[nn_ind] diff --git a/dev/_downloads/e3a381e26c1f7c055ae74476848708cb/Station_Plot_with_Layout.ipynb b/dev/_downloads/e3a381e26c1f7c055ae74476848708cb/Station_Plot_with_Layout.ipynb index 999bae59f8d..c531421a6eb 100644 --- a/dev/_downloads/e3a381e26c1f7c055ae74476848708cb/Station_Plot_with_Layout.ipynb +++ b/dev/_downloads/e3a381e26c1f7c055ae74476848708cb/Station_Plot_with_Layout.ipynb @@ -4,7 +4,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "\n# Station Plot with Layout\n\nMake a station plot, complete with sky cover and weather symbols, using a\nstation plot layout built into MetPy.\n\nThe station plot itself is straightforward, but there is a bit of code to perform the\ndata-wrangling (hopefully that situation will improve in the future). Certainly, if you have\nexisting point data in a format you can work with trivially, the station plot will be simple.\n\nThe `StationPlotLayout` class is used to standardize the plotting various parameters\n(i.e. temperature), keeping track of the location, formatting, and even the units for use in\nthe station plot. This makes it easy (if using standardized names) to re-use a given layout\nof a station plot.\n" + "\n# Station Plot with Layout\n\nMake a station plot, complete with sky cover and weather symbols, using a\nstation plot layout built into MetPy.\n\nThe station plot itself is straightforward, but there is a bit of code to perform the\ndata-wrangling (hopefully that situation will improve in the future). Certainly, if you have\nexisting point data in a format you can work with trivially, the station plot will be simple.\n\nThe `StationPlotLayout` class is used to standardize the plotting various parameters\n(i.e. temperature), keeping track of the location, formatting, and even the units for use in\nthe station plot. This makes it easy (if using standardized names) to reuse a given layout\nof a station plot.\n" ] }, { diff --git a/dev/_downloads/e5685967297554788de3cf5858571b23/Natural_Neighbor_Verification.ipynb b/dev/_downloads/e5685967297554788de3cf5858571b23/Natural_Neighbor_Verification.ipynb index 36a4acef1ef..d5e6ea35c7f 100644 --- a/dev/_downloads/e5685967297554788de3cf5858571b23/Natural_Neighbor_Verification.ipynb +++ b/dev/_downloads/e5685967297554788de3cf5858571b23/Natural_Neighbor_Verification.ipynb @@ -112,7 +112,7 @@ }, "outputs": [], "source": [ - "vor = Voronoi(list(zip(xp, yp)))\n\nfig, ax = plt.subplots(1, 1, figsize=(15, 10))\nax.ishold = lambda: True # Work-around for Matplotlib 3.0.0 incompatibility\nvoronoi_plot_2d(vor, ax=ax)\n\nnn_ind = np.array([0, 5, 7, 8])\nz_0 = zp[nn_ind]\nx_0 = xp[nn_ind]\ny_0 = yp[nn_ind]\n\nfor x, y, z in zip(x_0, y_0, z_0):\n ax.annotate(f'{x}, {y}: {z:.3f} F', xy=(x, y))\n\nax.plot(sim_gridx[0], sim_gridy[0], 'k+', markersize=10)\nax.annotate(f'{sim_gridx[0]}, {sim_gridy[0]}', xy=(sim_gridx[0] + 2, sim_gridy[0]))\nax.plot(cc[:, 0], cc[:, 1], 'ks', markersize=15, fillstyle='none',\n label='natural neighbor\\ncircumcenters')\n\nfor center in cc:\n ax.annotate(f'{center[0]:.3f}, {center[1]:.3f}', xy=(center[0] + 1, center[1] + 1))\n\ntris = tri.points[tri.simplices[members[0]]]\nfor triangle in tris:\n x = [triangle[0, 0], triangle[1, 0], triangle[2, 0], triangle[0, 0]]\n y = [triangle[0, 1], triangle[1, 1], triangle[2, 1], triangle[0, 1]]\n ax.plot(x, y, ':', linewidth=2)\n\nax.legend()\nax.set_aspect('equal', 'datalim')\n\n\ndef draw_polygon_with_info(ax, polygon, off_x=0, off_y=0):\n \"\"\"Draw one of the natural neighbor polygons with some information.\"\"\"\n pts = np.array(polygon)[ConvexHull(polygon).vertices]\n for i, pt in enumerate(pts):\n ax.plot([pt[0], pts[(i + 1) % len(pts)][0]],\n [pt[1], pts[(i + 1) % len(pts)][1]], 'k-')\n\n avex, avey = np.mean(pts, axis=0)\n ax.annotate(f'area: {geometry.area(pts):.3f}', xy=(avex + off_x, avey + off_y),\n fontsize=12)\n\n\ncc1 = geometry.circumcenter((53, 66), (15, 60), (30, 30))\ncc2 = geometry.circumcenter((34, 24), (53, 66), (30, 30))\ndraw_polygon_with_info(ax, [cc[0], cc1, cc2])\n\ncc1 = geometry.circumcenter((53, 66), (15, 60), (30, 30))\ncc2 = geometry.circumcenter((15, 60), (8, 24), (30, 30))\ndraw_polygon_with_info(ax, [cc[0], cc[1], cc1, cc2], off_x=-9, off_y=3)\n\ncc1 = geometry.circumcenter((8, 24), (34, 24), (30, 30))\ncc2 = geometry.circumcenter((15, 60), (8, 24), (30, 30))\ndraw_polygon_with_info(ax, [cc[1], cc1, cc2], off_x=-15)\n\ncc1 = geometry.circumcenter((8, 24), (34, 24), (30, 30))\ncc2 = geometry.circumcenter((34, 24), (53, 66), (30, 30))\ndraw_polygon_with_info(ax, [cc[0], cc[1], cc1, cc2])" + "vort = Voronoi(list(zip(xp, yp)))\n\nfig, ax = plt.subplots(1, 1, figsize=(15, 10))\nax.ishold = lambda: True # Work-around for Matplotlib 3.0.0 incompatibility\nvoronoi_plot_2d(vort, ax=ax)\n\nnn_ind = np.array([0, 5, 7, 8])\nz_0 = zp[nn_ind]\nx_0 = xp[nn_ind]\ny_0 = yp[nn_ind]\n\nfor x, y, z in zip(x_0, y_0, z_0):\n ax.annotate(f'{x}, {y}: {z:.3f} F', xy=(x, y))\n\nax.plot(sim_gridx[0], sim_gridy[0], 'k+', markersize=10)\nax.annotate(f'{sim_gridx[0]}, {sim_gridy[0]}', xy=(sim_gridx[0] + 2, sim_gridy[0]))\nax.plot(cc[:, 0], cc[:, 1], 'ks', markersize=15, fillstyle='none',\n label='natural neighbor\\ncircumcenters')\n\nfor center in cc:\n ax.annotate(f'{center[0]:.3f}, {center[1]:.3f}', xy=(center[0] + 1, center[1] + 1))\n\ntris = tri.points[tri.simplices[members[0]]]\nfor triangle in tris:\n x = [triangle[0, 0], triangle[1, 0], triangle[2, 0], triangle[0, 0]]\n y = [triangle[0, 1], triangle[1, 1], triangle[2, 1], triangle[0, 1]]\n ax.plot(x, y, ':', linewidth=2)\n\nax.legend()\nax.set_aspect('equal', 'datalim')\n\n\ndef draw_polygon_with_info(ax, polygon, off_x=0, off_y=0):\n \"\"\"Draw one of the natural neighbor polygons with some information.\"\"\"\n pts = np.array(polygon)[ConvexHull(polygon).vertices]\n for i, pt in enumerate(pts):\n ax.plot([pt[0], pts[(i + 1) % len(pts)][0]],\n [pt[1], pts[(i + 1) % len(pts)][1]], 'k-')\n\n avex, avey = np.mean(pts, axis=0)\n ax.annotate(f'area: {geometry.area(pts):.3f}', xy=(avex + off_x, avey + off_y),\n fontsize=12)\n\n\ncc1 = geometry.circumcenter((53, 66), (15, 60), (30, 30))\ncc2 = geometry.circumcenter((34, 24), (53, 66), (30, 30))\ndraw_polygon_with_info(ax, [cc[0], cc1, cc2])\n\ncc1 = geometry.circumcenter((53, 66), (15, 60), (30, 30))\ncc2 = geometry.circumcenter((15, 60), (8, 24), (30, 30))\ndraw_polygon_with_info(ax, [cc[0], cc[1], cc1, cc2], off_x=-9, off_y=3)\n\ncc1 = geometry.circumcenter((8, 24), (34, 24), (30, 30))\ncc2 = geometry.circumcenter((15, 60), (8, 24), (30, 30))\ndraw_polygon_with_info(ax, [cc[1], cc1, cc2], off_x=-15)\n\ncc1 = geometry.circumcenter((8, 24), (34, 24), (30, 30))\ncc2 = geometry.circumcenter((34, 24), (53, 66), (30, 30))\ndraw_polygon_with_info(ax, [cc[0], cc[1], cc1, cc2])" ] }, { diff --git a/dev/_downloads/ecce55d0f61dcbb6db7188fe7ec331b7/Vorticity.ipynb b/dev/_downloads/ecce55d0f61dcbb6db7188fe7ec331b7/Vorticity.ipynb index b9bd59c7636..1a46f39f458 100644 --- a/dev/_downloads/ecce55d0f61dcbb6db7188fe7ec331b7/Vorticity.ipynb +++ b/dev/_downloads/ecce55d0f61dcbb6db7188fe7ec331b7/Vorticity.ipynb @@ -15,7 +15,7 @@ }, "outputs": [], "source": [ - "import matplotlib.pyplot as plt\n\nimport metpy.calc as mpcalc\nfrom metpy.cbook import example_data\n\n# load example data\nds = example_data()\n\n# Calculate the vertical vorticity of the flow\nvor = mpcalc.vorticity(ds.uwind, ds.vwind)\n\n# start figure and set axis\nfig, ax = plt.subplots(figsize=(5, 5))\n\n# scale vorticity by 1e5 for plotting purposes\ncf = ax.contourf(ds.lon, ds.lat, vor * 1e5, range(-80, 81, 1), cmap=plt.cm.PuOr_r)\nplt.colorbar(cf, pad=0, aspect=50)\nax.barbs(ds.lon.values, ds.lat.values, ds.uwind, ds.vwind, color='black', length=5, alpha=0.5)\nax.set(xlim=(260, 270), ylim=(30, 40))\nax.set_title('Relative Vorticity Calculation')\n\nplt.show()" + "import matplotlib.pyplot as plt\n\nimport metpy.calc as mpcalc\nfrom metpy.cbook import example_data\n\n# load example data\nds = example_data()\n\n# Calculate the vertical vorticity of the flow\nvort = mpcalc.vorticity(ds.uwind, ds.vwind)\n\n# start figure and set axis\nfig, ax = plt.subplots(figsize=(5, 5))\n\n# scale vorticity by 1e5 for plotting purposes\ncf = ax.contourf(ds.lon, ds.lat, vort * 1e5, range(-80, 81, 1), cmap=plt.cm.PuOr_r)\nplt.colorbar(cf, pad=0, aspect=50)\nax.barbs(ds.lon.values, ds.lat.values, ds.uwind, ds.vwind, color='black', length=5, alpha=0.5)\nax.set(xlim=(260, 270), ylim=(30, 40))\nax.set_title('Relative Vorticity Calculation')\n\nplt.show()" ] } ], diff --git a/dev/_downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip b/dev/_downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip index f9960795204..a7c468678d2 100644 Binary files a/dev/_downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip and b/dev/_downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip differ diff --git a/dev/_images/sphx_glr_Absolute_Vorticity_001.png b/dev/_images/sphx_glr_Absolute_Vorticity_001.png index f5c38448080..f497fbe8f8a 100644 Binary files a/dev/_images/sphx_glr_Absolute_Vorticity_001.png and b/dev/_images/sphx_glr_Absolute_Vorticity_001.png differ diff --git a/dev/_images/sphx_glr_Absolute_Vorticity_thumb.png b/dev/_images/sphx_glr_Absolute_Vorticity_thumb.png index 5db207bdedb..20c785d42ab 100644 Binary files a/dev/_images/sphx_glr_Absolute_Vorticity_thumb.png and b/dev/_images/sphx_glr_Absolute_Vorticity_thumb.png differ diff --git a/dev/_images/sphx_glr_Advanced_Sounding_001.png b/dev/_images/sphx_glr_Advanced_Sounding_001.png index b6d922ce6a0..9072d762fc2 100644 Binary files a/dev/_images/sphx_glr_Advanced_Sounding_001.png and b/dev/_images/sphx_glr_Advanced_Sounding_001.png differ diff --git a/dev/_images/sphx_glr_Advanced_Sounding_thumb.png b/dev/_images/sphx_glr_Advanced_Sounding_thumb.png index 0257724b93d..e721682ca5a 100644 Binary files a/dev/_images/sphx_glr_Advanced_Sounding_thumb.png and b/dev/_images/sphx_glr_Advanced_Sounding_thumb.png differ diff --git a/dev/_images/sphx_glr_Advection_001.png b/dev/_images/sphx_glr_Advection_001.png index f735eff4e1c..558dcfa9865 100644 Binary files a/dev/_images/sphx_glr_Advection_001.png and b/dev/_images/sphx_glr_Advection_001.png differ diff --git a/dev/_images/sphx_glr_Advection_thumb.png b/dev/_images/sphx_glr_Advection_thumb.png index e5683529a55..b8d84454f03 100644 Binary files a/dev/_images/sphx_glr_Advection_thumb.png and b/dev/_images/sphx_glr_Advection_thumb.png differ diff --git a/dev/_images/sphx_glr_Divergence_001.png b/dev/_images/sphx_glr_Divergence_001.png index 69cab54c824..0689ee3e3c7 100644 Binary files a/dev/_images/sphx_glr_Divergence_001.png and b/dev/_images/sphx_glr_Divergence_001.png differ diff --git a/dev/_images/sphx_glr_Divergence_thumb.png b/dev/_images/sphx_glr_Divergence_thumb.png index e898280a31e..70ce25953fb 100644 Binary files a/dev/_images/sphx_glr_Divergence_thumb.png and b/dev/_images/sphx_glr_Divergence_thumb.png differ diff --git a/dev/_images/sphx_glr_Hodograph_Inset_001.png b/dev/_images/sphx_glr_Hodograph_Inset_001.png index b0416e496ec..35bc4e67f34 100644 Binary files a/dev/_images/sphx_glr_Hodograph_Inset_001.png and b/dev/_images/sphx_glr_Hodograph_Inset_001.png differ diff --git a/dev/_images/sphx_glr_Hodograph_Inset_thumb.png b/dev/_images/sphx_glr_Hodograph_Inset_thumb.png index 240cf7bfbd5..c1189400be8 100644 Binary files a/dev/_images/sphx_glr_Hodograph_Inset_thumb.png and b/dev/_images/sphx_glr_Hodograph_Inset_thumb.png differ diff --git a/dev/_images/sphx_glr_Shearing_Deformation_001.png b/dev/_images/sphx_glr_Shearing_Deformation_001.png index a2b3cfe2626..2350b8f03d2 100644 Binary files a/dev/_images/sphx_glr_Shearing_Deformation_001.png and b/dev/_images/sphx_glr_Shearing_Deformation_001.png differ diff --git a/dev/_images/sphx_glr_Shearing_Deformation_thumb.png b/dev/_images/sphx_glr_Shearing_Deformation_thumb.png index f37d394786b..66b4d663fc6 100644 Binary files a/dev/_images/sphx_glr_Shearing_Deformation_thumb.png and b/dev/_images/sphx_glr_Shearing_Deformation_thumb.png differ diff --git a/dev/_images/sphx_glr_Skew-T_Layout_001.png b/dev/_images/sphx_glr_Skew-T_Layout_001.png index 52d0dcfcdfa..4e07441e466 100644 Binary files a/dev/_images/sphx_glr_Skew-T_Layout_001.png and b/dev/_images/sphx_glr_Skew-T_Layout_001.png differ diff --git a/dev/_images/sphx_glr_Skew-T_Layout_thumb.png b/dev/_images/sphx_glr_Skew-T_Layout_thumb.png index d908fa567f1..e04b46c5fff 100644 Binary files a/dev/_images/sphx_glr_Skew-T_Layout_thumb.png and b/dev/_images/sphx_glr_Skew-T_Layout_thumb.png differ diff --git a/dev/_images/sphx_glr_Sounding_LCL_Dataset_001.png b/dev/_images/sphx_glr_Sounding_LCL_Dataset_001.png index e30a0780693..c8ee3c985a1 100644 Binary files a/dev/_images/sphx_glr_Sounding_LCL_Dataset_001.png and b/dev/_images/sphx_glr_Sounding_LCL_Dataset_001.png differ diff --git a/dev/_images/sphx_glr_Sounding_LCL_Dataset_thumb.png b/dev/_images/sphx_glr_Sounding_LCL_Dataset_thumb.png index f2459d6634d..88b9d8038d6 100644 Binary files a/dev/_images/sphx_glr_Sounding_LCL_Dataset_thumb.png and b/dev/_images/sphx_glr_Sounding_LCL_Dataset_thumb.png differ diff --git a/dev/_images/sphx_glr_Station_Plot_001.png b/dev/_images/sphx_glr_Station_Plot_001.png index 968bcc10f63..48fe8452a93 100644 Binary files a/dev/_images/sphx_glr_Station_Plot_001.png and b/dev/_images/sphx_glr_Station_Plot_001.png differ diff --git a/dev/_images/sphx_glr_Station_Plot_thumb.png b/dev/_images/sphx_glr_Station_Plot_thumb.png index 5e6bbbe058b..6a04a3e6cca 100644 Binary files a/dev/_images/sphx_glr_Station_Plot_thumb.png and b/dev/_images/sphx_glr_Station_Plot_thumb.png differ diff --git a/dev/_images/sphx_glr_Stretching_Deformation_001.png b/dev/_images/sphx_glr_Stretching_Deformation_001.png index 6034367ef43..f6e7b1fd263 100644 Binary files a/dev/_images/sphx_glr_Stretching_Deformation_001.png and b/dev/_images/sphx_glr_Stretching_Deformation_001.png differ diff --git a/dev/_images/sphx_glr_Stretching_Deformation_thumb.png b/dev/_images/sphx_glr_Stretching_Deformation_thumb.png index a4ee64e33fe..f81d7c3673d 100644 Binary files a/dev/_images/sphx_glr_Stretching_Deformation_thumb.png and b/dev/_images/sphx_glr_Stretching_Deformation_thumb.png differ diff --git a/dev/_images/sphx_glr_Total_Deformation_001.png b/dev/_images/sphx_glr_Total_Deformation_001.png index 056f1443915..5f329b8b369 100644 Binary files a/dev/_images/sphx_glr_Total_Deformation_001.png and b/dev/_images/sphx_glr_Total_Deformation_001.png differ diff --git a/dev/_images/sphx_glr_Total_Deformation_thumb.png b/dev/_images/sphx_glr_Total_Deformation_thumb.png index 9dc65eaa318..b69234ef0c4 100644 Binary files a/dev/_images/sphx_glr_Total_Deformation_thumb.png and b/dev/_images/sphx_glr_Total_Deformation_thumb.png differ diff --git a/dev/_images/sphx_glr_Vorticity_001.png b/dev/_images/sphx_glr_Vorticity_001.png index 69fa983e893..ffdff8cf344 100644 Binary files a/dev/_images/sphx_glr_Vorticity_001.png and b/dev/_images/sphx_glr_Vorticity_001.png differ diff --git a/dev/_images/sphx_glr_Vorticity_thumb.png b/dev/_images/sphx_glr_Vorticity_thumb.png index bfd2f7a673c..7576dfe99b8 100644 Binary files a/dev/_images/sphx_glr_Vorticity_thumb.png and b/dev/_images/sphx_glr_Vorticity_thumb.png differ diff --git a/dev/_images/sphx_glr_Wind_SLP_Interpolation_001.png b/dev/_images/sphx_glr_Wind_SLP_Interpolation_001.png index ee442e6697d..c08093b3121 100644 Binary files a/dev/_images/sphx_glr_Wind_SLP_Interpolation_001.png and b/dev/_images/sphx_glr_Wind_SLP_Interpolation_001.png differ diff --git a/dev/_images/sphx_glr_Wind_SLP_Interpolation_thumb.png b/dev/_images/sphx_glr_Wind_SLP_Interpolation_thumb.png index fe1ad8c6ac9..c2a860def5d 100644 Binary files a/dev/_images/sphx_glr_Wind_SLP_Interpolation_thumb.png and b/dev/_images/sphx_glr_Wind_SLP_Interpolation_thumb.png differ diff --git a/dev/_images/sphx_glr_Wind_Speed_001.png b/dev/_images/sphx_glr_Wind_Speed_001.png index 9b4c9d939c4..56d73545ec4 100644 Binary files a/dev/_images/sphx_glr_Wind_Speed_001.png and b/dev/_images/sphx_glr_Wind_Speed_001.png differ diff --git a/dev/_images/sphx_glr_Wind_Speed_thumb.png b/dev/_images/sphx_glr_Wind_Speed_thumb.png index 5e023bf1281..e85f7cf54e5 100644 Binary files a/dev/_images/sphx_glr_Wind_Speed_thumb.png and b/dev/_images/sphx_glr_Wind_Speed_thumb.png differ diff --git a/dev/_images/sphx_glr_declarative_tutorial_002.png b/dev/_images/sphx_glr_declarative_tutorial_002.png index 09e36fd4114..af1c64dab53 100644 Binary files a/dev/_images/sphx_glr_declarative_tutorial_002.png and b/dev/_images/sphx_glr_declarative_tutorial_002.png differ diff --git a/dev/_images/sphx_glr_isentropic_example_001.png b/dev/_images/sphx_glr_isentropic_example_001.png index 934413cab8c..ced691f5fb7 100644 Binary files a/dev/_images/sphx_glr_isentropic_example_001.png and b/dev/_images/sphx_glr_isentropic_example_001.png differ diff --git a/dev/_images/sphx_glr_isentropic_example_002.png b/dev/_images/sphx_glr_isentropic_example_002.png index ed1b05478d0..a02f6598272 100644 Binary files a/dev/_images/sphx_glr_isentropic_example_002.png and b/dev/_images/sphx_glr_isentropic_example_002.png differ diff --git a/dev/_images/sphx_glr_isentropic_example_thumb.png b/dev/_images/sphx_glr_isentropic_example_thumb.png index b5cb73276ac..f72065b1ecb 100644 Binary files a/dev/_images/sphx_glr_isentropic_example_thumb.png and b/dev/_images/sphx_glr_isentropic_example_thumb.png differ diff --git a/dev/_images/sphx_glr_upperair_declarative_001.png b/dev/_images/sphx_glr_upperair_declarative_001.png index 073f17064f2..f385ba87f2e 100644 Binary files a/dev/_images/sphx_glr_upperair_declarative_001.png and b/dev/_images/sphx_glr_upperair_declarative_001.png differ diff --git a/dev/_images/sphx_glr_upperair_declarative_thumb.png b/dev/_images/sphx_glr_upperair_declarative_thumb.png index 584d1f46995..0c81fdbaa4a 100644 Binary files a/dev/_images/sphx_glr_upperair_declarative_thumb.png and b/dev/_images/sphx_glr_upperair_declarative_thumb.png differ diff --git a/dev/_modules/index.html b/dev/_modules/index.html index e2aa568052c..d9aace4f7a9 100644 --- a/dev/_modules/index.html +++ b/dev/_modules/index.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_modules/metpy/io/gempak.html b/dev/_modules/metpy/io/gempak.html index b8f699892aa..82d1e8abe89 100644 --- a/dev/_modules/metpy/io/gempak.html +++ b/dev/_modules/metpy/io/gempak.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_modules/metpy/io/gini.html b/dev/_modules/metpy/io/gini.html index 992637af768..09e144c7c4f 100644 --- a/dev/_modules/metpy/io/gini.html +++ b/dev/_modules/metpy/io/gini.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_modules/metpy/io/nexrad.html b/dev/_modules/metpy/io/nexrad.html index 8d02569ad19..bb880f00ab3 100644 --- a/dev/_modules/metpy/io/nexrad.html +++ b/dev/_modules/metpy/io/nexrad.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_modules/metpy/plots/ctables.html b/dev/_modules/metpy/plots/ctables.html index 212483e9a8c..b71f9c2694b 100644 --- a/dev/_modules/metpy/plots/ctables.html +++ b/dev/_modules/metpy/plots/ctables.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_modules/metpy/plots/declarative.html b/dev/_modules/metpy/plots/declarative.html index 0e8b69736f0..44f78f187d0 100644 --- a/dev/_modules/metpy/plots/declarative.html +++ b/dev/_modules/metpy/plots/declarative.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_modules/metpy/plots/patheffects.html b/dev/_modules/metpy/plots/patheffects.html index 6a3b00d23d9..a496f454c0a 100644 --- a/dev/_modules/metpy/plots/patheffects.html +++ b/dev/_modules/metpy/plots/patheffects.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_modules/metpy/plots/skewt.html b/dev/_modules/metpy/plots/skewt.html index 75e09de3c45..d9abaa103dc 100644 --- a/dev/_modules/metpy/plots/skewt.html +++ b/dev/_modules/metpy/plots/skewt.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_modules/metpy/plots/station_plot.html b/dev/_modules/metpy/plots/station_plot.html index 55db3231c08..6fb95d04119 100644 --- a/dev/_modules/metpy/plots/station_plot.html +++ b/dev/_modules/metpy/plots/station_plot.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_modules/metpy/units.html b/dev/_modules/metpy/units.html index a2972276a63..27ce0d6f267 100644 --- a/dev/_modules/metpy/units.html +++ b/dev/_modules/metpy/units.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_modules/metpy/xarray.html b/dev/_modules/metpy/xarray.html index 8ec0b1d52f1..6aea19b5858 100644 --- a/dev/_modules/metpy/xarray.html +++ b/dev/_modules/metpy/xarray.html @@ -72,7 +72,7 @@ - + diff --git a/dev/_sources/examples/Advanced_Sounding.rst.txt b/dev/_sources/examples/Advanced_Sounding.rst.txt index aac6b435f88..3c3ea88a831 100644 --- a/dev/_sources/examples/Advanced_Sounding.rst.txt +++ b/dev/_sources/examples/Advanced_Sounding.rst.txt @@ -165,7 +165,7 @@ Create a new figure. The dimensions here give a good aspect ratio. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.224 seconds) + **Total running time of the script:** (0 minutes 0.320 seconds) .. _sphx_glr_download_examples_Advanced_Sounding.py: diff --git a/dev/_sources/examples/Complex-Sounding-Plot.rst.txt b/dev/_sources/examples/Complex-Sounding-Plot.rst.txt index ecd676e0df7..b553299d16c 100644 --- a/dev/_sources/examples/Complex-Sounding-Plot.rst.txt +++ b/dev/_sources/examples/Complex-Sounding-Plot.rst.txt @@ -150,7 +150,7 @@ MetPy functionality .. code-block:: none - [] + [] @@ -267,7 +267,7 @@ INCREASE READABILITY .. code-block:: none - + @@ -339,7 +339,7 @@ INCREASE READABILITY .. code-block:: none - + @@ -520,7 +520,7 @@ STEP 4: ADD A FEW EXTRA ELEMENTS TO REALLY MAKE A NEAT PLOT .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.812 seconds) + **Total running time of the script:** (0 minutes 1.155 seconds) .. _sphx_glr_download_examples_Complex-Sounding-Plot.py: diff --git a/dev/_sources/examples/Four_Panel_Map.rst.txt b/dev/_sources/examples/Four_Panel_Map.rst.txt index e3474232a07..2d1d6985718 100644 --- a/dev/_sources/examples/Four_Panel_Map.rst.txt +++ b/dev/_sources/examples/Four_Panel_Map.rst.txt @@ -259,7 +259,7 @@ By reading model output data from a netCDF file, we can create a four panel plot .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 11.612 seconds) + **Total running time of the script:** (0 minutes 17.925 seconds) .. _sphx_glr_download_examples_Four_Panel_Map.py: diff --git a/dev/_sources/examples/XArray_Projections.rst.txt b/dev/_sources/examples/XArray_Projections.rst.txt index a279fefc25d..fafd255992f 100644 --- a/dev/_sources/examples/XArray_Projections.rst.txt +++ b/dev/_sources/examples/XArray_Projections.rst.txt @@ -68,7 +68,7 @@ data on a map using CartoPy. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 12.456 seconds) + **Total running time of the script:** (0 minutes 19.680 seconds) .. _sphx_glr_download_examples_XArray_Projections.py: diff --git a/dev/_sources/examples/calculations/Absolute_Vorticity.rst.txt b/dev/_sources/examples/calculations/Absolute_Vorticity.rst.txt index 7c36aa0786e..643e4f46f15 100644 --- a/dev/_sources/examples/calculations/Absolute_Vorticity.rst.txt +++ b/dev/_sources/examples/calculations/Absolute_Vorticity.rst.txt @@ -68,7 +68,7 @@ Dataset and plotting using Matplotlib. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.235 seconds) + **Total running time of the script:** (0 minutes 0.356 seconds) .. _sphx_glr_download_examples_calculations_Absolute_Vorticity.py: diff --git a/dev/_sources/examples/calculations/Advection.rst.txt b/dev/_sources/examples/calculations/Advection.rst.txt index f094e706ac4..bc718139e1e 100644 --- a/dev/_sources/examples/calculations/Advection.rst.txt +++ b/dev/_sources/examples/calculations/Advection.rst.txt @@ -91,7 +91,7 @@ the example xarray Dataset and plotting using Matplotlib. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.149 seconds) + **Total running time of the script:** (0 minutes 0.221 seconds) .. _sphx_glr_download_examples_calculations_Advection.py: diff --git a/dev/_sources/examples/calculations/Angle_to_Direction.rst.txt b/dev/_sources/examples/calculations/Angle_to_Direction.rst.txt index 190df8d2bc3..44bd0ecf929 100644 --- a/dev/_sources/examples/calculations/Angle_to_Direction.rst.txt +++ b/dev/_sources/examples/calculations/Angle_to_Direction.rst.txt @@ -143,7 +143,7 @@ If you want the unabbrieviated version, input full=True .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.005 seconds) + **Total running time of the script:** (0 minutes 0.006 seconds) .. _sphx_glr_download_examples_calculations_Angle_to_Direction.py: diff --git a/dev/_sources/examples/calculations/Bulk_Shear.rst.txt b/dev/_sources/examples/calculations/Bulk_Shear.rst.txt index 82de0825d91..7c9ae65fedc 100644 --- a/dev/_sources/examples/calculations/Bulk_Shear.rst.txt +++ b/dev/_sources/examples/calculations/Bulk_Shear.rst.txt @@ -148,7 +148,7 @@ Compute the bulk shear for the lowest three km .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.012 seconds) + **Total running time of the script:** (0 minutes 0.019 seconds) .. _sphx_glr_download_examples_calculations_Bulk_Shear.py: diff --git a/dev/_sources/examples/calculations/Dewpoint_and_Mixing_Ratio.rst.txt b/dev/_sources/examples/calculations/Dewpoint_and_Mixing_Ratio.rst.txt index 3d30e042c5c..2899baec623 100644 --- a/dev/_sources/examples/calculations/Dewpoint_and_Mixing_Ratio.rst.txt +++ b/dev/_sources/examples/calculations/Dewpoint_and_Mixing_Ratio.rst.txt @@ -212,7 +212,7 @@ And print the corresponding dewpoint .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.006 seconds) + **Total running time of the script:** (0 minutes 0.009 seconds) .. _sphx_glr_download_examples_calculations_Dewpoint_and_Mixing_Ratio.py: diff --git a/dev/_sources/examples/calculations/Divergence.rst.txt b/dev/_sources/examples/calculations/Divergence.rst.txt index b009939398d..9f81b84735a 100644 --- a/dev/_sources/examples/calculations/Divergence.rst.txt +++ b/dev/_sources/examples/calculations/Divergence.rst.txt @@ -68,7 +68,7 @@ Dataset and plotting using Matplotlib. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.163 seconds) + **Total running time of the script:** (0 minutes 0.232 seconds) .. _sphx_glr_download_examples_calculations_Divergence.py: diff --git a/dev/_sources/examples/calculations/Equivalent_Potential_Temperature.rst.txt b/dev/_sources/examples/calculations/Equivalent_Potential_Temperature.rst.txt index d45371ee4f4..01cab2dc422 100644 --- a/dev/_sources/examples/calculations/Equivalent_Potential_Temperature.rst.txt +++ b/dev/_sources/examples/calculations/Equivalent_Potential_Temperature.rst.txt @@ -168,7 +168,7 @@ Use the layer defined above and plot the equivalent potential temperature .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.092 seconds) + **Total running time of the script:** (0 minutes 0.123 seconds) .. _sphx_glr_download_examples_calculations_Equivalent_Potential_Temperature.py: diff --git a/dev/_sources/examples/calculations/Gradient.rst.txt b/dev/_sources/examples/calculations/Gradient.rst.txt index dad540bd814..96382de165e 100644 --- a/dev/_sources/examples/calculations/Gradient.rst.txt +++ b/dev/_sources/examples/calculations/Gradient.rst.txt @@ -166,7 +166,7 @@ Finally, the deltas can be arrays for unevenly spaced data. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.016 seconds) + **Total running time of the script:** (0 minutes 0.024 seconds) .. _sphx_glr_download_examples_calculations_Gradient.py: diff --git a/dev/_sources/examples/calculations/Mean_Pressure_Weighted.rst.txt b/dev/_sources/examples/calculations/Mean_Pressure_Weighted.rst.txt index 1f542ea59fc..b4a9929d396 100644 --- a/dev/_sources/examples/calculations/Mean_Pressure_Weighted.rst.txt +++ b/dev/_sources/examples/calculations/Mean_Pressure_Weighted.rst.txt @@ -130,7 +130,7 @@ Calculate the mean pressure weighted temperature over a depth of 500 hPa .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.012 seconds) + **Total running time of the script:** (0 minutes 0.017 seconds) .. _sphx_glr_download_examples_calculations_Mean_Pressure_Weighted.py: diff --git a/dev/_sources/examples/calculations/Mountain_Problem.rst.txt b/dev/_sources/examples/calculations/Mountain_Problem.rst.txt index ff67c9869d6..265f14a2900 100644 --- a/dev/_sources/examples/calculations/Mountain_Problem.rst.txt +++ b/dev/_sources/examples/calculations/Mountain_Problem.rst.txt @@ -187,7 +187,7 @@ parcel .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.007 seconds) + **Total running time of the script:** (0 minutes 0.010 seconds) .. _sphx_glr_download_examples_calculations_Mountain_Problem.py: diff --git a/dev/_sources/examples/calculations/QVector.rst.txt b/dev/_sources/examples/calculations/QVector.rst.txt index 3922320bb3e..3217825347d 100644 --- a/dev/_sources/examples/calculations/QVector.rst.txt +++ b/dev/_sources/examples/calculations/QVector.rst.txt @@ -97,7 +97,7 @@ Dataset and plotting using Matplotlib. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.179 seconds) + **Total running time of the script:** (0 minutes 0.263 seconds) .. _sphx_glr_download_examples_calculations_QVector.py: diff --git a/dev/_sources/examples/calculations/Shearing_Deformation.rst.txt b/dev/_sources/examples/calculations/Shearing_Deformation.rst.txt index dc717351c08..30a2190e2e6 100644 --- a/dev/_sources/examples/calculations/Shearing_Deformation.rst.txt +++ b/dev/_sources/examples/calculations/Shearing_Deformation.rst.txt @@ -68,7 +68,7 @@ Dataset and plotting using Matplotlib. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.261 seconds) + **Total running time of the script:** (0 minutes 0.333 seconds) .. _sphx_glr_download_examples_calculations_Shearing_Deformation.py: diff --git a/dev/_sources/examples/calculations/Smoothing.rst.txt b/dev/_sources/examples/calculations/Smoothing.rst.txt index 81befc851fe..cf169006662 100644 --- a/dev/_sources/examples/calculations/Smoothing.rst.txt +++ b/dev/_sources/examples/calculations/Smoothing.rst.txt @@ -140,7 +140,7 @@ Now, create a grid showing different smoothing options .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.677 seconds) + **Total running time of the script:** (0 minutes 0.895 seconds) .. _sphx_glr_download_examples_calculations_Smoothing.py: diff --git a/dev/_sources/examples/calculations/Sounding_Calculations.rst.txt b/dev/_sources/examples/calculations/Sounding_Calculations.rst.txt index 1108c2b46b7..be7311a93e7 100644 --- a/dev/_sources/examples/calculations/Sounding_Calculations.rst.txt +++ b/dev/_sources/examples/calculations/Sounding_Calculations.rst.txt @@ -461,7 +461,7 @@ Print Important Sounding Parameters .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.316 seconds) + **Total running time of the script:** (0 minutes 0.492 seconds) .. _sphx_glr_download_examples_calculations_Sounding_Calculations.py: diff --git a/dev/_sources/examples/calculations/Static_Stability.rst.txt b/dev/_sources/examples/calculations/Static_Stability.rst.txt index 98f3801d4d2..35c678421e5 100644 --- a/dev/_sources/examples/calculations/Static_Stability.rst.txt +++ b/dev/_sources/examples/calculations/Static_Stability.rst.txt @@ -122,7 +122,7 @@ Calculate the static stability and convert to K/Pa units .. code-block:: none - [-4.412832192334464e-05 -2.449277724743241e-05 9.116458268710324e-05 8.845234936113418e-05 6.224860528096752e-05 0.00015314927360352893 0.00019881695313411532 0.0003010199773665337 0.00026111189622417404 0.001085062948164048 0.0037403218021489384 0.004248281970348124 0.0036657831964967114 0.0016752453464420483 0.0007380480366923099 0.00019231433878668947 0.0002557493550907393 0.00024017381030490135 0.0010992754328866168 0.0009156418439438833 0.00025827670773887395 0.0008820697439593748 0.0003589161178615257 0.0004817507957698896 0.0006973708206233451 0.0006126559385666097 0.00047078968526674726 0.00048701968260597434 0.0004875042540964733 0.0004723683427325029 0.00018331961002751509 0.00014636894085019007 0.00013915628085254793 -0.0015920843524442835 -0.0015653462261827026 9.863194193125203e-05 0.0001579458273746663 0.00041106154962431264 0.00039799924225680105 0.0006038463463312496 0.0032368837310525183 0.004009490876983789 0.003712519880476728 0.0023375347706966346 0.001366027873753104 0.0012474317985632058 0.0014544559226790695 0.0024234211184300538 0.003385229573605462 0.00393333469570616 0.0024998389621420955 0.0026161133002917765 0.0025584158650765487 0.0061453098584766585 0.006346575700474026 0.003115891778520376 0.0028392731739860125 0.0018886781873633822 0.0023835929582128146 0.0013562543705426307 0.0011897088702191683 0.004713351681793958 0.0032926213870685993 0.002904873402541409 0.005189222385428262 0.005480289289528999 0.0014028667954945192 0.005193086215585504 0.005625967270339566 0.005397711905806259 0.010008951771502746 0.01178936022226881 0.0027175297861041976] kelvin / pascal + [-4.41283219227208e-05 -2.4492777247121155e-05 9.116458268710324e-05 8.845234936113418e-05 6.224860528096752e-05 0.00015314927360383487 0.00019881695313443988 0.00030101997736649576 0.00026111189622417404 0.001085062948164048 0.003740321802149091 0.004248281970347817 0.0036657831964964018 0.0016752453464420483 0.0007380480366923099 0.00019231433878668947 0.0002557493550907393 0.00024017381030490135 0.0010992754328914723 0.000915641843948739 0.00025827670773766095 0.0008820697439592232 0.0003589161178615257 0.0004817507957698896 0.0006973708206233451 0.0006126559385666097 0.00047078968526674726 0.0004870196826060473 0.0004875042540964733 0.0004723683427336631 0.00018331961002751509 0.00014636894085019007 0.00013915628085254793 -0.0015920843524442835 -0.0015653462261827026 9.863194193151853e-05 0.0001579458273752061 0.00041106154962424813 0.00039799924225680105 0.0006038463463312496 0.0032368837310525183 0.004009490876985825 0.0037125198804787668 0.0023375347706963796 0.001366027873753104 0.0012474317985632058 0.0014544559226790695 0.0024234211184320383 0.0033852295736065785 0.00393333469570616 0.0024998389621420955 0.0026161133002877935 0.0025584158650765487 0.0061453098584766585 0.006346575700474026 0.003115891778520376 0.0028392731739860125 0.0018886781873633822 0.0023835929582128146 0.0013562543705426307 0.0011897088702191683 0.004713351681793958 0.0032926213870648154 0.002904873402537745 0.005189222385428262 0.005480289289528526 0.0014028667954945192 0.005193086215585504 0.005625967270339566 0.005397711905806318 0.01000895177150228 0.011789360222267875 0.0027175297861060685] kelvin / pascal @@ -130,7 +130,7 @@ Calculate the static stability and convert to K/Pa units .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.010 seconds) + **Total running time of the script:** (0 minutes 0.016 seconds) .. _sphx_glr_download_examples_calculations_Static_Stability.py: diff --git a/dev/_sources/examples/calculations/Stretching_Deformation.rst.txt b/dev/_sources/examples/calculations/Stretching_Deformation.rst.txt index c38ef0bcba1..512eab53620 100644 --- a/dev/_sources/examples/calculations/Stretching_Deformation.rst.txt +++ b/dev/_sources/examples/calculations/Stretching_Deformation.rst.txt @@ -68,7 +68,7 @@ Dataset and plotting using Matplotlib. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.230 seconds) + **Total running time of the script:** (0 minutes 0.331 seconds) .. _sphx_glr_download_examples_calculations_Stretching_Deformation.py: diff --git a/dev/_sources/examples/calculations/Thickness_Hydrostatic.rst.txt b/dev/_sources/examples/calculations/Thickness_Hydrostatic.rst.txt index 00c2c6ef77c..a9e5b1add30 100644 --- a/dev/_sources/examples/calculations/Thickness_Hydrostatic.rst.txt +++ b/dev/_sources/examples/calculations/Thickness_Hydrostatic.rst.txt @@ -142,7 +142,7 @@ for the layer from the surface pressure to 500-hPa .. code-block:: none - 5332.474521891769 meter + 5332.474521891784 meter @@ -150,7 +150,7 @@ for the layer from the surface pressure to 500-hPa .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.012 seconds) + **Total running time of the script:** (0 minutes 0.017 seconds) .. _sphx_glr_download_examples_calculations_Thickness_Hydrostatic.py: diff --git a/dev/_sources/examples/calculations/Total_Deformation.rst.txt b/dev/_sources/examples/calculations/Total_Deformation.rst.txt index 5263fb5ee8e..c85fee6c056 100644 --- a/dev/_sources/examples/calculations/Total_Deformation.rst.txt +++ b/dev/_sources/examples/calculations/Total_Deformation.rst.txt @@ -68,7 +68,7 @@ Dataset and plotting using Matplotlib. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.231 seconds) + **Total running time of the script:** (0 minutes 0.354 seconds) .. _sphx_glr_download_examples_calculations_Total_Deformation.py: diff --git a/dev/_sources/examples/calculations/Vorticity.rst.txt b/dev/_sources/examples/calculations/Vorticity.rst.txt index 85648665570..84fcff70871 100644 --- a/dev/_sources/examples/calculations/Vorticity.rst.txt +++ b/dev/_sources/examples/calculations/Vorticity.rst.txt @@ -51,13 +51,13 @@ Dataset and plotting using Matplotlib. ds = example_data() # Calculate the vertical vorticity of the flow - vor = mpcalc.vorticity(ds.uwind, ds.vwind) + vort = mpcalc.vorticity(ds.uwind, ds.vwind) # start figure and set axis fig, ax = plt.subplots(figsize=(5, 5)) # scale vorticity by 1e5 for plotting purposes - cf = ax.contourf(ds.lon, ds.lat, vor * 1e5, range(-80, 81, 1), cmap=plt.cm.PuOr_r) + cf = ax.contourf(ds.lon, ds.lat, vort * 1e5, range(-80, 81, 1), cmap=plt.cm.PuOr_r) plt.colorbar(cf, pad=0, aspect=50) ax.barbs(ds.lon.values, ds.lat.values, ds.uwind, ds.vwind, color='black', length=5, alpha=0.5) ax.set(xlim=(260, 270), ylim=(30, 40)) @@ -68,7 +68,7 @@ Dataset and plotting using Matplotlib. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.234 seconds) + **Total running time of the script:** (0 minutes 0.336 seconds) .. _sphx_glr_download_examples_calculations_Vorticity.py: diff --git a/dev/_sources/examples/calculations/Wind_Speed.rst.txt b/dev/_sources/examples/calculations/Wind_Speed.rst.txt index be3df9c1084..98173f12290 100644 --- a/dev/_sources/examples/calculations/Wind_Speed.rst.txt +++ b/dev/_sources/examples/calculations/Wind_Speed.rst.txt @@ -68,7 +68,7 @@ plotting using Matplotlib. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.145 seconds) + **Total running time of the script:** (0 minutes 0.222 seconds) .. _sphx_glr_download_examples_calculations_Wind_Speed.py: diff --git a/dev/_sources/examples/calculations/sg_execution_times.rst.txt b/dev/_sources/examples/calculations/sg_execution_times.rst.txt index cf92e052925..9b98ea4169b 100644 --- a/dev/_sources/examples/calculations/sg_execution_times.rst.txt +++ b/dev/_sources/examples/calculations/sg_execution_times.rst.txt @@ -6,48 +6,48 @@ Computation times ================= -**00:02.994** total execution time for **examples_calculations** files: +**00:04.279** total execution time for **examples_calculations** files: +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Smoothing.py` (``Smoothing.py``) | 00:00.677 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Smoothing.py` (``Smoothing.py``) | 00:00.895 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Sounding_Calculations.py` (``Sounding_Calculations.py``) | 00:00.316 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Sounding_Calculations.py` (``Sounding_Calculations.py``) | 00:00.492 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Shearing_Deformation.py` (``Shearing_Deformation.py``) | 00:00.261 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Absolute_Vorticity.py` (``Absolute_Vorticity.py``) | 00:00.356 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Absolute_Vorticity.py` (``Absolute_Vorticity.py``) | 00:00.235 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Total_Deformation.py` (``Total_Deformation.py``) | 00:00.354 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Vorticity.py` (``Vorticity.py``) | 00:00.234 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Vorticity.py` (``Vorticity.py``) | 00:00.336 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Total_Deformation.py` (``Total_Deformation.py``) | 00:00.231 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Shearing_Deformation.py` (``Shearing_Deformation.py``) | 00:00.333 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Stretching_Deformation.py` (``Stretching_Deformation.py``) | 00:00.230 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Stretching_Deformation.py` (``Stretching_Deformation.py``) | 00:00.331 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_QVector.py` (``QVector.py``) | 00:00.179 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_QVector.py` (``QVector.py``) | 00:00.263 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Divergence.py` (``Divergence.py``) | 00:00.163 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Divergence.py` (``Divergence.py``) | 00:00.232 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Advection.py` (``Advection.py``) | 00:00.149 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Wind_Speed.py` (``Wind_Speed.py``) | 00:00.222 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Wind_Speed.py` (``Wind_Speed.py``) | 00:00.145 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Advection.py` (``Advection.py``) | 00:00.221 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Equivalent_Potential_Temperature.py` (``Equivalent_Potential_Temperature.py``) | 00:00.092 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Equivalent_Potential_Temperature.py` (``Equivalent_Potential_Temperature.py``) | 00:00.123 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Gradient.py` (``Gradient.py``) | 00:00.016 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Gradient.py` (``Gradient.py``) | 00:00.024 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Bulk_Shear.py` (``Bulk_Shear.py``) | 00:00.012 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Bulk_Shear.py` (``Bulk_Shear.py``) | 00:00.019 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Thickness_Hydrostatic.py` (``Thickness_Hydrostatic.py``) | 00:00.012 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Thickness_Hydrostatic.py` (``Thickness_Hydrostatic.py``) | 00:00.017 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Mean_Pressure_Weighted.py` (``Mean_Pressure_Weighted.py``) | 00:00.012 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Mean_Pressure_Weighted.py` (``Mean_Pressure_Weighted.py``) | 00:00.017 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Static_Stability.py` (``Static_Stability.py``) | 00:00.010 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Static_Stability.py` (``Static_Stability.py``) | 00:00.016 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Mountain_Problem.py` (``Mountain_Problem.py``) | 00:00.007 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Mountain_Problem.py` (``Mountain_Problem.py``) | 00:00.010 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Dewpoint_and_Mixing_Ratio.py` (``Dewpoint_and_Mixing_Ratio.py``) | 00:00.006 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Dewpoint_and_Mixing_Ratio.py` (``Dewpoint_and_Mixing_Ratio.py``) | 00:00.009 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_calculations_Angle_to_Direction.py` (``Angle_to_Direction.py``) | 00:00.005 | 0.0 MB | +| :ref:`sphx_glr_examples_calculations_Angle_to_Direction.py` (``Angle_to_Direction.py``) | 00:00.006 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ | :ref:`sphx_glr_examples_calculations_Parse_Angles.py` (``Parse_Angles.py``) | 00:00.002 | 0.0 MB | +---------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/dev/_sources/examples/cross_section.rst.txt b/dev/_sources/examples/cross_section.rst.txt index 7afd233b6e9..42aa2fd3fb2 100644 --- a/dev/_sources/examples/cross_section.rst.txt +++ b/dev/_sources/examples/cross_section.rst.txt @@ -357,7 +357,7 @@ to ``ax.set_xticklabels`` to label lat/lon pairs, similar to the default NCL out .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 6.244 seconds) + **Total running time of the script:** (0 minutes 8.832 seconds) .. _sphx_glr_download_examples_cross_section.py: diff --git a/dev/_sources/examples/formats/GINI_Water_Vapor.rst.txt b/dev/_sources/examples/formats/GINI_Water_Vapor.rst.txt index 8b3859ce348..554b01c2739 100644 --- a/dev/_sources/examples/formats/GINI_Water_Vapor.rst.txt +++ b/dev/_sources/examples/formats/GINI_Water_Vapor.rst.txt @@ -133,7 +133,7 @@ the projection information. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 1.157 seconds) + **Total running time of the script:** (0 minutes 1.643 seconds) .. _sphx_glr_download_examples_formats_GINI_Water_Vapor.py: diff --git a/dev/_sources/examples/formats/NEXRAD_Level_2_File.rst.txt b/dev/_sources/examples/formats/NEXRAD_Level_2_File.rst.txt index 83dc7301b52..69f56a6fba4 100644 --- a/dev/_sources/examples/formats/NEXRAD_Level_2_File.rst.txt +++ b/dev/_sources/examples/formats/NEXRAD_Level_2_File.rst.txt @@ -193,7 +193,7 @@ Calculate ranges for the gates from the metadata .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 7.027 seconds) + **Total running time of the script:** (0 minutes 9.835 seconds) .. _sphx_glr_download_examples_formats_NEXRAD_Level_2_File.py: diff --git a/dev/_sources/examples/formats/NEXRAD_Level_3_File.rst.txt b/dev/_sources/examples/formats/NEXRAD_Level_3_File.rst.txt index 3a8a0ae540c..f276fd344fa 100644 --- a/dev/_sources/examples/formats/NEXRAD_Level_3_File.rst.txt +++ b/dev/_sources/examples/formats/NEXRAD_Level_3_File.rst.txt @@ -105,7 +105,7 @@ Use MetPy to read information from a NEXRAD Level 3 (NIDS product) file and plot .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 2.392 seconds) + **Total running time of the script:** (0 minutes 3.328 seconds) .. _sphx_glr_download_examples_formats_NEXRAD_Level_3_File.py: diff --git a/dev/_sources/examples/formats/sg_execution_times.rst.txt b/dev/_sources/examples/formats/sg_execution_times.rst.txt index 057dcb6309a..6c7e8d5f99e 100644 --- a/dev/_sources/examples/formats/sg_execution_times.rst.txt +++ b/dev/_sources/examples/formats/sg_execution_times.rst.txt @@ -6,12 +6,12 @@ Computation times ================= -**00:10.576** total execution time for **examples_formats** files: +**00:14.806** total execution time for **examples_formats** files: +--------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_formats_NEXRAD_Level_2_File.py` (``NEXRAD_Level_2_File.py``) | 00:07.027 | 0.0 MB | +| :ref:`sphx_glr_examples_formats_NEXRAD_Level_2_File.py` (``NEXRAD_Level_2_File.py``) | 00:09.835 | 0.0 MB | +--------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_formats_NEXRAD_Level_3_File.py` (``NEXRAD_Level_3_File.py``) | 00:02.392 | 0.0 MB | +| :ref:`sphx_glr_examples_formats_NEXRAD_Level_3_File.py` (``NEXRAD_Level_3_File.py``) | 00:03.328 | 0.0 MB | +--------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_formats_GINI_Water_Vapor.py` (``GINI_Water_Vapor.py``) | 00:01.157 | 0.0 MB | +| :ref:`sphx_glr_examples_formats_GINI_Water_Vapor.py` (``GINI_Water_Vapor.py``) | 00:01.643 | 0.0 MB | +--------------------------------------------------------------------------------------+-----------+--------+ diff --git a/dev/_sources/examples/gridding/Find_Natural_Neighbors_Verification.rst.txt b/dev/_sources/examples/gridding/Find_Natural_Neighbors_Verification.rst.txt index 0bac8d53d08..0f0605c82ae 100644 --- a/dev/_sources/examples/gridding/Find_Natural_Neighbors_Verification.rst.txt +++ b/dev/_sources/examples/gridding/Find_Natural_Neighbors_Verification.rst.txt @@ -139,7 +139,7 @@ We can plot all of the triangles as well as the circles representing the circumc .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.372 seconds) + **Total running time of the script:** (0 minutes 0.524 seconds) .. _sphx_glr_download_examples_gridding_Find_Natural_Neighbors_Verification.py: diff --git a/dev/_sources/examples/gridding/Inverse_Distance_Verification.rst.txt b/dev/_sources/examples/gridding/Inverse_Distance_Verification.rst.txt index cb379864f65..0be7a85c732 100644 --- a/dev/_sources/examples/gridding/Inverse_Distance_Verification.rst.txt +++ b/dev/_sources/examples/gridding/Inverse_Distance_Verification.rst.txt @@ -207,7 +207,7 @@ Plot all of the affiliated information and interpolation values. .. code-block:: none - + @@ -369,7 +369,7 @@ Step through barnes calculations. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.460 seconds) + **Total running time of the script:** (0 minutes 0.570 seconds) .. _sphx_glr_download_examples_gridding_Inverse_Distance_Verification.py: diff --git a/dev/_sources/examples/gridding/Natural_Neighbor_Verification.rst.txt b/dev/_sources/examples/gridding/Natural_Neighbor_Verification.rst.txt index 8b201b7aa17..fac6aa81899 100644 --- a/dev/_sources/examples/gridding/Natural_Neighbor_Verification.rst.txt +++ b/dev/_sources/examples/gridding/Natural_Neighbor_Verification.rst.txt @@ -209,7 +209,7 @@ examine the results to see if they are correct. .. code-block:: none - + @@ -288,11 +288,11 @@ in the Voronoi plot (green dots), and the observations are in the polygons (blue .. code-block:: default - vor = Voronoi(list(zip(xp, yp))) + vort = Voronoi(list(zip(xp, yp))) fig, ax = plt.subplots(1, 1, figsize=(15, 10)) ax.ishold = lambda: True # Work-around for Matplotlib 3.0.0 incompatibility - voronoi_plot_2d(vor, ax=ax) + voronoi_plot_2d(vort, ax=ax) nn_ind = np.array([0, 5, 7, 8]) z_0 = zp[nn_ind] @@ -482,7 +482,7 @@ the above visual example to the 3rd decimal place. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.566 seconds) + **Total running time of the script:** (0 minutes 0.692 seconds) .. _sphx_glr_download_examples_gridding_Natural_Neighbor_Verification.py: diff --git a/dev/_sources/examples/gridding/Point_Interpolation.rst.txt b/dev/_sources/examples/gridding/Point_Interpolation.rst.txt index a773d7b6518..de3f43833e2 100644 --- a/dev/_sources/examples/gridding/Point_Interpolation.rst.txt +++ b/dev/_sources/examples/gridding/Point_Interpolation.rst.txt @@ -139,7 +139,7 @@ Scipy.interpolate linear .. code-block:: none - + @@ -173,7 +173,7 @@ Natural neighbor interpolation (MetPy implementation) .. code-block:: none - + @@ -212,7 +212,7 @@ min_neighbors = 1 .. code-block:: none - + @@ -249,7 +249,7 @@ min_neighbors = 3 .. code-block:: none - + @@ -286,7 +286,7 @@ linear .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 6.124 seconds) + **Total running time of the script:** (0 minutes 9.229 seconds) .. _sphx_glr_download_examples_gridding_Point_Interpolation.py: diff --git a/dev/_sources/examples/gridding/Wind_SLP_Interpolation.rst.txt b/dev/_sources/examples/gridding/Wind_SLP_Interpolation.rst.txt index 7b5181a1ff0..8bb8a4a01c9 100644 --- a/dev/_sources/examples/gridding/Wind_SLP_Interpolation.rst.txt +++ b/dev/_sources/examples/gridding/Wind_SLP_Interpolation.rst.txt @@ -247,7 +247,7 @@ Set up the map and plot the interpolated grids appropriately. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 8.913 seconds) + **Total running time of the script:** (0 minutes 14.008 seconds) .. _sphx_glr_download_examples_gridding_Wind_SLP_Interpolation.py: diff --git a/dev/_sources/examples/gridding/sg_execution_times.rst.txt b/dev/_sources/examples/gridding/sg_execution_times.rst.txt index f6ace5ccb5b..b0f87d161de 100644 --- a/dev/_sources/examples/gridding/sg_execution_times.rst.txt +++ b/dev/_sources/examples/gridding/sg_execution_times.rst.txt @@ -6,16 +6,16 @@ Computation times ================= -**00:16.435** total execution time for **examples_gridding** files: +**00:25.023** total execution time for **examples_gridding** files: +-----------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_gridding_Wind_SLP_Interpolation.py` (``Wind_SLP_Interpolation.py``) | 00:08.913 | 0.0 MB | +| :ref:`sphx_glr_examples_gridding_Wind_SLP_Interpolation.py` (``Wind_SLP_Interpolation.py``) | 00:14.008 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_gridding_Point_Interpolation.py` (``Point_Interpolation.py``) | 00:06.124 | 0.0 MB | +| :ref:`sphx_glr_examples_gridding_Point_Interpolation.py` (``Point_Interpolation.py``) | 00:09.229 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_gridding_Natural_Neighbor_Verification.py` (``Natural_Neighbor_Verification.py``) | 00:00.566 | 0.0 MB | +| :ref:`sphx_glr_examples_gridding_Natural_Neighbor_Verification.py` (``Natural_Neighbor_Verification.py``) | 00:00.692 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_gridding_Inverse_Distance_Verification.py` (``Inverse_Distance_Verification.py``) | 00:00.460 | 0.0 MB | +| :ref:`sphx_glr_examples_gridding_Inverse_Distance_Verification.py` (``Inverse_Distance_Verification.py``) | 00:00.570 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_gridding_Find_Natural_Neighbors_Verification.py` (``Find_Natural_Neighbors_Verification.py``) | 00:00.372 | 0.0 MB | +| :ref:`sphx_glr_examples_gridding_Find_Natural_Neighbors_Verification.py` (``Find_Natural_Neighbors_Verification.py``) | 00:00.524 | 0.0 MB | +-----------------------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/dev/_sources/examples/isentropic_example.rst.txt b/dev/_sources/examples/isentropic_example.rst.txt index 91cef6a367e..8441c967713 100644 --- a/dev/_sources/examples/isentropic_example.rst.txt +++ b/dev/_sources/examples/isentropic_example.rst.txt @@ -563,7 +563,7 @@ The output is an xarray Dataset: u_wind (isentropic_level, y, x) float64 <Quantity([[[-1.319... v_wind (isentropic_level, y, x) float64 <Quantity([[[ 0.064... Specific_humidity (isentropic_level, y, x) float64 <Quantity([[[0.0088... - Geopotential_height (isentropic_level, y, x) float64 <Quantity([[[1063.6...


  • @@ -798,7 +798,7 @@ calculated with `mpcalc.montgomery_streamfunction`. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 14.277 seconds) + **Total running time of the script:** (0 minutes 22.016 seconds) .. _sphx_glr_download_examples_isentropic_example.py: diff --git a/dev/_sources/examples/meteogram_metpy.rst.txt b/dev/_sources/examples/meteogram_metpy.rst.txt index d76edcf90ac..f9c9b59997b 100644 --- a/dev/_sources/examples/meteogram_metpy.rst.txt +++ b/dev/_sources/examples/meteogram_metpy.rst.txt @@ -253,7 +253,7 @@ Plots time series data as a meteogram. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.929 seconds) + **Total running time of the script:** (0 minutes 1.292 seconds) .. _sphx_glr_download_examples_meteogram_metpy.py: diff --git a/dev/_sources/examples/plots/Combined_plotting.rst.txt b/dev/_sources/examples/plots/Combined_plotting.rst.txt index c6565251b0c..d523a3ac0bd 100644 --- a/dev/_sources/examples/plots/Combined_plotting.rst.txt +++ b/dev/_sources/examples/plots/Combined_plotting.rst.txt @@ -123,7 +123,7 @@ Plot the data on a map .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 7.178 seconds) + **Total running time of the script:** (0 minutes 11.365 seconds) .. _sphx_glr_download_examples_plots_Combined_plotting.py: diff --git a/dev/_sources/examples/plots/Hodograph_Inset.rst.txt b/dev/_sources/examples/plots/Hodograph_Inset.rst.txt index d68f1999409..9808491671e 100644 --- a/dev/_sources/examples/plots/Hodograph_Inset.rst.txt +++ b/dev/_sources/examples/plots/Hodograph_Inset.rst.txt @@ -146,7 +146,7 @@ assign units. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.272 seconds) + **Total running time of the script:** (0 minutes 0.384 seconds) .. _sphx_glr_download_examples_plots_Hodograph_Inset.py: diff --git a/dev/_sources/examples/plots/Mesonet_Stationplot.rst.txt b/dev/_sources/examples/plots/Mesonet_Stationplot.rst.txt index 4b840d7e069..7aeb283e15c 100644 --- a/dev/_sources/examples/plots/Mesonet_Stationplot.rst.txt +++ b/dev/_sources/examples/plots/Mesonet_Stationplot.rst.txt @@ -193,7 +193,7 @@ Create the figure .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 16.888 seconds) + **Total running time of the script:** (0 minutes 26.650 seconds) .. _sphx_glr_download_examples_plots_Mesonet_Stationplot.py: diff --git a/dev/_sources/examples/plots/Plotting_Surface_Analysis.rst.txt b/dev/_sources/examples/plots/Plotting_Surface_Analysis.rst.txt index 654db3e9424..24a6a5b7dd9 100644 --- a/dev/_sources/examples/plots/Plotting_Surface_Analysis.rst.txt +++ b/dev/_sources/examples/plots/Plotting_Surface_Analysis.rst.txt @@ -137,7 +137,7 @@ Set up the map for plotting, parse the bulletin, and plot it .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 7.429 seconds) + **Total running time of the script:** (0 minutes 11.484 seconds) .. _sphx_glr_download_examples_plots_Plotting_Surface_Analysis.py: diff --git a/dev/_sources/examples/plots/Simple_Fronts_Plot.rst.txt b/dev/_sources/examples/plots/Simple_Fronts_Plot.rst.txt index c7c2e35d4da..e8371012971 100644 --- a/dev/_sources/examples/plots/Simple_Fronts_Plot.rst.txt +++ b/dev/_sources/examples/plots/Simple_Fronts_Plot.rst.txt @@ -94,7 +94,7 @@ standard lines, but add our path effects. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.129 seconds) + **Total running time of the script:** (0 minutes 0.169 seconds) .. _sphx_glr_download_examples_plots_Simple_Fronts_Plot.py: diff --git a/dev/_sources/examples/plots/Simple_Sounding.rst.txt b/dev/_sources/examples/plots/Simple_Sounding.rst.txt index 7ea3d5497a5..3a65dd58775 100644 --- a/dev/_sources/examples/plots/Simple_Sounding.rst.txt +++ b/dev/_sources/examples/plots/Simple_Sounding.rst.txt @@ -149,7 +149,7 @@ assign units. .. code-block:: none - + @@ -206,7 +206,7 @@ assign units. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.400 seconds) + **Total running time of the script:** (0 minutes 0.571 seconds) .. _sphx_glr_download_examples_plots_Simple_Sounding.py: diff --git a/dev/_sources/examples/plots/Simplified_Image_Plot.rst.txt b/dev/_sources/examples/plots/Simplified_Image_Plot.rst.txt index 1a56b75a9d3..fc66183c902 100644 --- a/dev/_sources/examples/plots/Simplified_Image_Plot.rst.txt +++ b/dev/_sources/examples/plots/Simplified_Image_Plot.rst.txt @@ -75,7 +75,7 @@ Plots a sample satellite image file. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.703 seconds) + **Total running time of the script:** (0 minutes 1.008 seconds) .. _sphx_glr_download_examples_plots_Simplified_Image_Plot.py: diff --git a/dev/_sources/examples/plots/Skew-T_Layout.rst.txt b/dev/_sources/examples/plots/Skew-T_Layout.rst.txt index 5776e7b3577..e17f2137f34 100644 --- a/dev/_sources/examples/plots/Skew-T_Layout.rst.txt +++ b/dev/_sources/examples/plots/Skew-T_Layout.rst.txt @@ -146,7 +146,7 @@ assign units. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.258 seconds) + **Total running time of the script:** (0 minutes 0.372 seconds) .. _sphx_glr_download_examples_plots_Skew-T_Layout.py: diff --git a/dev/_sources/examples/plots/Sounding_LCL_Dataset.rst.txt b/dev/_sources/examples/plots/Sounding_LCL_Dataset.rst.txt index 9bd76bb7eae..b9d949a538a 100644 --- a/dev/_sources/examples/plots/Sounding_LCL_Dataset.rst.txt +++ b/dev/_sources/examples/plots/Sounding_LCL_Dataset.rst.txt @@ -160,7 +160,7 @@ assign units. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.239 seconds) + **Total running time of the script:** (0 minutes 0.341 seconds) .. _sphx_glr_download_examples_plots_Sounding_LCL_Dataset.py: diff --git a/dev/_sources/examples/plots/Station_Plot.rst.txt b/dev/_sources/examples/plots/Station_Plot.rst.txt index 16c5e57ad8c..af12f98f86d 100644 --- a/dev/_sources/examples/plots/Station_Plot.rst.txt +++ b/dev/_sources/examples/plots/Station_Plot.rst.txt @@ -184,7 +184,7 @@ The payoff .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 16.486 seconds) + **Total running time of the script:** (0 minutes 24.384 seconds) .. _sphx_glr_download_examples_plots_Station_Plot.py: diff --git a/dev/_sources/examples/plots/Station_Plot_with_Layout.rst.txt b/dev/_sources/examples/plots/Station_Plot_with_Layout.rst.txt index 7ee47574fe4..2cac2f8a64e 100644 --- a/dev/_sources/examples/plots/Station_Plot_with_Layout.rst.txt +++ b/dev/_sources/examples/plots/Station_Plot_with_Layout.rst.txt @@ -31,7 +31,7 @@ existing point data in a format you can work with trivially, the station plot wi The `StationPlotLayout` class is used to standardize the plotting various parameters (i.e. temperature), keeping track of the location, formatting, and even the units for use in -the station plot. This makes it easy (if using standardized names) to re-use a given layout +the station plot. This makes it easy (if using standardized names) to reuse a given layout of a station plot. .. GENERATED FROM PYTHON SOURCE LINES 21-32 @@ -333,7 +333,7 @@ or instead, a custom layout can be used: .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 1.902 seconds) + **Total running time of the script:** (0 minutes 2.287 seconds) .. _sphx_glr_download_examples_plots_Station_Plot_with_Layout.py: diff --git a/dev/_sources/examples/plots/US_Counties.rst.txt b/dev/_sources/examples/plots/US_Counties.rst.txt index 4380aaf38d2..c46f2a5b92d 100644 --- a/dev/_sources/examples/plots/US_Counties.rst.txt +++ b/dev/_sources/examples/plots/US_Counties.rst.txt @@ -70,7 +70,7 @@ Demonstrate how to plot US counties at all three available resolutions. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 3.038 seconds) + **Total running time of the script:** (0 minutes 4.567 seconds) .. _sphx_glr_download_examples_plots_US_Counties.py: diff --git a/dev/_sources/examples/plots/nhc_wind_probabilities.rst.txt b/dev/_sources/examples/plots/nhc_wind_probabilities.rst.txt index f3b0753bb4e..4958aefa831 100644 --- a/dev/_sources/examples/plots/nhc_wind_probabilities.rst.txt +++ b/dev/_sources/examples/plots/nhc_wind_probabilities.rst.txt @@ -704,7 +704,7 @@ wind speed probabilities, along with some select cities and their specific proba .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 17.159 seconds) + **Total running time of the script:** (0 minutes 25.414 seconds) .. _sphx_glr_download_examples_plots_nhc_wind_probabilities.py: diff --git a/dev/_sources/examples/plots/raster_declarative.rst.txt b/dev/_sources/examples/plots/raster_declarative.rst.txt index b78718c8c23..1b50abd00d2 100644 --- a/dev/_sources/examples/plots/raster_declarative.rst.txt +++ b/dev/_sources/examples/plots/raster_declarative.rst.txt @@ -470,9 +470,9 @@ Preview the data: file_format: GRIB-1 location: /nomads3_data/raid2/noaaport/merged/narr/198704... _CoordinateModelRunDate: 1987-04-04T18:00:00Z - History: Translated to CF-1.0 Conventions by Netcdf-Java...
    @@ -586,7 +586,7 @@ Add the plot to a Map Panel and Panel Container. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 1.038 seconds) + **Total running time of the script:** (0 minutes 1.569 seconds) .. _sphx_glr_download_examples_plots_raster_declarative.py: diff --git a/dev/_sources/examples/plots/sg_execution_times.rst.txt b/dev/_sources/examples/plots/sg_execution_times.rst.txt index e29373d571d..302cba4186e 100644 --- a/dev/_sources/examples/plots/sg_execution_times.rst.txt +++ b/dev/_sources/examples/plots/sg_execution_times.rst.txt @@ -6,40 +6,40 @@ Computation times ================= -**01:25.519** total execution time for **examples_plots** files: +**02:09.329** total execution time for **examples_plots** files: +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_nhc_wind_probabilities.py` (``nhc_wind_probabilities.py``) | 00:17.159 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Mesonet_Stationplot.py` (``Mesonet_Stationplot.py``) | 00:26.650 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Mesonet_Stationplot.py` (``Mesonet_Stationplot.py``) | 00:16.888 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_nhc_wind_probabilities.py` (``nhc_wind_probabilities.py``) | 00:25.414 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Station_Plot.py` (``Station_Plot.py``) | 00:16.486 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Station_Plot.py` (``Station_Plot.py``) | 00:24.384 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_spc_convective_outlook.py` (``spc_convective_outlook.py``) | 00:09.656 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_spc_convective_outlook.py` (``spc_convective_outlook.py``) | 00:14.813 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Plotting_Surface_Analysis.py` (``Plotting_Surface_Analysis.py``) | 00:07.429 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Plotting_Surface_Analysis.py` (``Plotting_Surface_Analysis.py``) | 00:11.484 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Combined_plotting.py` (``Combined_plotting.py``) | 00:07.178 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Combined_plotting.py` (``Combined_plotting.py``) | 00:11.365 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_US_Counties.py` (``US_Counties.py``) | 00:03.038 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_US_Counties.py` (``US_Counties.py``) | 00:04.567 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Station_Plot_with_Layout.py` (``Station_Plot_with_Layout.py``) | 00:01.902 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_surface_declarative.py` (``surface_declarative.py``) | 00:02.593 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_surface_declarative.py` (``surface_declarative.py``) | 00:01.817 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Station_Plot_with_Layout.py` (``Station_Plot_with_Layout.py``) | 00:02.287 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_raster_declarative.py` (``raster_declarative.py``) | 00:01.038 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_raster_declarative.py` (``raster_declarative.py``) | 00:01.569 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_upperair_declarative.py` (``upperair_declarative.py``) | 00:00.929 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_upperair_declarative.py` (``upperair_declarative.py``) | 00:01.359 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Simplified_Image_Plot.py` (``Simplified_Image_Plot.py``) | 00:00.703 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Simplified_Image_Plot.py` (``Simplified_Image_Plot.py``) | 00:01.008 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Simple_Sounding.py` (``Simple_Sounding.py``) | 00:00.400 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Simple_Sounding.py` (``Simple_Sounding.py``) | 00:00.571 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Hodograph_Inset.py` (``Hodograph_Inset.py``) | 00:00.272 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Hodograph_Inset.py` (``Hodograph_Inset.py``) | 00:00.384 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Skew-T_Layout.py` (``Skew-T_Layout.py``) | 00:00.258 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Skew-T_Layout.py` (``Skew-T_Layout.py``) | 00:00.372 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Sounding_LCL_Dataset.py` (``Sounding_LCL_Dataset.py``) | 00:00.239 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Sounding_LCL_Dataset.py` (``Sounding_LCL_Dataset.py``) | 00:00.341 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_plots_Simple_Fronts_Plot.py` (``Simple_Fronts_Plot.py``) | 00:00.129 | 0.0 MB | +| :ref:`sphx_glr_examples_plots_Simple_Fronts_Plot.py` (``Simple_Fronts_Plot.py``) | 00:00.169 | 0.0 MB | +------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/dev/_sources/examples/plots/spc_convective_outlook.rst.txt b/dev/_sources/examples/plots/spc_convective_outlook.rst.txt index 6d0a7903b8f..7d01ec6dfd1 100644 --- a/dev/_sources/examples/plots/spc_convective_outlook.rst.txt +++ b/dev/_sources/examples/plots/spc_convective_outlook.rst.txt @@ -245,7 +245,7 @@ Add the geometry plot to a panel and container. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 9.656 seconds) + **Total running time of the script:** (0 minutes 14.813 seconds) .. _sphx_glr_download_examples_plots_spc_convective_outlook.py: diff --git a/dev/_sources/examples/plots/surface_declarative.rst.txt b/dev/_sources/examples/plots/surface_declarative.rst.txt index 61e878087ed..98f2d7b0407 100644 --- a/dev/_sources/examples/plots/surface_declarative.rst.txt +++ b/dev/_sources/examples/plots/surface_declarative.rst.txt @@ -131,7 +131,7 @@ Georgia. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 1.817 seconds) + **Total running time of the script:** (0 minutes 2.593 seconds) .. _sphx_glr_download_examples_plots_surface_declarative.py: diff --git a/dev/_sources/examples/plots/upperair_declarative.rst.txt b/dev/_sources/examples/plots/upperair_declarative.rst.txt index aef5dbc8ddd..57fdd7e0d01 100644 --- a/dev/_sources/examples/plots/upperair_declarative.rst.txt +++ b/dev/_sources/examples/plots/upperair_declarative.rst.txt @@ -125,7 +125,7 @@ Use the declarative plotting interface to create a CONUS upper-air map for 500 h .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.929 seconds) + **Total running time of the script:** (0 minutes 1.359 seconds) .. _sphx_glr_download_examples_plots_upperair_declarative.py: diff --git a/dev/_sources/examples/sg_execution_times.rst.txt b/dev/_sources/examples/sg_execution_times.rst.txt index 4ac674d98f5..05ea4b1d3da 100644 --- a/dev/_sources/examples/sg_execution_times.rst.txt +++ b/dev/_sources/examples/sg_execution_times.rst.txt @@ -6,22 +6,22 @@ Computation times ================= -**01:00.067** total execution time for **examples** files: +**01:28.180** total execution time for **examples** files: +------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_isentropic_example.py` (``isentropic_example.py``) | 00:14.277 | 0.0 MB | +| :ref:`sphx_glr_examples_isentropic_example.py` (``isentropic_example.py``) | 00:22.016 | 0.0 MB | +------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_sigma_to_pressure_interpolation.py` (``sigma_to_pressure_interpolation.py``) | 00:13.512 | 0.0 MB | +| :ref:`sphx_glr_examples_XArray_Projections.py` (``XArray_Projections.py``) | 00:19.680 | 0.0 MB | +------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_XArray_Projections.py` (``XArray_Projections.py``) | 00:12.456 | 0.0 MB | +| :ref:`sphx_glr_examples_Four_Panel_Map.py` (``Four_Panel_Map.py``) | 00:17.925 | 0.0 MB | +------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_Four_Panel_Map.py` (``Four_Panel_Map.py``) | 00:11.612 | 0.0 MB | +| :ref:`sphx_glr_examples_sigma_to_pressure_interpolation.py` (``sigma_to_pressure_interpolation.py``) | 00:16.961 | 0.0 MB | +------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_cross_section.py` (``cross_section.py``) | 00:06.244 | 0.0 MB | +| :ref:`sphx_glr_examples_cross_section.py` (``cross_section.py``) | 00:08.832 | 0.0 MB | +------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_meteogram_metpy.py` (``meteogram_metpy.py``) | 00:00.929 | 0.0 MB | +| :ref:`sphx_glr_examples_meteogram_metpy.py` (``meteogram_metpy.py``) | 00:01.292 | 0.0 MB | +------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_Complex-Sounding-Plot.py` (``Complex-Sounding-Plot.py``) | 00:00.812 | 0.0 MB | +| :ref:`sphx_glr_examples_Complex-Sounding-Plot.py` (``Complex-Sounding-Plot.py``) | 00:01.155 | 0.0 MB | +------------------------------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_examples_Advanced_Sounding.py` (``Advanced_Sounding.py``) | 00:00.224 | 0.0 MB | +| :ref:`sphx_glr_examples_Advanced_Sounding.py` (``Advanced_Sounding.py``) | 00:00.320 | 0.0 MB | +------------------------------------------------------------------------------------------------------+-----------+--------+ diff --git a/dev/_sources/examples/sigma_to_pressure_interpolation.rst.txt b/dev/_sources/examples/sigma_to_pressure_interpolation.rst.txt index 40c575140e8..7e93bc46300 100644 --- a/dev/_sources/examples/sigma_to_pressure_interpolation.rst.txt +++ b/dev/_sources/examples/sigma_to_pressure_interpolation.rst.txt @@ -188,7 +188,7 @@ variable for plotting. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 13.512 seconds) + **Total running time of the script:** (0 minutes 16.961 seconds) .. _sphx_glr_download_examples_sigma_to_pressure_interpolation.py: diff --git a/dev/_sources/tutorials/area_tutorial.rst.txt b/dev/_sources/tutorials/area_tutorial.rst.txt index 071139207e6..520eb47c21b 100644 --- a/dev/_sources/tutorials/area_tutorial.rst.txt +++ b/dev/_sources/tutorials/area_tutorial.rst.txt @@ -522,7 +522,7 @@ some surface observations. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 13.339 seconds) + **Total running time of the script:** (0 minutes 20.026 seconds) .. _sphx_glr_download_tutorials_area_tutorial.py: diff --git a/dev/_sources/tutorials/declarative_tutorial.rst.txt b/dev/_sources/tutorials/declarative_tutorial.rst.txt index ee7321cc949..d94c457e188 100644 --- a/dev/_sources/tutorials/declarative_tutorial.rst.txt +++ b/dev/_sources/tutorials/declarative_tutorial.rst.txt @@ -897,7 +897,7 @@ Default value is zero (e.g., no points are removed from the plot). .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 13.702 seconds) + **Total running time of the script:** (0 minutes 20.992 seconds) .. _sphx_glr_download_tutorials_declarative_tutorial.py: diff --git a/dev/_sources/tutorials/sg_execution_times.rst.txt b/dev/_sources/tutorials/sg_execution_times.rst.txt index 21d4e5e3ad4..82f45acc28b 100644 --- a/dev/_sources/tutorials/sg_execution_times.rst.txt +++ b/dev/_sources/tutorials/sg_execution_times.rst.txt @@ -6,16 +6,16 @@ Computation times ================= -**00:32.069** total execution time for **tutorials** files: +**00:47.821** total execution time for **tutorials** files: +---------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_tutorials_declarative_tutorial.py` (``declarative_tutorial.py``) | 00:13.702 | 0.0 MB | +| :ref:`sphx_glr_tutorials_declarative_tutorial.py` (``declarative_tutorial.py``) | 00:20.992 | 0.0 MB | +---------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_tutorials_area_tutorial.py` (``area_tutorial.py``) | 00:13.339 | 0.0 MB | +| :ref:`sphx_glr_tutorials_area_tutorial.py` (``area_tutorial.py``) | 00:20.026 | 0.0 MB | +---------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_tutorials_xarray_tutorial.py` (``xarray_tutorial.py``) | 00:03.539 | 0.0 MB | +| :ref:`sphx_glr_tutorials_xarray_tutorial.py` (``xarray_tutorial.py``) | 00:04.911 | 0.0 MB | +---------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_tutorials_upperair_soundings.py` (``upperair_soundings.py``) | 00:01.475 | 0.0 MB | +| :ref:`sphx_glr_tutorials_upperair_soundings.py` (``upperair_soundings.py``) | 00:01.871 | 0.0 MB | +---------------------------------------------------------------------------------+-----------+--------+ -| :ref:`sphx_glr_tutorials_unit_tutorial.py` (``unit_tutorial.py``) | 00:00.015 | 0.0 MB | +| :ref:`sphx_glr_tutorials_unit_tutorial.py` (``unit_tutorial.py``) | 00:00.022 | 0.0 MB | +---------------------------------------------------------------------------------+-----------+--------+ diff --git a/dev/_sources/tutorials/unit_tutorial.rst.txt b/dev/_sources/tutorials/unit_tutorial.rst.txt index 24bb68ce821..ee546a415bb 100644 --- a/dev/_sources/tutorials/unit_tutorial.rst.txt +++ b/dev/_sources/tutorials/unit_tutorial.rst.txt @@ -718,7 +718,7 @@ these when you're having issues. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 0.015 seconds) + **Total running time of the script:** (0 minutes 0.022 seconds) .. _sphx_glr_download_tutorials_unit_tutorial.py: diff --git a/dev/_sources/tutorials/upperair_soundings.rst.txt b/dev/_sources/tutorials/upperair_soundings.rst.txt index 9be70fe945c..59edaa970f4 100644 --- a/dev/_sources/tutorials/upperair_soundings.rst.txt +++ b/dev/_sources/tutorials/upperair_soundings.rst.txt @@ -329,7 +329,7 @@ which are not drawn. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 1.475 seconds) + **Total running time of the script:** (0 minutes 1.871 seconds) .. _sphx_glr_download_tutorials_upperair_soundings.py: diff --git a/dev/_sources/tutorials/xarray_tutorial.rst.txt b/dev/_sources/tutorials/xarray_tutorial.rst.txt index c8fd9d1a0b8..df5680dd862 100644 --- a/dev/_sources/tutorials/xarray_tutorial.rst.txt +++ b/dev/_sources/tutorials/xarray_tutorial.rst.txt @@ -475,22 +475,22 @@ First, some general imports... geospatial_lat_min: ... geospatial_lat_max: ... geospatial_lon_min: ... - geospatial_lon_max: ...
    @@ -945,20 +945,20 @@ if we look at just a single data variable? Grib2_Level_Type: 100 Grib2_Level_Desc: Isobaric surface Grib2_Generating_Process_Type: Forecast - grid_mapping: LatLon_361X720-0p25S-180p00E
  • long_name :
    Temperature @ Isobaric surface
    units :
    K
    Grib_Variable_Id :
    VAR_0-0-0_L100
    Grib2_Parameter :
    [0 0 0]
    Grib2_Parameter_Discipline :
    Meteorological products
    Grib2_Parameter_Category :
    Temperature
    Grib2_Parameter_Name :
    Temperature
    Grib2_Level_Type :
    100
    Grib2_Level_Desc :
    Isobaric surface
    Grib2_Generating_Process_Type :
    Forecast
    grid_mapping :
    LatLon_361X720-0p25S-180p00E


  • @@ -1416,20 +1416,20 @@ with that type standard_name: time long_name: time udunits: Hour since 2017-09-05T12:00:00Z - _metpy_axis: time
  • standard_name :
    time
    long_name :
    time
    udunits :
    Hour since 2017-09-05T12:00:00Z
    _metpy_axis :
    time


  • @@ -1934,20 +1934,20 @@ the CRS using the ``.assign_crs()`` method: Grib2_Level_Type: 100 Grib2_Level_Desc: Isobaric surface Grib2_Generating_Process_Type: Forecast - grid_mapping: LatLon_361X720-0p25S-180p00E
  • long_name :
    Temperature @ Isobaric surface
    units :
    K
    Grib_Variable_Id :
    VAR_0-0-0_L100
    Grib2_Parameter :
    [0 0 0]
    Grib2_Parameter_Discipline :
    Meteorological products
    Grib2_Parameter_Category :
    Temperature
    Grib2_Parameter_Name :
    Temperature
    Grib2_Level_Type :
    100
    Grib2_Level_Desc :
    Isobaric surface
    Grib2_Generating_Process_Type :
    Forecast
    grid_mapping :
    LatLon_361X720-0p25S-180p00E


  • @@ -2016,7 +2016,7 @@ corresponding to this CRS: - 2023-10-02T22:46:48.671614 + 2023-10-03T17:15:11.100704 image/svg+xml @@ -2059,7 +2059,7 @@ corresponding to this CRS: L 20.353759 138.1198 L 20.323382 138.074224 L 19.822506 137.861642 - " clip-path="url(#p6779563b94)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #000000"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + " clip-path="url(#p839c0d3030)" style="fill: none; stroke: #b0b0b0; stroke-width: 0.8"/> + - 2106.334802261879 joule/kilogram + 2106.334802261844 joule/kilogram

    @@ -11707,7 +11707,7 @@ following .. code-block:: none - + @@ -12137,12 +12137,12 @@ work is required to manually supply the required information, for example, latitude (y, x) float64 38.5 38.49 38.48 39.4 ... 39.38 40.3 40.29 40.28 longitude (y, x) float64 -97.5 -96.35 -95.2 -97.5 ... -97.5 -96.32 -95.14 Data variables: - temperature (y, x) int64 <Quantity([[0 1 2] [3 4 5] [6 7 8]], 'degree_...
    • temperature
      (y, x)
      int64
      <Quantity([[0 1 2] [3 4 5] [6 ...
      Magnitude
      [[0 1 2]
      [3 4 5]
      [6 7 8]]
      Unitsdegree_Celsius
    • y
      PandasIndex
      PandasIndex(Index([0.0, 100000.0, 200000.0], dtype='float64', name='y'))
    • x
      PandasIndex
      PandasIndex(Index([0.0, 100000.0, 200000.0], dtype='float64', name='x'))


  • @@ -12251,7 +12251,7 @@ in handy. .. rst-class:: sphx-glr-timing - **Total running time of the script:** (0 minutes 3.539 seconds) + **Total running time of the script:** (0 minutes 4.911 seconds) .. _sphx_glr_download_tutorials_xarray_tutorial.py: diff --git a/dev/api/areas.html b/dev/api/areas.html index 8d18b64ea62..fa2998a9365 100644 --- a/dev/api/areas.html +++ b/dev/api/areas.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.absolute_momentum.html b/dev/api/generated/metpy.calc.absolute_momentum.html index 905a362abeb..e85bad47058 100644 --- a/dev/api/generated/metpy.calc.absolute_momentum.html +++ b/dev/api/generated/metpy.calc.absolute_momentum.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.absolute_vorticity.html b/dev/api/generated/metpy.calc.absolute_vorticity.html index d88f842e15f..cac9c566c64 100644 --- a/dev/api/generated/metpy.calc.absolute_vorticity.html +++ b/dev/api/generated/metpy.calc.absolute_vorticity.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.add_height_to_pressure.html b/dev/api/generated/metpy.calc.add_height_to_pressure.html index fd233379499..ef9e3ad90bf 100644 --- a/dev/api/generated/metpy.calc.add_height_to_pressure.html +++ b/dev/api/generated/metpy.calc.add_height_to_pressure.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.add_pressure_to_height.html b/dev/api/generated/metpy.calc.add_pressure_to_height.html index 6ac60864072..95151faf6bf 100644 --- a/dev/api/generated/metpy.calc.add_pressure_to_height.html +++ b/dev/api/generated/metpy.calc.add_pressure_to_height.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.advection.html b/dev/api/generated/metpy.calc.advection.html index 9415608f2ea..7f26330d9d2 100644 --- a/dev/api/generated/metpy.calc.advection.html +++ b/dev/api/generated/metpy.calc.advection.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.ageostrophic_wind.html b/dev/api/generated/metpy.calc.ageostrophic_wind.html index a6a9a304233..e749b72661f 100644 --- a/dev/api/generated/metpy.calc.ageostrophic_wind.html +++ b/dev/api/generated/metpy.calc.ageostrophic_wind.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.altimeter_to_sea_level_pressure.html b/dev/api/generated/metpy.calc.altimeter_to_sea_level_pressure.html index 71452a588d8..d69d719c801 100644 --- a/dev/api/generated/metpy.calc.altimeter_to_sea_level_pressure.html +++ b/dev/api/generated/metpy.calc.altimeter_to_sea_level_pressure.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.altimeter_to_station_pressure.html b/dev/api/generated/metpy.calc.altimeter_to_station_pressure.html index 10c643b932d..38305ca83a5 100644 --- a/dev/api/generated/metpy.calc.altimeter_to_station_pressure.html +++ b/dev/api/generated/metpy.calc.altimeter_to_station_pressure.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.angle_to_direction.html b/dev/api/generated/metpy.calc.angle_to_direction.html index cbd0c99c2f9..a94e9d69eee 100644 --- a/dev/api/generated/metpy.calc.angle_to_direction.html +++ b/dev/api/generated/metpy.calc.angle_to_direction.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.apparent_temperature.html b/dev/api/generated/metpy.calc.apparent_temperature.html index 09be658b509..bcda3245414 100644 --- a/dev/api/generated/metpy.calc.apparent_temperature.html +++ b/dev/api/generated/metpy.calc.apparent_temperature.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.azimuth_range_to_lat_lon.html b/dev/api/generated/metpy.calc.azimuth_range_to_lat_lon.html index 623687a0e8b..47da9a6a999 100644 --- a/dev/api/generated/metpy.calc.azimuth_range_to_lat_lon.html +++ b/dev/api/generated/metpy.calc.azimuth_range_to_lat_lon.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.brunt_vaisala_frequency.html b/dev/api/generated/metpy.calc.brunt_vaisala_frequency.html index 93b878364b2..c8fc4cc333b 100644 --- a/dev/api/generated/metpy.calc.brunt_vaisala_frequency.html +++ b/dev/api/generated/metpy.calc.brunt_vaisala_frequency.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.brunt_vaisala_frequency_squared.html b/dev/api/generated/metpy.calc.brunt_vaisala_frequency_squared.html index 9d2247270e7..e2ba4a700c9 100644 --- a/dev/api/generated/metpy.calc.brunt_vaisala_frequency_squared.html +++ b/dev/api/generated/metpy.calc.brunt_vaisala_frequency_squared.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.brunt_vaisala_period.html b/dev/api/generated/metpy.calc.brunt_vaisala_period.html index da4251591b4..da882bc3795 100644 --- a/dev/api/generated/metpy.calc.brunt_vaisala_period.html +++ b/dev/api/generated/metpy.calc.brunt_vaisala_period.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.bulk_shear.html b/dev/api/generated/metpy.calc.bulk_shear.html index b226567f472..446fd0d9f4b 100644 --- a/dev/api/generated/metpy.calc.bulk_shear.html +++ b/dev/api/generated/metpy.calc.bulk_shear.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.bunkers_storm_motion.html b/dev/api/generated/metpy.calc.bunkers_storm_motion.html index 9d5bd3c71c3..677eb976b5b 100644 --- a/dev/api/generated/metpy.calc.bunkers_storm_motion.html +++ b/dev/api/generated/metpy.calc.bunkers_storm_motion.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.cape_cin.html b/dev/api/generated/metpy.calc.cape_cin.html index 17eebad0030..c86b8c58ba0 100644 --- a/dev/api/generated/metpy.calc.cape_cin.html +++ b/dev/api/generated/metpy.calc.cape_cin.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.ccl.html b/dev/api/generated/metpy.calc.ccl.html index beb95a3fc87..0ed17b7f0de 100644 --- a/dev/api/generated/metpy.calc.ccl.html +++ b/dev/api/generated/metpy.calc.ccl.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.coriolis_parameter.html b/dev/api/generated/metpy.calc.coriolis_parameter.html index cdf83eb0014..41ea4d06cd7 100644 --- a/dev/api/generated/metpy.calc.coriolis_parameter.html +++ b/dev/api/generated/metpy.calc.coriolis_parameter.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.critical_angle.html b/dev/api/generated/metpy.calc.critical_angle.html index 7179300b962..212be0bdbc8 100644 --- a/dev/api/generated/metpy.calc.critical_angle.html +++ b/dev/api/generated/metpy.calc.critical_angle.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.cross_section_components.html b/dev/api/generated/metpy.calc.cross_section_components.html index 315a9b6edcd..7cc34e82c64 100644 --- a/dev/api/generated/metpy.calc.cross_section_components.html +++ b/dev/api/generated/metpy.calc.cross_section_components.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.cross_totals.html b/dev/api/generated/metpy.calc.cross_totals.html index c73075b5a74..461007fb7c9 100644 --- a/dev/api/generated/metpy.calc.cross_totals.html +++ b/dev/api/generated/metpy.calc.cross_totals.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.density.html b/dev/api/generated/metpy.calc.density.html index 158c0064bc7..d7635998f07 100644 --- a/dev/api/generated/metpy.calc.density.html +++ b/dev/api/generated/metpy.calc.density.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.dewpoint.html b/dev/api/generated/metpy.calc.dewpoint.html index 92405c97857..34c2cea9a20 100644 --- a/dev/api/generated/metpy.calc.dewpoint.html +++ b/dev/api/generated/metpy.calc.dewpoint.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.dewpoint_from_relative_humidity.html b/dev/api/generated/metpy.calc.dewpoint_from_relative_humidity.html index 6ac64d2d6e7..d086bdf6f32 100644 --- a/dev/api/generated/metpy.calc.dewpoint_from_relative_humidity.html +++ b/dev/api/generated/metpy.calc.dewpoint_from_relative_humidity.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.dewpoint_from_specific_humidity.html b/dev/api/generated/metpy.calc.dewpoint_from_specific_humidity.html index bc318bc823e..c0a6b8caf46 100644 --- a/dev/api/generated/metpy.calc.dewpoint_from_specific_humidity.html +++ b/dev/api/generated/metpy.calc.dewpoint_from_specific_humidity.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.divergence.html b/dev/api/generated/metpy.calc.divergence.html index 8ea20419636..0ea9d2b8e3b 100644 --- a/dev/api/generated/metpy.calc.divergence.html +++ b/dev/api/generated/metpy.calc.divergence.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.dry_lapse.html b/dev/api/generated/metpy.calc.dry_lapse.html index d2bf0a3c753..01d0b811345 100644 --- a/dev/api/generated/metpy.calc.dry_lapse.html +++ b/dev/api/generated/metpy.calc.dry_lapse.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.dry_static_energy.html b/dev/api/generated/metpy.calc.dry_static_energy.html index a5e3e7879b1..db88d57dafd 100644 --- a/dev/api/generated/metpy.calc.dry_static_energy.html +++ b/dev/api/generated/metpy.calc.dry_static_energy.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.el.html b/dev/api/generated/metpy.calc.el.html index 5632cc0f117..4a0c806917d 100644 --- a/dev/api/generated/metpy.calc.el.html +++ b/dev/api/generated/metpy.calc.el.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.equivalent_potential_temperature.html b/dev/api/generated/metpy.calc.equivalent_potential_temperature.html index 1fd340fd055..dbea5f02da2 100644 --- a/dev/api/generated/metpy.calc.equivalent_potential_temperature.html +++ b/dev/api/generated/metpy.calc.equivalent_potential_temperature.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.exner_function.html b/dev/api/generated/metpy.calc.exner_function.html index d03daf88cf3..fd9df8b1067 100644 --- a/dev/api/generated/metpy.calc.exner_function.html +++ b/dev/api/generated/metpy.calc.exner_function.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.find_bounding_indices.html b/dev/api/generated/metpy.calc.find_bounding_indices.html index c54c958e02e..e280cb3193b 100644 --- a/dev/api/generated/metpy.calc.find_bounding_indices.html +++ b/dev/api/generated/metpy.calc.find_bounding_indices.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.find_intersections.html b/dev/api/generated/metpy.calc.find_intersections.html index df96ea421ac..117f342ce61 100644 --- a/dev/api/generated/metpy.calc.find_intersections.html +++ b/dev/api/generated/metpy.calc.find_intersections.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.first_derivative.html b/dev/api/generated/metpy.calc.first_derivative.html index ee1c614ada3..69e39c890e4 100644 --- a/dev/api/generated/metpy.calc.first_derivative.html +++ b/dev/api/generated/metpy.calc.first_derivative.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.friction_velocity.html b/dev/api/generated/metpy.calc.friction_velocity.html index 2905be4b83e..6c6c42b12ea 100644 --- a/dev/api/generated/metpy.calc.friction_velocity.html +++ b/dev/api/generated/metpy.calc.friction_velocity.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.frontogenesis.html b/dev/api/generated/metpy.calc.frontogenesis.html index 26ec566b79f..2980473a6a8 100644 --- a/dev/api/generated/metpy.calc.frontogenesis.html +++ b/dev/api/generated/metpy.calc.frontogenesis.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.geopotential_to_height.html b/dev/api/generated/metpy.calc.geopotential_to_height.html index 745f1d7a5ba..ed91da80804 100644 --- a/dev/api/generated/metpy.calc.geopotential_to_height.html +++ b/dev/api/generated/metpy.calc.geopotential_to_height.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.geospatial_gradient.html b/dev/api/generated/metpy.calc.geospatial_gradient.html index d00c4636aca..1eec8ad3695 100644 --- a/dev/api/generated/metpy.calc.geospatial_gradient.html +++ b/dev/api/generated/metpy.calc.geospatial_gradient.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.geospatial_laplacian.html b/dev/api/generated/metpy.calc.geospatial_laplacian.html index c54c70e23f3..aaa4dbda9e6 100644 --- a/dev/api/generated/metpy.calc.geospatial_laplacian.html +++ b/dev/api/generated/metpy.calc.geospatial_laplacian.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.geostrophic_wind.html b/dev/api/generated/metpy.calc.geostrophic_wind.html index 74f46fe603a..2b9616e5b2c 100644 --- a/dev/api/generated/metpy.calc.geostrophic_wind.html +++ b/dev/api/generated/metpy.calc.geostrophic_wind.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.get_layer.html b/dev/api/generated/metpy.calc.get_layer.html index a5a93022c6c..7237a30fd3f 100644 --- a/dev/api/generated/metpy.calc.get_layer.html +++ b/dev/api/generated/metpy.calc.get_layer.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.get_layer_heights.html b/dev/api/generated/metpy.calc.get_layer_heights.html index b761fd7b13e..e223b27c619 100644 --- a/dev/api/generated/metpy.calc.get_layer_heights.html +++ b/dev/api/generated/metpy.calc.get_layer_heights.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.get_perturbation.html b/dev/api/generated/metpy.calc.get_perturbation.html index 0fbab9dfd5c..1bb5a208575 100644 --- a/dev/api/generated/metpy.calc.get_perturbation.html +++ b/dev/api/generated/metpy.calc.get_perturbation.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.gradient.html b/dev/api/generated/metpy.calc.gradient.html index b3e8a04c5bb..c982479b870 100644 --- a/dev/api/generated/metpy.calc.gradient.html +++ b/dev/api/generated/metpy.calc.gradient.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.gradient_richardson_number.html b/dev/api/generated/metpy.calc.gradient_richardson_number.html index 50b13ed44db..c5229250502 100644 --- a/dev/api/generated/metpy.calc.gradient_richardson_number.html +++ b/dev/api/generated/metpy.calc.gradient_richardson_number.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.heat_index.html b/dev/api/generated/metpy.calc.heat_index.html index 04b99d4e837..def6090683e 100644 --- a/dev/api/generated/metpy.calc.heat_index.html +++ b/dev/api/generated/metpy.calc.heat_index.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.height_to_geopotential.html b/dev/api/generated/metpy.calc.height_to_geopotential.html index bd8ee9a3709..5626542a889 100644 --- a/dev/api/generated/metpy.calc.height_to_geopotential.html +++ b/dev/api/generated/metpy.calc.height_to_geopotential.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.height_to_pressure_std.html b/dev/api/generated/metpy.calc.height_to_pressure_std.html index 0981905e3e3..f43f30ef100 100644 --- a/dev/api/generated/metpy.calc.height_to_pressure_std.html +++ b/dev/api/generated/metpy.calc.height_to_pressure_std.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.html b/dev/api/generated/metpy.calc.html index 3b71de5d324..38374c919f9 100644 --- a/dev/api/generated/metpy.calc.html +++ b/dev/api/generated/metpy.calc.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.inertial_advective_wind.html b/dev/api/generated/metpy.calc.inertial_advective_wind.html index fa6e6034254..946f575c99e 100644 --- a/dev/api/generated/metpy.calc.inertial_advective_wind.html +++ b/dev/api/generated/metpy.calc.inertial_advective_wind.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.isentropic_interpolation.html b/dev/api/generated/metpy.calc.isentropic_interpolation.html index 1c1552397c0..7ec0247e855 100644 --- a/dev/api/generated/metpy.calc.isentropic_interpolation.html +++ b/dev/api/generated/metpy.calc.isentropic_interpolation.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.isentropic_interpolation_as_dataset.html b/dev/api/generated/metpy.calc.isentropic_interpolation_as_dataset.html index ae420f2b791..fbed862eb45 100644 --- a/dev/api/generated/metpy.calc.isentropic_interpolation_as_dataset.html +++ b/dev/api/generated/metpy.calc.isentropic_interpolation_as_dataset.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.k_index.html b/dev/api/generated/metpy.calc.k_index.html index 35d2f561b46..41d74ccd967 100644 --- a/dev/api/generated/metpy.calc.k_index.html +++ b/dev/api/generated/metpy.calc.k_index.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.kinematic_flux.html b/dev/api/generated/metpy.calc.kinematic_flux.html index e5dbc97332a..da5d5c6726e 100644 --- a/dev/api/generated/metpy.calc.kinematic_flux.html +++ b/dev/api/generated/metpy.calc.kinematic_flux.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.laplacian.html b/dev/api/generated/metpy.calc.laplacian.html index 3685d5c3a26..60dff106fff 100644 --- a/dev/api/generated/metpy.calc.laplacian.html +++ b/dev/api/generated/metpy.calc.laplacian.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.lat_lon_grid_deltas.html b/dev/api/generated/metpy.calc.lat_lon_grid_deltas.html index 3a9fa549901..50dc0f79678 100644 --- a/dev/api/generated/metpy.calc.lat_lon_grid_deltas.html +++ b/dev/api/generated/metpy.calc.lat_lon_grid_deltas.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.lcl.html b/dev/api/generated/metpy.calc.lcl.html index b836ce0de3e..5b20d516c6a 100644 --- a/dev/api/generated/metpy.calc.lcl.html +++ b/dev/api/generated/metpy.calc.lcl.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.lfc.html b/dev/api/generated/metpy.calc.lfc.html index 7c3a74da1dc..48a8f6a2020 100644 --- a/dev/api/generated/metpy.calc.lfc.html +++ b/dev/api/generated/metpy.calc.lfc.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.lifted_index.html b/dev/api/generated/metpy.calc.lifted_index.html index efaeeefe3bb..e788547883a 100644 --- a/dev/api/generated/metpy.calc.lifted_index.html +++ b/dev/api/generated/metpy.calc.lifted_index.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.mean_pressure_weighted.html b/dev/api/generated/metpy.calc.mean_pressure_weighted.html index 1050916bac5..643e3904b39 100644 --- a/dev/api/generated/metpy.calc.mean_pressure_weighted.html +++ b/dev/api/generated/metpy.calc.mean_pressure_weighted.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.mixed_layer.html b/dev/api/generated/metpy.calc.mixed_layer.html index 8f2a6a57c7d..f3cd98a2f16 100644 --- a/dev/api/generated/metpy.calc.mixed_layer.html +++ b/dev/api/generated/metpy.calc.mixed_layer.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.mixed_layer_cape_cin.html b/dev/api/generated/metpy.calc.mixed_layer_cape_cin.html index 4c1fbcddbe8..bc901741693 100644 --- a/dev/api/generated/metpy.calc.mixed_layer_cape_cin.html +++ b/dev/api/generated/metpy.calc.mixed_layer_cape_cin.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.mixed_parcel.html b/dev/api/generated/metpy.calc.mixed_parcel.html index 73f17439309..a65bafff3c4 100644 --- a/dev/api/generated/metpy.calc.mixed_parcel.html +++ b/dev/api/generated/metpy.calc.mixed_parcel.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.mixing_ratio.html b/dev/api/generated/metpy.calc.mixing_ratio.html index 9d232bab382..f120f86d959 100644 --- a/dev/api/generated/metpy.calc.mixing_ratio.html +++ b/dev/api/generated/metpy.calc.mixing_ratio.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.mixing_ratio_from_relative_humidity.html b/dev/api/generated/metpy.calc.mixing_ratio_from_relative_humidity.html index efeb92bc3f7..4c4b278065a 100644 --- a/dev/api/generated/metpy.calc.mixing_ratio_from_relative_humidity.html +++ b/dev/api/generated/metpy.calc.mixing_ratio_from_relative_humidity.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.mixing_ratio_from_specific_humidity.html b/dev/api/generated/metpy.calc.mixing_ratio_from_specific_humidity.html index 0cad1e9078a..e9c22d8063f 100644 --- a/dev/api/generated/metpy.calc.mixing_ratio_from_specific_humidity.html +++ b/dev/api/generated/metpy.calc.mixing_ratio_from_specific_humidity.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.moist_lapse.html b/dev/api/generated/metpy.calc.moist_lapse.html index 001214f0b32..af1eaffdcd9 100644 --- a/dev/api/generated/metpy.calc.moist_lapse.html +++ b/dev/api/generated/metpy.calc.moist_lapse.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.moist_static_energy.html b/dev/api/generated/metpy.calc.moist_static_energy.html index b957c6271b0..a0deed414d9 100644 --- a/dev/api/generated/metpy.calc.moist_static_energy.html +++ b/dev/api/generated/metpy.calc.moist_static_energy.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.montgomery_streamfunction.html b/dev/api/generated/metpy.calc.montgomery_streamfunction.html index ac0bef6415d..2d770e03e1e 100644 --- a/dev/api/generated/metpy.calc.montgomery_streamfunction.html +++ b/dev/api/generated/metpy.calc.montgomery_streamfunction.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.most_unstable_cape_cin.html b/dev/api/generated/metpy.calc.most_unstable_cape_cin.html index aaac5726b88..f9ee3ae935c 100644 --- a/dev/api/generated/metpy.calc.most_unstable_cape_cin.html +++ b/dev/api/generated/metpy.calc.most_unstable_cape_cin.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.most_unstable_parcel.html b/dev/api/generated/metpy.calc.most_unstable_parcel.html index 7cc41948120..570a82e5232 100644 --- a/dev/api/generated/metpy.calc.most_unstable_parcel.html +++ b/dev/api/generated/metpy.calc.most_unstable_parcel.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.nearest_intersection_idx.html b/dev/api/generated/metpy.calc.nearest_intersection_idx.html index 592beed2b39..52c0ae02b04 100644 --- a/dev/api/generated/metpy.calc.nearest_intersection_idx.html +++ b/dev/api/generated/metpy.calc.nearest_intersection_idx.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.normal_component.html b/dev/api/generated/metpy.calc.normal_component.html index fd283610030..a0498bb1f4c 100644 --- a/dev/api/generated/metpy.calc.normal_component.html +++ b/dev/api/generated/metpy.calc.normal_component.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.parcel_profile.html b/dev/api/generated/metpy.calc.parcel_profile.html index 18d61909bae..b885a88b715 100644 --- a/dev/api/generated/metpy.calc.parcel_profile.html +++ b/dev/api/generated/metpy.calc.parcel_profile.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.parcel_profile_with_lcl.html b/dev/api/generated/metpy.calc.parcel_profile_with_lcl.html index ac904bbb9ad..f29dc5791c5 100644 --- a/dev/api/generated/metpy.calc.parcel_profile_with_lcl.html +++ b/dev/api/generated/metpy.calc.parcel_profile_with_lcl.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.parcel_profile_with_lcl_as_dataset.html b/dev/api/generated/metpy.calc.parcel_profile_with_lcl_as_dataset.html index 1fb46d19521..f4c8ee80163 100644 --- a/dev/api/generated/metpy.calc.parcel_profile_with_lcl_as_dataset.html +++ b/dev/api/generated/metpy.calc.parcel_profile_with_lcl_as_dataset.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.parse_angle.html b/dev/api/generated/metpy.calc.parse_angle.html index e696f8651f0..fb08f266b22 100644 --- a/dev/api/generated/metpy.calc.parse_angle.html +++ b/dev/api/generated/metpy.calc.parse_angle.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.potential_temperature.html b/dev/api/generated/metpy.calc.potential_temperature.html index ea45177c817..a246af78325 100644 --- a/dev/api/generated/metpy.calc.potential_temperature.html +++ b/dev/api/generated/metpy.calc.potential_temperature.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.potential_vorticity_baroclinic.html b/dev/api/generated/metpy.calc.potential_vorticity_baroclinic.html index fe78cd51202..c11358b4c7d 100644 --- a/dev/api/generated/metpy.calc.potential_vorticity_baroclinic.html +++ b/dev/api/generated/metpy.calc.potential_vorticity_baroclinic.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.potential_vorticity_barotropic.html b/dev/api/generated/metpy.calc.potential_vorticity_barotropic.html index 3ff3795cfe6..174f17405f9 100644 --- a/dev/api/generated/metpy.calc.potential_vorticity_barotropic.html +++ b/dev/api/generated/metpy.calc.potential_vorticity_barotropic.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.precipitable_water.html b/dev/api/generated/metpy.calc.precipitable_water.html index fbaf3332a02..27a36291248 100644 --- a/dev/api/generated/metpy.calc.precipitable_water.html +++ b/dev/api/generated/metpy.calc.precipitable_water.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.pressure_to_height_std.html b/dev/api/generated/metpy.calc.pressure_to_height_std.html index d3b40c0b806..5821032f590 100644 --- a/dev/api/generated/metpy.calc.pressure_to_height_std.html +++ b/dev/api/generated/metpy.calc.pressure_to_height_std.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.psychrometric_vapor_pressure_wet.html b/dev/api/generated/metpy.calc.psychrometric_vapor_pressure_wet.html index f7ea171de27..b6c8b73feee 100644 --- a/dev/api/generated/metpy.calc.psychrometric_vapor_pressure_wet.html +++ b/dev/api/generated/metpy.calc.psychrometric_vapor_pressure_wet.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.q_vector.html b/dev/api/generated/metpy.calc.q_vector.html index 845b8d9ab34..18e86b4b6e5 100644 --- a/dev/api/generated/metpy.calc.q_vector.html +++ b/dev/api/generated/metpy.calc.q_vector.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.reduce_point_density.html b/dev/api/generated/metpy.calc.reduce_point_density.html index 6fd9c609f57..e21a0e1ae6f 100644 --- a/dev/api/generated/metpy.calc.reduce_point_density.html +++ b/dev/api/generated/metpy.calc.reduce_point_density.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.relative_humidity_from_dewpoint.html b/dev/api/generated/metpy.calc.relative_humidity_from_dewpoint.html index f4da4625b5d..ff014144e4c 100644 --- a/dev/api/generated/metpy.calc.relative_humidity_from_dewpoint.html +++ b/dev/api/generated/metpy.calc.relative_humidity_from_dewpoint.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.relative_humidity_from_mixing_ratio.html b/dev/api/generated/metpy.calc.relative_humidity_from_mixing_ratio.html index 27571d4a8d0..b15cf08bf96 100644 --- a/dev/api/generated/metpy.calc.relative_humidity_from_mixing_ratio.html +++ b/dev/api/generated/metpy.calc.relative_humidity_from_mixing_ratio.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.relative_humidity_from_specific_humidity.html b/dev/api/generated/metpy.calc.relative_humidity_from_specific_humidity.html index e8a8336c19f..d27c27576b3 100644 --- a/dev/api/generated/metpy.calc.relative_humidity_from_specific_humidity.html +++ b/dev/api/generated/metpy.calc.relative_humidity_from_specific_humidity.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.relative_humidity_wet_psychrometric.html b/dev/api/generated/metpy.calc.relative_humidity_wet_psychrometric.html index 0a62f665651..6046429de62 100644 --- a/dev/api/generated/metpy.calc.relative_humidity_wet_psychrometric.html +++ b/dev/api/generated/metpy.calc.relative_humidity_wet_psychrometric.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.resample_nn_1d.html b/dev/api/generated/metpy.calc.resample_nn_1d.html index 37a54ad87fe..d49a7c508d5 100644 --- a/dev/api/generated/metpy.calc.resample_nn_1d.html +++ b/dev/api/generated/metpy.calc.resample_nn_1d.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.saturation_equivalent_potential_temperature.html b/dev/api/generated/metpy.calc.saturation_equivalent_potential_temperature.html index a7953305771..256256a0ad0 100644 --- a/dev/api/generated/metpy.calc.saturation_equivalent_potential_temperature.html +++ b/dev/api/generated/metpy.calc.saturation_equivalent_potential_temperature.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.saturation_mixing_ratio.html b/dev/api/generated/metpy.calc.saturation_mixing_ratio.html index 051d2ea0287..e8d63369162 100644 --- a/dev/api/generated/metpy.calc.saturation_mixing_ratio.html +++ b/dev/api/generated/metpy.calc.saturation_mixing_ratio.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.saturation_vapor_pressure.html b/dev/api/generated/metpy.calc.saturation_vapor_pressure.html index a7813fe9c66..2611c0ccb9a 100644 --- a/dev/api/generated/metpy.calc.saturation_vapor_pressure.html +++ b/dev/api/generated/metpy.calc.saturation_vapor_pressure.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.scale_height.html b/dev/api/generated/metpy.calc.scale_height.html index 0b9aa900039..49dfbb508ff 100644 --- a/dev/api/generated/metpy.calc.scale_height.html +++ b/dev/api/generated/metpy.calc.scale_height.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.second_derivative.html b/dev/api/generated/metpy.calc.second_derivative.html index 24269cac3b0..63ebc67339e 100644 --- a/dev/api/generated/metpy.calc.second_derivative.html +++ b/dev/api/generated/metpy.calc.second_derivative.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.shearing_deformation.html b/dev/api/generated/metpy.calc.shearing_deformation.html index 22e0db498f0..fe7cfb3e6a9 100644 --- a/dev/api/generated/metpy.calc.shearing_deformation.html +++ b/dev/api/generated/metpy.calc.shearing_deformation.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.showalter_index.html b/dev/api/generated/metpy.calc.showalter_index.html index e04fc83f2e3..0318dbf4592 100644 --- a/dev/api/generated/metpy.calc.showalter_index.html +++ b/dev/api/generated/metpy.calc.showalter_index.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.sigma_to_pressure.html b/dev/api/generated/metpy.calc.sigma_to_pressure.html index 8f5fe8f5278..ab5bfd92686 100644 --- a/dev/api/generated/metpy.calc.sigma_to_pressure.html +++ b/dev/api/generated/metpy.calc.sigma_to_pressure.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.significant_tornado.html b/dev/api/generated/metpy.calc.significant_tornado.html index b3d6d3e0f23..95102ab8519 100644 --- a/dev/api/generated/metpy.calc.significant_tornado.html +++ b/dev/api/generated/metpy.calc.significant_tornado.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.smooth_circular.html b/dev/api/generated/metpy.calc.smooth_circular.html index d156fc57018..031ea804066 100644 --- a/dev/api/generated/metpy.calc.smooth_circular.html +++ b/dev/api/generated/metpy.calc.smooth_circular.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.smooth_gaussian.html b/dev/api/generated/metpy.calc.smooth_gaussian.html index 80c79ad2e3d..e938a43f546 100644 --- a/dev/api/generated/metpy.calc.smooth_gaussian.html +++ b/dev/api/generated/metpy.calc.smooth_gaussian.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.smooth_n_point.html b/dev/api/generated/metpy.calc.smooth_n_point.html index 7e888aadfa2..a9d051d42a5 100644 --- a/dev/api/generated/metpy.calc.smooth_n_point.html +++ b/dev/api/generated/metpy.calc.smooth_n_point.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.smooth_rectangular.html b/dev/api/generated/metpy.calc.smooth_rectangular.html index f688633c583..e3d120ab40b 100644 --- a/dev/api/generated/metpy.calc.smooth_rectangular.html +++ b/dev/api/generated/metpy.calc.smooth_rectangular.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.smooth_window.html b/dev/api/generated/metpy.calc.smooth_window.html index 0ae89ee1cb1..e1d9de75ef0 100644 --- a/dev/api/generated/metpy.calc.smooth_window.html +++ b/dev/api/generated/metpy.calc.smooth_window.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.specific_humidity_from_dewpoint.html b/dev/api/generated/metpy.calc.specific_humidity_from_dewpoint.html index bedbcbd3507..6ba827b5ab9 100644 --- a/dev/api/generated/metpy.calc.specific_humidity_from_dewpoint.html +++ b/dev/api/generated/metpy.calc.specific_humidity_from_dewpoint.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.specific_humidity_from_mixing_ratio.html b/dev/api/generated/metpy.calc.specific_humidity_from_mixing_ratio.html index 2ef6022958b..194e660ff81 100644 --- a/dev/api/generated/metpy.calc.specific_humidity_from_mixing_ratio.html +++ b/dev/api/generated/metpy.calc.specific_humidity_from_mixing_ratio.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.static_stability.html b/dev/api/generated/metpy.calc.static_stability.html index 40d097ffe92..b1d0a7805a7 100644 --- a/dev/api/generated/metpy.calc.static_stability.html +++ b/dev/api/generated/metpy.calc.static_stability.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.storm_relative_helicity.html b/dev/api/generated/metpy.calc.storm_relative_helicity.html index 7615043d60e..83af7101233 100644 --- a/dev/api/generated/metpy.calc.storm_relative_helicity.html +++ b/dev/api/generated/metpy.calc.storm_relative_helicity.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.stretching_deformation.html b/dev/api/generated/metpy.calc.stretching_deformation.html index feb1db00058..443545b906d 100644 --- a/dev/api/generated/metpy.calc.stretching_deformation.html +++ b/dev/api/generated/metpy.calc.stretching_deformation.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.supercell_composite.html b/dev/api/generated/metpy.calc.supercell_composite.html index 901196b067a..4c6c9cd74d8 100644 --- a/dev/api/generated/metpy.calc.supercell_composite.html +++ b/dev/api/generated/metpy.calc.supercell_composite.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.surface_based_cape_cin.html b/dev/api/generated/metpy.calc.surface_based_cape_cin.html index a47c42243bd..2ee850d056c 100644 --- a/dev/api/generated/metpy.calc.surface_based_cape_cin.html +++ b/dev/api/generated/metpy.calc.surface_based_cape_cin.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.sweat_index.html b/dev/api/generated/metpy.calc.sweat_index.html index 25be189333d..8ef885dc855 100644 --- a/dev/api/generated/metpy.calc.sweat_index.html +++ b/dev/api/generated/metpy.calc.sweat_index.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.tangential_component.html b/dev/api/generated/metpy.calc.tangential_component.html index ffb5a0ddb07..74a3af89c10 100644 --- a/dev/api/generated/metpy.calc.tangential_component.html +++ b/dev/api/generated/metpy.calc.tangential_component.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.temperature_from_potential_temperature.html b/dev/api/generated/metpy.calc.temperature_from_potential_temperature.html index 1e5cec019f9..f38a72f9769 100644 --- a/dev/api/generated/metpy.calc.temperature_from_potential_temperature.html +++ b/dev/api/generated/metpy.calc.temperature_from_potential_temperature.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.thickness_hydrostatic.html b/dev/api/generated/metpy.calc.thickness_hydrostatic.html index d72569739bc..8ec1155f9c8 100644 --- a/dev/api/generated/metpy.calc.thickness_hydrostatic.html +++ b/dev/api/generated/metpy.calc.thickness_hydrostatic.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.thickness_hydrostatic_from_relative_humidity.html b/dev/api/generated/metpy.calc.thickness_hydrostatic_from_relative_humidity.html index 08d2e710bbe..0529e8761cd 100644 --- a/dev/api/generated/metpy.calc.thickness_hydrostatic_from_relative_humidity.html +++ b/dev/api/generated/metpy.calc.thickness_hydrostatic_from_relative_humidity.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.tke.html b/dev/api/generated/metpy.calc.tke.html index fb8745e3dd4..144fdcd0872 100644 --- a/dev/api/generated/metpy.calc.tke.html +++ b/dev/api/generated/metpy.calc.tke.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.total_deformation.html b/dev/api/generated/metpy.calc.total_deformation.html index 78bf31d346a..4178de60876 100644 --- a/dev/api/generated/metpy.calc.total_deformation.html +++ b/dev/api/generated/metpy.calc.total_deformation.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.total_totals_index.html b/dev/api/generated/metpy.calc.total_totals_index.html index cc98d5a15a8..9bff568f585 100644 --- a/dev/api/generated/metpy.calc.total_totals_index.html +++ b/dev/api/generated/metpy.calc.total_totals_index.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.unit_vectors_from_cross_section.html b/dev/api/generated/metpy.calc.unit_vectors_from_cross_section.html index 04a7d16aa01..d2fa093bc09 100644 --- a/dev/api/generated/metpy.calc.unit_vectors_from_cross_section.html +++ b/dev/api/generated/metpy.calc.unit_vectors_from_cross_section.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.vapor_pressure.html b/dev/api/generated/metpy.calc.vapor_pressure.html index 1823bbf01e1..cf19e7d70df 100644 --- a/dev/api/generated/metpy.calc.vapor_pressure.html +++ b/dev/api/generated/metpy.calc.vapor_pressure.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.vector_derivative.html b/dev/api/generated/metpy.calc.vector_derivative.html index 0a825624928..6fda880ea4b 100644 --- a/dev/api/generated/metpy.calc.vector_derivative.html +++ b/dev/api/generated/metpy.calc.vector_derivative.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.vertical_totals.html b/dev/api/generated/metpy.calc.vertical_totals.html index 0e970091998..dfef3151e36 100644 --- a/dev/api/generated/metpy.calc.vertical_totals.html +++ b/dev/api/generated/metpy.calc.vertical_totals.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.vertical_velocity.html b/dev/api/generated/metpy.calc.vertical_velocity.html index a23f78917ba..561f13d208f 100644 --- a/dev/api/generated/metpy.calc.vertical_velocity.html +++ b/dev/api/generated/metpy.calc.vertical_velocity.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.vertical_velocity_pressure.html b/dev/api/generated/metpy.calc.vertical_velocity_pressure.html index 70bfaf6fd9a..1cce6ae7abd 100644 --- a/dev/api/generated/metpy.calc.vertical_velocity_pressure.html +++ b/dev/api/generated/metpy.calc.vertical_velocity_pressure.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.virtual_potential_temperature.html b/dev/api/generated/metpy.calc.virtual_potential_temperature.html index 4011ef1b893..0b0d39f0217 100644 --- a/dev/api/generated/metpy.calc.virtual_potential_temperature.html +++ b/dev/api/generated/metpy.calc.virtual_potential_temperature.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.virtual_temperature.html b/dev/api/generated/metpy.calc.virtual_temperature.html index 53d2653d728..052f78b5179 100644 --- a/dev/api/generated/metpy.calc.virtual_temperature.html +++ b/dev/api/generated/metpy.calc.virtual_temperature.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.virtual_temperature_from_dewpoint.html b/dev/api/generated/metpy.calc.virtual_temperature_from_dewpoint.html index 09415f44bb6..483c8bd4ad7 100644 --- a/dev/api/generated/metpy.calc.virtual_temperature_from_dewpoint.html +++ b/dev/api/generated/metpy.calc.virtual_temperature_from_dewpoint.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.vorticity.html b/dev/api/generated/metpy.calc.vorticity.html index c62ff5f3ab8..a352287dc3e 100644 --- a/dev/api/generated/metpy.calc.vorticity.html +++ b/dev/api/generated/metpy.calc.vorticity.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.weighted_continuous_average.html b/dev/api/generated/metpy.calc.weighted_continuous_average.html index ef7361afe56..c54a4a3d57d 100644 --- a/dev/api/generated/metpy.calc.weighted_continuous_average.html +++ b/dev/api/generated/metpy.calc.weighted_continuous_average.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.calc.wet_bulb_temperature.html b/dev/api/generated/metpy.calc.wet_bulb_temperature.html index 0e823be1f6d..6428cc4b139 100644 --- a/dev/api/generated/metpy.calc.wet_bulb_temperature.html +++ b/dev/api/generated/metpy.calc.wet_bulb_temperature.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.wind_components.html b/dev/api/generated/metpy.calc.wind_components.html index 8946db2ab33..39ca8217504 100644 --- a/dev/api/generated/metpy.calc.wind_components.html +++ b/dev/api/generated/metpy.calc.wind_components.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.wind_direction.html b/dev/api/generated/metpy.calc.wind_direction.html index b7f6fe5ae42..2e83ab04145 100644 --- a/dev/api/generated/metpy.calc.wind_direction.html +++ b/dev/api/generated/metpy.calc.wind_direction.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.wind_speed.html b/dev/api/generated/metpy.calc.wind_speed.html index 34507701061..ad09c95e77e 100644 --- a/dev/api/generated/metpy.calc.wind_speed.html +++ b/dev/api/generated/metpy.calc.wind_speed.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.windchill.html b/dev/api/generated/metpy.calc.windchill.html index 1b0516c7bb4..cf5cf4fa199 100644 --- a/dev/api/generated/metpy.calc.windchill.html +++ b/dev/api/generated/metpy.calc.windchill.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.calc.zoom_xarray.html b/dev/api/generated/metpy.calc.zoom_xarray.html index 50283bdb544..e6a81c6ac0f 100644 --- a/dev/api/generated/metpy.calc.zoom_xarray.html +++ b/dev/api/generated/metpy.calc.zoom_xarray.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.constants.html b/dev/api/generated/metpy.constants.html index 19e9fe26482..e71b23ff545 100644 --- a/dev/api/generated/metpy.constants.html +++ b/dev/api/generated/metpy.constants.html @@ -76,7 +76,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.cross_section.html b/dev/api/generated/metpy.interpolate.cross_section.html index 069a061be08..691f6bce1c6 100644 --- a/dev/api/generated/metpy.interpolate.cross_section.html +++ b/dev/api/generated/metpy.interpolate.cross_section.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.geodesic.html b/dev/api/generated/metpy.interpolate.geodesic.html index e95afc7d06b..a9062f80d6a 100644 --- a/dev/api/generated/metpy.interpolate.geodesic.html +++ b/dev/api/generated/metpy.interpolate.geodesic.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.html b/dev/api/generated/metpy.interpolate.html index b0661905c68..8cc6465dd76 100644 --- a/dev/api/generated/metpy.interpolate.html +++ b/dev/api/generated/metpy.interpolate.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.interpolate_1d.html b/dev/api/generated/metpy.interpolate.interpolate_1d.html index 2806e78cb65..3c809063bbb 100644 --- a/dev/api/generated/metpy.interpolate.interpolate_1d.html +++ b/dev/api/generated/metpy.interpolate.interpolate_1d.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.interpolate_nans_1d.html b/dev/api/generated/metpy.interpolate.interpolate_nans_1d.html index 0fa09f8c0fc..90d5cbc4222 100644 --- a/dev/api/generated/metpy.interpolate.interpolate_nans_1d.html +++ b/dev/api/generated/metpy.interpolate.interpolate_nans_1d.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.interpolate_to_grid.html b/dev/api/generated/metpy.interpolate.interpolate_to_grid.html index 943745857c0..6628f226b47 100644 --- a/dev/api/generated/metpy.interpolate.interpolate_to_grid.html +++ b/dev/api/generated/metpy.interpolate.interpolate_to_grid.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.interpolate_to_isosurface.html b/dev/api/generated/metpy.interpolate.interpolate_to_isosurface.html index 10726475750..190074f2a83 100644 --- a/dev/api/generated/metpy.interpolate.interpolate_to_isosurface.html +++ b/dev/api/generated/metpy.interpolate.interpolate_to_isosurface.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.interpolate_to_points.html b/dev/api/generated/metpy.interpolate.interpolate_to_points.html index 7b52701443d..84a93be3adc 100644 --- a/dev/api/generated/metpy.interpolate.interpolate_to_points.html +++ b/dev/api/generated/metpy.interpolate.interpolate_to_points.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.interpolate_to_slice.html b/dev/api/generated/metpy.interpolate.interpolate_to_slice.html index 4557df2c58f..16bdb857d17 100644 --- a/dev/api/generated/metpy.interpolate.interpolate_to_slice.html +++ b/dev/api/generated/metpy.interpolate.interpolate_to_slice.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.inverse_distance_to_grid.html b/dev/api/generated/metpy.interpolate.inverse_distance_to_grid.html index 09d12964e0c..624dea632c2 100644 --- a/dev/api/generated/metpy.interpolate.inverse_distance_to_grid.html +++ b/dev/api/generated/metpy.interpolate.inverse_distance_to_grid.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.inverse_distance_to_points.html b/dev/api/generated/metpy.interpolate.inverse_distance_to_points.html index 09418ed3991..dec5301bf4e 100644 --- a/dev/api/generated/metpy.interpolate.inverse_distance_to_points.html +++ b/dev/api/generated/metpy.interpolate.inverse_distance_to_points.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.log_interpolate_1d.html b/dev/api/generated/metpy.interpolate.log_interpolate_1d.html index 52460d35311..17d904389e6 100644 --- a/dev/api/generated/metpy.interpolate.log_interpolate_1d.html +++ b/dev/api/generated/metpy.interpolate.log_interpolate_1d.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.natural_neighbor_to_grid.html b/dev/api/generated/metpy.interpolate.natural_neighbor_to_grid.html index 6e2eb635ed1..41eeca083ef 100644 --- a/dev/api/generated/metpy.interpolate.natural_neighbor_to_grid.html +++ b/dev/api/generated/metpy.interpolate.natural_neighbor_to_grid.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.natural_neighbor_to_points.html b/dev/api/generated/metpy.interpolate.natural_neighbor_to_points.html index ebf5a54578b..65d41f5e3a2 100644 --- a/dev/api/generated/metpy.interpolate.natural_neighbor_to_points.html +++ b/dev/api/generated/metpy.interpolate.natural_neighbor_to_points.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.remove_nan_observations.html b/dev/api/generated/metpy.interpolate.remove_nan_observations.html index 133ac2365f3..aab658e9c55 100644 --- a/dev/api/generated/metpy.interpolate.remove_nan_observations.html +++ b/dev/api/generated/metpy.interpolate.remove_nan_observations.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.remove_observations_below_value.html b/dev/api/generated/metpy.interpolate.remove_observations_below_value.html index 5b73357ff53..7f40db3e7fe 100644 --- a/dev/api/generated/metpy.interpolate.remove_observations_below_value.html +++ b/dev/api/generated/metpy.interpolate.remove_observations_below_value.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.interpolate.remove_repeat_coordinates.html b/dev/api/generated/metpy.interpolate.remove_repeat_coordinates.html index 82733aba0ea..120025571b5 100644 --- a/dev/api/generated/metpy.interpolate.remove_repeat_coordinates.html +++ b/dev/api/generated/metpy.interpolate.remove_repeat_coordinates.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.GempakGrid.html b/dev/api/generated/metpy.io.GempakGrid.html index 0847b22e74d..1820b30df98 100644 --- a/dev/api/generated/metpy.io.GempakGrid.html +++ b/dev/api/generated/metpy.io.GempakGrid.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.GempakSounding.html b/dev/api/generated/metpy.io.GempakSounding.html index a34abcf289e..15cc1e78367 100644 --- a/dev/api/generated/metpy.io.GempakSounding.html +++ b/dev/api/generated/metpy.io.GempakSounding.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.GempakSurface.html b/dev/api/generated/metpy.io.GempakSurface.html index 7b3db640b3b..45e21efef08 100644 --- a/dev/api/generated/metpy.io.GempakSurface.html +++ b/dev/api/generated/metpy.io.GempakSurface.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.GiniFile.html b/dev/api/generated/metpy.io.GiniFile.html index d04e0931328..52bc0b5c63c 100644 --- a/dev/api/generated/metpy.io.GiniFile.html +++ b/dev/api/generated/metpy.io.GiniFile.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.Level2File.html b/dev/api/generated/metpy.io.Level2File.html index e2225e73632..63f25e64294 100644 --- a/dev/api/generated/metpy.io.Level2File.html +++ b/dev/api/generated/metpy.io.Level2File.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.Level3File.html b/dev/api/generated/metpy.io.Level3File.html index 699fb3020dc..4c40f854c5f 100644 --- a/dev/api/generated/metpy.io.Level3File.html +++ b/dev/api/generated/metpy.io.Level3File.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.StationLookup.html b/dev/api/generated/metpy.io.StationLookup.html index ac925a0cb78..b3129674636 100644 --- a/dev/api/generated/metpy.io.StationLookup.html +++ b/dev/api/generated/metpy.io.StationLookup.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.add_station_lat_lon.html b/dev/api/generated/metpy.io.add_station_lat_lon.html index bb8cf48c51a..0e60f5226ca 100644 --- a/dev/api/generated/metpy.io.add_station_lat_lon.html +++ b/dev/api/generated/metpy.io.add_station_lat_lon.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.html b/dev/api/generated/metpy.io.html index c1eece73680..bc5ad5bc0a5 100644 --- a/dev/api/generated/metpy.io.html +++ b/dev/api/generated/metpy.io.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.is_precip_mode.html b/dev/api/generated/metpy.io.is_precip_mode.html index efeba4c4252..f5e7204f4ba 100644 --- a/dev/api/generated/metpy.io.is_precip_mode.html +++ b/dev/api/generated/metpy.io.is_precip_mode.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.parse_metar_file.html b/dev/api/generated/metpy.io.parse_metar_file.html index 96d1820bb5c..8ff198703ac 100644 --- a/dev/api/generated/metpy.io.parse_metar_file.html +++ b/dev/api/generated/metpy.io.parse_metar_file.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.parse_metar_to_dataframe.html b/dev/api/generated/metpy.io.parse_metar_to_dataframe.html index 266d53f108f..240faafdbf1 100644 --- a/dev/api/generated/metpy.io.parse_metar_to_dataframe.html +++ b/dev/api/generated/metpy.io.parse_metar_to_dataframe.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.io.parse_wpc_surface_bulletin.html b/dev/api/generated/metpy.io.parse_wpc_surface_bulletin.html index 324d85bdb44..315ca44c25b 100644 --- a/dev/api/generated/metpy.io.parse_wpc_surface_bulletin.html +++ b/dev/api/generated/metpy.io.parse_wpc_surface_bulletin.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ArrowPlot.html b/dev/api/generated/metpy.plots.ArrowPlot.html index 56b763003bd..2767d89f7ba 100644 --- a/dev/api/generated/metpy.plots.ArrowPlot.html +++ b/dev/api/generated/metpy.plots.ArrowPlot.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.BarbPlot.html b/dev/api/generated/metpy.plots.BarbPlot.html index ddc84b1980f..505673979c7 100644 --- a/dev/api/generated/metpy.plots.BarbPlot.html +++ b/dev/api/generated/metpy.plots.BarbPlot.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ColdFront.html b/dev/api/generated/metpy.plots.ColdFront.html index 43cf4b4458e..91413ddb16a 100644 --- a/dev/api/generated/metpy.plots.ColdFront.html +++ b/dev/api/generated/metpy.plots.ColdFront.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ColdFrontogenesis.html b/dev/api/generated/metpy.plots.ColdFrontogenesis.html index 26e1b624042..cd2c97ba739 100644 --- a/dev/api/generated/metpy.plots.ColdFrontogenesis.html +++ b/dev/api/generated/metpy.plots.ColdFrontogenesis.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ColdFrontolysis.html b/dev/api/generated/metpy.plots.ColdFrontolysis.html index 67f888203c0..d82b1e26ecd 100644 --- a/dev/api/generated/metpy.plots.ColdFrontolysis.html +++ b/dev/api/generated/metpy.plots.ColdFrontolysis.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ContourPlot.html b/dev/api/generated/metpy.plots.ContourPlot.html index 60221721ba3..10cb536b20e 100644 --- a/dev/api/generated/metpy.plots.ContourPlot.html +++ b/dev/api/generated/metpy.plots.ContourPlot.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.Dryline.html b/dev/api/generated/metpy.plots.Dryline.html index 0b39cf05ba2..167e3bebc33 100644 --- a/dev/api/generated/metpy.plots.Dryline.html +++ b/dev/api/generated/metpy.plots.Dryline.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.FilledContourPlot.html b/dev/api/generated/metpy.plots.FilledContourPlot.html index 981ee561d35..c50eb102f99 100644 --- a/dev/api/generated/metpy.plots.FilledContourPlot.html +++ b/dev/api/generated/metpy.plots.FilledContourPlot.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.Hodograph.html b/dev/api/generated/metpy.plots.Hodograph.html index ab7f6fee85e..c3bd510f713 100644 --- a/dev/api/generated/metpy.plots.Hodograph.html +++ b/dev/api/generated/metpy.plots.Hodograph.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ImagePlot.html b/dev/api/generated/metpy.plots.ImagePlot.html index 40dd285040f..170abddaf4c 100644 --- a/dev/api/generated/metpy.plots.ImagePlot.html +++ b/dev/api/generated/metpy.plots.ImagePlot.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.MapPanel.html b/dev/api/generated/metpy.plots.MapPanel.html index a00651c1d30..987123130d7 100644 --- a/dev/api/generated/metpy.plots.MapPanel.html +++ b/dev/api/generated/metpy.plots.MapPanel.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.OccludedFront.html b/dev/api/generated/metpy.plots.OccludedFront.html index e67f3ee02c6..9c0e21dc18a 100644 --- a/dev/api/generated/metpy.plots.OccludedFront.html +++ b/dev/api/generated/metpy.plots.OccludedFront.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.OccludedFrontogenesis.html b/dev/api/generated/metpy.plots.OccludedFrontogenesis.html index 95aa3f9dace..f430519f737 100644 --- a/dev/api/generated/metpy.plots.OccludedFrontogenesis.html +++ b/dev/api/generated/metpy.plots.OccludedFrontogenesis.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.OccludedFrontolysis.html b/dev/api/generated/metpy.plots.OccludedFrontolysis.html index 7a7bbae7f38..f26a031dc28 100644 --- a/dev/api/generated/metpy.plots.OccludedFrontolysis.html +++ b/dev/api/generated/metpy.plots.OccludedFrontolysis.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.PanelContainer.html b/dev/api/generated/metpy.plots.PanelContainer.html index ea71a8a509f..c811214a65f 100644 --- a/dev/api/generated/metpy.plots.PanelContainer.html +++ b/dev/api/generated/metpy.plots.PanelContainer.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.PlotGeometry.html b/dev/api/generated/metpy.plots.PlotGeometry.html index 75e71e61134..e1378ab2cd1 100644 --- a/dev/api/generated/metpy.plots.PlotGeometry.html +++ b/dev/api/generated/metpy.plots.PlotGeometry.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.PlotObs.html b/dev/api/generated/metpy.plots.PlotObs.html index e7a4c351985..6398806e003 100644 --- a/dev/api/generated/metpy.plots.PlotObs.html +++ b/dev/api/generated/metpy.plots.PlotObs.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.PlotScalar.html b/dev/api/generated/metpy.plots.PlotScalar.html index fa1eaca5293..17c2413c4d3 100644 --- a/dev/api/generated/metpy.plots.PlotScalar.html +++ b/dev/api/generated/metpy.plots.PlotScalar.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.PlotVector.html b/dev/api/generated/metpy.plots.PlotVector.html index bcf7ba93ea3..351bc1e76b2 100644 --- a/dev/api/generated/metpy.plots.PlotVector.html +++ b/dev/api/generated/metpy.plots.PlotVector.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.Plots2D.html b/dev/api/generated/metpy.plots.Plots2D.html index 5e9a2009dc8..5e3615a346e 100644 --- a/dev/api/generated/metpy.plots.Plots2D.html +++ b/dev/api/generated/metpy.plots.Plots2D.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.RasterPlot.html b/dev/api/generated/metpy.plots.RasterPlot.html index 2ea2d90134d..788dab0781b 100644 --- a/dev/api/generated/metpy.plots.RasterPlot.html +++ b/dev/api/generated/metpy.plots.RasterPlot.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.RidgeAxis.html b/dev/api/generated/metpy.plots.RidgeAxis.html index d4ab0dd8e7d..0652b59721d 100644 --- a/dev/api/generated/metpy.plots.RidgeAxis.html +++ b/dev/api/generated/metpy.plots.RidgeAxis.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ScallopedStroke.html b/dev/api/generated/metpy.plots.ScallopedStroke.html index c4978a36e07..672a6b05d46 100644 --- a/dev/api/generated/metpy.plots.ScallopedStroke.html +++ b/dev/api/generated/metpy.plots.ScallopedStroke.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.SkewT.html b/dev/api/generated/metpy.plots.SkewT.html index 8c432e90029..c3fa389887f 100644 --- a/dev/api/generated/metpy.plots.SkewT.html +++ b/dev/api/generated/metpy.plots.SkewT.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.Squall.html b/dev/api/generated/metpy.plots.Squall.html index 0f65fd24fd4..d9b7c58ffe7 100644 --- a/dev/api/generated/metpy.plots.Squall.html +++ b/dev/api/generated/metpy.plots.Squall.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.StationPlot.html b/dev/api/generated/metpy.plots.StationPlot.html index 62c1703b5c1..2a892519e63 100644 --- a/dev/api/generated/metpy.plots.StationPlot.html +++ b/dev/api/generated/metpy.plots.StationPlot.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.StationPlotLayout.html b/dev/api/generated/metpy.plots.StationPlotLayout.html index 78d94b134c0..1f129087555 100644 --- a/dev/api/generated/metpy.plots.StationPlotLayout.html +++ b/dev/api/generated/metpy.plots.StationPlotLayout.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.StationaryFront.html b/dev/api/generated/metpy.plots.StationaryFront.html index 254e6885463..d589a832396 100644 --- a/dev/api/generated/metpy.plots.StationaryFront.html +++ b/dev/api/generated/metpy.plots.StationaryFront.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.StationaryFrontogenesis.html b/dev/api/generated/metpy.plots.StationaryFrontogenesis.html index f733dddc280..be2f4aac7b7 100644 --- a/dev/api/generated/metpy.plots.StationaryFrontogenesis.html +++ b/dev/api/generated/metpy.plots.StationaryFrontogenesis.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.StationaryFrontolysis.html b/dev/api/generated/metpy.plots.StationaryFrontolysis.html index 9f147818021..78f8fd4afbe 100644 --- a/dev/api/generated/metpy.plots.StationaryFrontolysis.html +++ b/dev/api/generated/metpy.plots.StationaryFrontolysis.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.WarmFront.html b/dev/api/generated/metpy.plots.WarmFront.html index 710a16fb569..6283880b481 100644 --- a/dev/api/generated/metpy.plots.WarmFront.html +++ b/dev/api/generated/metpy.plots.WarmFront.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.WarmFrontogenesis.html b/dev/api/generated/metpy.plots.WarmFrontogenesis.html index eafd8e67b9b..610b668759f 100644 --- a/dev/api/generated/metpy.plots.WarmFrontogenesis.html +++ b/dev/api/generated/metpy.plots.WarmFrontogenesis.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.WarmFrontolysis.html b/dev/api/generated/metpy.plots.WarmFrontolysis.html index 0566d32032c..31634097ea1 100644 --- a/dev/api/generated/metpy.plots.WarmFrontolysis.html +++ b/dev/api/generated/metpy.plots.WarmFrontolysis.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.add_metpy_logo.html b/dev/api/generated/metpy.plots.add_metpy_logo.html index 328aa563edb..6f08aa1b2a9 100644 --- a/dev/api/generated/metpy.plots.add_metpy_logo.html +++ b/dev/api/generated/metpy.plots.add_metpy_logo.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.add_timestamp.html b/dev/api/generated/metpy.plots.add_timestamp.html index 0f41e707758..90933551df0 100644 --- a/dev/api/generated/metpy.plots.add_timestamp.html +++ b/dev/api/generated/metpy.plots.add_timestamp.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.add_unidata_logo.html b/dev/api/generated/metpy.plots.add_unidata_logo.html index 317a537d44c..424d20db7a6 100644 --- a/dev/api/generated/metpy.plots.add_unidata_logo.html +++ b/dev/api/generated/metpy.plots.add_unidata_logo.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.convert_gempak_color.html b/dev/api/generated/metpy.plots.convert_gempak_color.html index b51f112ea5f..82ddb1b01b2 100644 --- a/dev/api/generated/metpy.plots.convert_gempak_color.html +++ b/dev/api/generated/metpy.plots.convert_gempak_color.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ctables.ColortableRegistry.html b/dev/api/generated/metpy.plots.ctables.ColortableRegistry.html index e8d0ff87b8f..0424b442d35 100644 --- a/dev/api/generated/metpy.plots.ctables.ColortableRegistry.html +++ b/dev/api/generated/metpy.plots.ctables.ColortableRegistry.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ctables.colortables.html b/dev/api/generated/metpy.plots.ctables.colortables.html index c53a7b348ca..b1e6e90f0b5 100644 --- a/dev/api/generated/metpy.plots.ctables.colortables.html +++ b/dev/api/generated/metpy.plots.ctables.colortables.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ctables.convert_gempak_table.html b/dev/api/generated/metpy.plots.ctables.convert_gempak_table.html index 0ce424686c0..d03362a9fae 100644 --- a/dev/api/generated/metpy.plots.ctables.convert_gempak_table.html +++ b/dev/api/generated/metpy.plots.ctables.convert_gempak_table.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ctables.html b/dev/api/generated/metpy.plots.ctables.html index 7d8ef579ed4..3bd0de79b58 100644 --- a/dev/api/generated/metpy.plots.ctables.html +++ b/dev/api/generated/metpy.plots.ctables.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.ctables.read_colortable.html b/dev/api/generated/metpy.plots.ctables.read_colortable.html index c4a37b1ae3b..110f00dae55 100644 --- a/dev/api/generated/metpy.plots.ctables.read_colortable.html +++ b/dev/api/generated/metpy.plots.ctables.read_colortable.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.html b/dev/api/generated/metpy.plots.html index 96d25f0b850..fa6e5e41f13 100644 --- a/dev/api/generated/metpy.plots.html +++ b/dev/api/generated/metpy.plots.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.read_colortable.html b/dev/api/generated/metpy.plots.read_colortable.html index 90d99464a1f..a24428f0583 100644 --- a/dev/api/generated/metpy.plots.read_colortable.html +++ b/dev/api/generated/metpy.plots.read_colortable.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.plots.wx_code_to_numeric.html b/dev/api/generated/metpy.plots.wx_code_to_numeric.html index 1bc13ddc908..d188c1ac236 100644 --- a/dev/api/generated/metpy.plots.wx_code_to_numeric.html +++ b/dev/api/generated/metpy.plots.wx_code_to_numeric.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.units.check_units.html b/dev/api/generated/metpy.units.check_units.html index d8303dcf3cf..60290eb4b03 100644 --- a/dev/api/generated/metpy.units.check_units.html +++ b/dev/api/generated/metpy.units.check_units.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.units.concatenate.html b/dev/api/generated/metpy.units.concatenate.html index 93a73f2dda0..5cef52c748f 100644 --- a/dev/api/generated/metpy.units.concatenate.html +++ b/dev/api/generated/metpy.units.concatenate.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.units.html b/dev/api/generated/metpy.units.html index 7970a17d9a5..c7c4c8d159a 100644 --- a/dev/api/generated/metpy.units.html +++ b/dev/api/generated/metpy.units.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.units.is_quantity.html b/dev/api/generated/metpy.units.is_quantity.html index 8ae00660a38..4de84c985eb 100644 --- a/dev/api/generated/metpy.units.is_quantity.html +++ b/dev/api/generated/metpy.units.is_quantity.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.units.masked_array.html b/dev/api/generated/metpy.units.masked_array.html index e8fe5f43541..fec0aeb4b4e 100644 --- a/dev/api/generated/metpy.units.masked_array.html +++ b/dev/api/generated/metpy.units.masked_array.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.units.pandas_dataframe_to_unit_arrays.html b/dev/api/generated/metpy.units.pandas_dataframe_to_unit_arrays.html index 5b748341774..6ee915e9658 100644 --- a/dev/api/generated/metpy.units.pandas_dataframe_to_unit_arrays.html +++ b/dev/api/generated/metpy.units.pandas_dataframe_to_unit_arrays.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.units.process_units.html b/dev/api/generated/metpy.units.process_units.html index a6f7d4a3164..965ac90503a 100644 --- a/dev/api/generated/metpy.units.process_units.html +++ b/dev/api/generated/metpy.units.process_units.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.units.setup_registry.html b/dev/api/generated/metpy.units.setup_registry.html index 0e8f2e79bf2..0da98035eb6 100644 --- a/dev/api/generated/metpy.units.setup_registry.html +++ b/dev/api/generated/metpy.units.setup_registry.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.xarray.grid_deltas_from_dataarray.html b/dev/api/generated/metpy.xarray.grid_deltas_from_dataarray.html index 7014ae6e4fd..e7a999a9d9a 100644 --- a/dev/api/generated/metpy.xarray.grid_deltas_from_dataarray.html +++ b/dev/api/generated/metpy.xarray.grid_deltas_from_dataarray.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/generated/metpy.xarray.html b/dev/api/generated/metpy.xarray.html index a58fc0d5f18..84310acd09b 100644 --- a/dev/api/generated/metpy.xarray.html +++ b/dev/api/generated/metpy.xarray.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/index.html b/dev/api/index.html index f88291e3a10..f6a0de927a7 100644 --- a/dev/api/index.html +++ b/dev/api/index.html @@ -75,7 +75,7 @@ - + diff --git a/dev/api/references.html b/dev/api/references.html index 15e16b9c700..a0edd5d1d66 100644 --- a/dev/api/references.html +++ b/dev/api/references.html @@ -75,7 +75,7 @@ - + diff --git a/dev/devel/CONTRIBUTING.html b/dev/devel/CONTRIBUTING.html index e3955adcf5f..5d5868a2325 100644 --- a/dev/devel/CONTRIBUTING.html +++ b/dev/devel/CONTRIBUTING.html @@ -75,7 +75,7 @@ - + diff --git a/dev/devel/index.html b/dev/devel/index.html index d8f516f0b67..472bf7b116f 100644 --- a/dev/devel/index.html +++ b/dev/devel/index.html @@ -75,7 +75,7 @@ - + diff --git a/dev/devel/infrastructureguide.html b/dev/devel/infrastructureguide.html index fe4a645d7b7..c5b3cde6db7 100644 --- a/dev/devel/infrastructureguide.html +++ b/dev/devel/infrastructureguide.html @@ -75,7 +75,7 @@ - + diff --git a/dev/devel/roadmap.html b/dev/devel/roadmap.html index 58cb4ba55db..fc161561c41 100644 --- a/dev/devel/roadmap.html +++ b/dev/devel/roadmap.html @@ -75,7 +75,7 @@ - + diff --git a/dev/examples/Advanced_Sounding.html b/dev/examples/Advanced_Sounding.html index 009b7185641..5088a46ca69 100644 --- a/dev/examples/Advanced_Sounding.html +++ b/dev/examples/Advanced_Sounding.html @@ -75,7 +75,7 @@ - + @@ -646,7 +646,7 @@ plt.show() -Advanced Sounding

    Total running time of the script: (0 minutes 0.224 seconds)

    +Advanced Sounding

    Total running time of the script: (0 minutes 0.320 seconds)

    -Complex Sounding Plot
    [<matplotlib.lines.Line2D object at 0x7efccbd20250>]
    +Complex Sounding Plot
    [<matplotlib.lines.Line2D object at 0x7facb1565e50>]
     

    This layout isn’t bad, especially for how little code it required, @@ -710,7 +710,7 @@ skew.shade_cape(p, T, prof, alpha=0.2, label='SBCAPE')

    -
    <matplotlib.collections.PolyCollection object at 0x7efccbe0a690>
    +
    <matplotlib.collections.PolyCollection object at 0x7facb1f1b450>
     

    STEP 3: CREATE THE HODOGRAPH INSET. TAKE A FEW EXTRA STEPS TO @@ -760,7 +760,7 @@ length_includes_head=True, head_width=2)

    -Complex Sounding Plot
    <matplotlib.patches.FancyArrow object at 0x7efccbed9350>
    +Complex Sounding Plot
    <matplotlib.patches.FancyArrow object at 0x7facb1532c50>
     

    STEP 4: ADD A FEW EXTRA ELEMENTS TO REALLY MAKE A NEAT PLOT

    @@ -915,7 +915,7 @@ plt.figtext(0.83, 0.05, f'{int(super_comp.m)}', weight='bold', fontsize=15,
    -

    Total running time of the script: (0 minutes 0.812 seconds)

    +

    Total running time of the script: (0 minutes 1.155 seconds)

    -28 February 2017 21:00Z, 300-hPa Wind Speeds and Heights, 500-hPa Absolute Vorticity and Heights, Surface Temperatures, Precipitable Water

    Total running time of the script: (0 minutes 11.612 seconds)

    +28 February 2017 21:00Z, 300-hPa Wind Speeds and Heights, 500-hPa Absolute Vorticity and Heights, Surface Temperatures, Precipitable Water

    Total running time of the script: (0 minutes 17.925 seconds)

    -

    Total running time of the script: (0 minutes 12.456 seconds)

    +

    Total running time of the script: (0 minutes 19.680 seconds)

    -

    Total running time of the script: (0 minutes 0.235 seconds)

    +

    Total running time of the script: (0 minutes 0.356 seconds)

    -

    Total running time of the script: (0 minutes 0.149 seconds)

    +

    Total running time of the script: (0 minutes 0.221 seconds)



    However, this “quantification” is not without its consequences. By default, xarray loads its @@ -9565,7 +9565,7 @@

    Units#< * latitude (latitude) float32 50.0 49.5 49.0 48.5 ... 11.5 11.0 10.5 10.0 isobaric3 float64 5e+04 Attributes: - units: meter
  • units :
    meter


  • Other useful unit integration features include:

    @@ -9986,11 +9986,11 @@

    Units#< Grib2_Level_Type: 100 Grib2_Level_Desc: Isobaric surface Grib2_Generating_Process_Type: Forecast - grid_mapping: LatLon_361X720-0p25S-180p00E
  • long_name :
    Geopotential height @ Isobaric surface
    units :
    gpm
    Grib_Variable_Id :
    VAR_0-3-5_L100
    Grib2_Parameter :
    [0 3 5]
    Grib2_Parameter_Discipline :
    Meteorological products
    Grib2_Parameter_Category :
    Mass
    Grib2_Parameter_Name :
    Geopotential height
    Grib2_Level_Type :
    100
    Grib2_Level_Desc :
    Isobaric surface
    Grib2_Generating_Process_Type :
    Forecast
    grid_mapping :
    LatLon_361X720-0p25S-180p00E


  • Unit conversion:

    @@ -10443,16 +10443,16 @@

    Units#< Grib2_Level_Type: 100 Grib2_Level_Desc: Isobaric surface Grib2_Generating_Process_Type: Forecast - grid_mapping: LatLon_361X720-0p25S-180p00E
  • long_name :
    Temperature @ Isobaric surface
    Grib_Variable_Id :
    VAR_0-0-0_L100
    Grib2_Parameter :
    [0 0 0]
    Grib2_Parameter_Discipline :
    Meteorological products
    Grib2_Parameter_Category :
    Temperature
    Grib2_Parameter_Name :
    Temperature
    Grib2_Level_Type :
    100
    Grib2_Level_Desc :
    Isobaric surface
    Grib2_Generating_Process_Type :
    Forecast
    grid_mapping :
    LatLon_361X720-0p25S-180p00E


  • To base unit conversion:

    @@ -10913,16 +10913,16 @@

    Units#< Grib2_Level_Type: 100 Grib2_Level_Desc: Isobaric surface Grib2_Generating_Process_Type: Forecast - grid_mapping: LatLon_361X720-0p25S-180p00E
  • long_name :
    Temperature @ Isobaric surface
    Grib_Variable_Id :
    VAR_0-0-0_L100
    Grib2_Parameter :
    [0 0 0]
    Grib2_Parameter_Discipline :
    Meteorological products
    Grib2_Parameter_Category :
    Temperature
    Grib2_Parameter_Name :
    Temperature
    Grib2_Level_Type :
    100
    Grib2_Level_Desc :
    Isobaric surface
    Grib2_Generating_Process_Type :
    Forecast
    grid_mapping :
    LatLon_361X720-0p25S-180p00E


  • Unit conversion for coordinates:

    @@ -11332,7 +11332,7 @@

    Units#< Attributes: units: hPa positive: down - _metpy_axis: vertical + _metpy_axis: vertical

    Accessing just the underlying unit array:

    @@ -11752,13 +11752,13 @@

    Calculationsmetpy.calc @@ -11809,7 +11809,7 @@

    Calculations -2106.334802261879 joule/kilogram +2106.334802261844 joule/kilogram

    A few remaining portions of MetPy’s calculations (mainly the interpolation module and a few @@ -11842,7 +11842,7 @@

    CF-Compliant Dataset Exampleheights.plot() -time = 1987-04-04T18:00:00, isobaric = 500.0 [h...
    <matplotlib.collections.QuadMesh object at 0x7efccb4e31d0>
    +time = 1987-04-04T18:00:00, isobaric = 500.0 [h...
    <matplotlib.collections.QuadMesh object at 0x7facb0c0b6d0>
     
    # Save output
    @@ -12246,12 +12246,12 @@ 

    Non-Compliant Dataset Example.update_attribute method on the MetPy accessor may come in handy.

    -

    Total running time of the script: (0 minutes 3.539 seconds)

    +

    Total running time of the script: (0 minutes 4.911 seconds)