MetPy icon indicating copy to clipboard operation
MetPy copied to clipboard

MetPy is a collection of tools in Python for reading, visualizing and performing calculations with weather data.

Results 285 MetPy issues
Sort by recently updated
recently updated
newest added

* Need to fix up the Gridspec example since it currently looks like crap: ![misaligned plots](https://unidata.github.io/MetPy/latest/_images/sphx_glr_Skew-T_Layout_001.png) That can be fixed by using `fig = plt.figure(figsize=(12, 9))` (makes more room for...

Type: Bug
Area: Examples
Type: Enhancement
good first issue

#### Description Of Changes This adds a `plot_vertical_range` method to `SkewT` to allow plotting up an indicator of a vertical range of interest, similar to those done in NSHARP/SHARPpy: The...

Type: Enhancement
Area: Plots

Right now the docs read: ``` u : array_like u-component of wind v : array_like v-component of wind c : array_like data to use for colormapping (e.g. heights, pressure, wind...

Type: Bug
Area: Plots

### What went wrong? ``` jupyterlab 3.2.9 ipython 8.0.1 ``` `dir()` behaving as-expected (and so tests passing), but I think some recent (and upcoming) Completer work in Jupyter Lab might...

Type: Bug
Area: Plots

#### Description Of Changes Hello! Im an atmospheric science grad student at UBC. I found + squished a bug in the skewt mixing lines function -- if you specify both...

Type: Bug
Area: Plots

### What went wrong? When using interpolate.interpolate_to_grid, the output grid spacing is not exactly the one specified by 'hres' parameter. ### Operating System Linux ### Version 1.2.0 ### Python Version...

Type: Bug
Area: Gridding

This example from a [StackOverflow question](https://stackoverflow.com/questions/70513818/getting-a-valueerror-zero-size-array-to-reduction-operation-minimum-which-has) fails: ```python from datetime import datetime, timedelta from siphon.catalog import TDSCatalog from siphon.ncss import NCSS import numpy as np from metpy.units import units import...

Type: Bug
Area: Calc

#### Description Of Changes This pull request fixes #2094 by adding in the function for pressure-weighted vertical average from Holton 5th Edition 2012 page 86. The reference to Holton 2012...

Area: Docs
Type: Enhancement

Here's example 1: ```python from datetime import datetime from metpy.io import GempakGrid import metpy print(metpy.__version__) gem_file_name = '/ldmdata/gempak/model/gfs/21092206_thin.gem' gem_file = GempakGrid(gem_file_name) plot_time = datetime(2021, 9, 25, 6) ht = gem_file.gdxarray(parameter='HGHT',...

Type: Bug
Area: IO

As noted in this [Stack Overflow question](https://stackoverflow.com/questions/69045234/calculation-of-the-mean-pressure-weighted-function/69123801?noredirect=1#comment122204804_69123801) it would be good to be clear what’s going on in this function, including the equation.

Area: Docs
Area: Calc
good first issue