Fabien Maussion

Results 244 comments of Fabien Maussion

I've set-up something like this to generate these notes: https://fabienmaussion.info/scientific_programming It uses the notebook TOC extension but requires some changes to bookbook (see https://github.com/takluyver/bookbook/pull/13) Note that maybe this is all...

> Can you confirm its a Panel app? Yes! We call it "bokeh app" because we serve it on our server which is called https://bokeh.oggm.org -> in the end the...

@sgillies thanks! Intuitively, I would say that as a scientific tool such as Fiona should be able to handle numpy dtypes (somehow, `np.float64` doesn't seem to be a problem?). At...

@jasonwheritage no need to convert to strings : python's `int` works as well: https://github.com/OGGM/oggm/blob/de963a56359339274cc61763a2cab237ac3c33c9/oggm/utils/_workflow.py#L1823-L1826

These kinds of errors are very difficult to diagnose, sorry. It if works with xarray, you should still be able to use pure xarray to concatenate, and then use the...

Can you send: - full traceback - salem version - OS This works with latest salem for me, works on linux, and works [on the docs](https://salem.readthedocs.io/en/v0.2.3/xarray_acc.html), so it's hard for...

Can you try to install from master, and update pyproj as well in the process? ``` pip install git+https://github.com/fmaussion/salem.git ```

Can you share the output of following: ```python import xarray as xr import salem import geopandas import pyproj print(xr.__version__) print(salem.__version__) print(geopandas.__version__) print(pyproj.__version__) ``` This is working on our relatively recent...

OK, so I can only assume some upstream issue with windows / conda, most likely because of changes in pyproj. I've added a specific test for this case in https://github.com/fmaussion/salem/pull/156...

I've made an attempt to display a more informative error message in https://github.com/fmaussion/salem/pull/157 Can you try on latest master again?