Loïc Houpert

Results 21 comments of Loïc Houpert

While waiting for it, we can use that tool https://ecotrust-canada.github.io/markdown-toc/ :-)

Hi Kevin! I would say the more useful would be to be able to get the ANDRO atlas in an xarray dataset using the .float and .region methods. In a...

ok it's clearer. So the app will only access real-time trajectory data only? The advantage of Andro is all the extra work done to QC control the trajectory. I am...

Thanks all for your replies! I understand better the subtilities between all these datasets... Yes, I am mostly interested in trajectories and the "classic" ANDRO database works fine for what...

Hi @philippjfr and @conodeen , I am trying to do the same for a contourf plot. I want to reverse the y axis of this plot: ```python datatoplot['Data'].hvplot.contourf(z='V', x='refdist', y='depth')...

I added a minimal reproducible example below: ```python3 data = np.random.rand(3, 4) refdist = np.array(range(100,400,100)) depth = np.array(range(5,25,5)) ds = xr.Dataset( { "V": (["refdist", "depth"], data), }, coords={ "refdist": (refdist),...

Just found that the new implementation of 'transforms' by @philippjfr fix the problem (https://github.com/holoviz/hvplot/pull/526): In my case: ```python3 reversedepth = hv.dim('depth')*(-1) ds['V'].hvplot.contourf(z='V', x='refdist', y='depth', transforms=dict(depth=reversedepth)) ``` When reading the documentation...

Great I will think about a simple example.

Great! It seems to be a bug with jupyter-book. I just opened an issue about it [here](https://github.com/executablebooks/jupyter-book/issues/786#issuecomment-658878606). I will be away until mid August, but will work on it when...

@rougier The issue on the toc nased on .rst files has been solved with this PR https://github.com/executablebooks/jupyter-book/pull/1293 . Building a jupyter-book from .rst files is now quite straigthforward. I opened...