Sarah Jordan
Sarah Jordan
Did this ever get resolved? I am interested in doing something similar.
@jamesrwrc, I ended up using [geoviews' Path](https://geoviews.org/user_guide/Geometries.html) in place of this -- so, not a solution but an alternative package/tool: ```python import geoviews as gv line_map = gv.Path(gdf, vdims=[var]).opts( height...
@Dylan-Pugh, I am interested in doing exactly the same. Have you made any progress on your custom provider extending `XarrayEDRProvider`? Is there any interest or movement in integrating this capability...
I've started drafting a solution to this [on our fork](https://github.com/LimnoTech/pygeoapi/blob/crs_handling/pygeoapi/provider/xarray_.py#L401-L425) within `_get_coverage_properties` with the following ```python grid_mapping = self.parse_grid_mapping() if grid_mapping is not None: crs_attrs = pyproj.CRS.to_cf(self._data[grid_mapping].attrs) epsg_code = crs_attrs.to_epsg()...
Great -- sounds good @dblodgett-usgs. I will continue down this path, and will add in that configuration functionality. I don't think utility functions exist to make the translation to -180-180,...
Has there been any progress on this issue? I am running into the exact same problem with using the hover tool.