Ryan May
Ryan May
Looks like Ned Batchelder posted about the tests thing: https://nedbatchelder.com/blog/202111/coverage_goals.html
Also worth noting: https://github.com/nedbat/coveragepy/blob/ad824b4585c88d0a153dd248f4585084dea33189/.github/workflows/coverage.yml#L218-L221
I'm assuming you mean inline in the docstring? Or more coverage in our examples? Both? Happy to, it's just a resource issue. We'd love to have more contributions from our...
Welcome @jbsparo! In general this means adding one or more additional scripts within the [`examples/`](https://github.com/Unidata/MetPy/tree/main/examples) directory, demonstrating the use of some pieces of functionality in an authentic fashion. The examples...
@mgrover1 I don't want to let this go too long without a response, but generally supportive of the approach. My first concern is making sure we get all the math...
Thanks for digging that up! A few comments: 1. I'd really like to have it separated from the plotting call 2. In an ideal world, it'd be dynamically updated from...
So what I'd want to merge is a patch that adds a method to the `SkewT` class that allows the user to turn on the height scale bar. As far...
Nevermind, I mis-read the code before. I see what's going on and everything is aligned just fine.
Here was a quick hack we put together at AMS: ```python heights = np.array([1, 2, 3, 4, 5]) * units.km std_pressures = mpcalc.height_to_pressure_std(heights) for height_tick, p_tick in zip(heights, std_pressures): trans,...
Matplotlib has a "secondary axis" (provisional) functionality that might show a good path forward on this.