Brian Blaylock

Results 167 comments of Brian Blaylock

Hi @arthurdurso. This can be accomplished with something like this ```python from goes2go import GOES import pandas as pd DATES = pd.date_range('2023-01-01 00:00', '2023-01-01 03:00', freq="H") G = GOES() ds_list...

You might be interested in a new capability I've slowly been working on to extract data at a point. This is in the current main branch, but hasn't been released...

Hi @vandam60, I think Syntopic has changed the level of data access for their free tier. I think only the last 12 months of data is free without a comercial...

The errors are coming from cfgrib, not Herbie. That said, it doesn't mean Herbie isn't at fault. It could be the GRIB2 file is corrupt or is an incomplete download....

Just ran into this issue myself and I wanted to share a visual example of the problem for anyone else who stumbles on this issue... If you compute the inverse...

Thanks, @jobh! I didn't know about the Rhumb line; this is very educational and helpful for my case. I should have read your previous comment more carefully 😆 > Note:...

Thanks for reporting this. Looks like I need to update some code.

If you want to open a pull request, feel free. Otherwise it might take me awhile to get there.

Possible starting point... - [cartopy.crs.CRS — cartopy 0.22.0 documentation (scitools.org.uk)](https://scitools.org.uk/cartopy/docs/latest/reference/generated/cartopy.crs.CRS.html#cartopy.crs.CRS.transform_points) - Parse_cf in [Xarray Integration (metpy.xarray) — MetPy 1.6 (unidata.github.io)](https://unidata.github.io/MetPy/latest/api/generated/metpy.xarray.html#metpy.xarray.MetPyDatasetAccessor) - [Xarray Integration (metpy.xarray) — MetPy 1.6 (unidata.github.io)](https://unidata.github.io/MetPy/latest/api/generated/metpy.xarray.html#metpy.xarray.MetPyDatasetAccessor)

this solution seems incomplete; ```python import numpy as np N = 500 ws = np.random.random(N) * 6 wd = np.random.random(N) * 360 from windrose import WindroseAxes ax = WindroseAxes.from_ax() ax.bar(wd,...