Open gmaze opened 3 years ago
Not off the top of my head! I have no idea how a big-endian buffer would get in there. I develop on Mac but not using conda, so perhaps there's some difference in the pandas and/or pyarrow packaging that affects things. I'll look into this more, but in the meantime you could try various combinations of the 'manual' version to see if anything more meaningful pops up.
import argopandas as argo
import pandas as pd
files = argo.prof.head(5)
paths = ['dac/' + f for f in files.file]
levels = [ds.levels for ds in argo.nc(paths)]
pd.concat(levels, keys=files.file, names=['file'])
Thanks for your quick answer !
I've tested the above code, and indeed it worked 👍
So I guess this is coming from the .level
method ...
I just installed argopandas with conda:
and my first test fails like this:
returns the following error stack:
Here is a recap of my environment:
Any idea where this could come from ? Thanks g