Ghislain Picard
Ghislain Picard
## Describe the issue For graphs wider than the browser window, the ipympl widget used to show an horizontal scroll bar at the end of the output. It does not...
## Feature Request **Is your feature request related to a problem? Please describe.** slstr_l2 reader is only able to read Water Surface Temperature (WST) product, but slstr_l2 collection also provides...
I have a dataset with one file per day but some files are missing. Is there a way to deal with this case programmatically ? For instance a function like...
### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to find a similar request and didn't find it. -...
### What is your issue? Xarray is permissive regarding the type of the attributes. If using a wrong type, the error reveals the valid types: For serialization to netCDF files,...
### First check - [X] I added a descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it. -...
This is the end of a traceback that causes arbitrer death File "/usr/local/lib/python2.7/dist-packages/shinken/objects/satellitelink.py", line 226, in ping r = self.con.get('ping') File "/usr/local/lib/python2.7/dist-packages/shinken/http_client.py", line 139, in get raise Exception('Connection error to...
Using a ssh filesystem and put_files gives an error ```python import fsspec import sshfs fs = fsspec.filesystem("ssh", host='xx.xx.xx.xx', username='eouser') fs.put_file(lpath="t", rpath="/home/me/t") ``` I receive an exception: ``` File "/home/me/miniconda3/envs/olci/lib/python3.9/site-packages/fsspec/callbacks.py", line...
open_files is insensitive to some globstring: fspec.open_files("filename*.txt") --> it's working fine. fspec.open_files("filename?.txt") --> it's not working. fspec.open_files("filename[0-9].txt") --> it's not working. I'd expect all these globstrings to be expanded, as...
I'm trying to merge netcdf file into a single Zarr. The recipe is: ```python recipe = ( beam.Create(pattern.items()) | OpenURLWithFSSpec() | OpenWithXarray(file_type=pattern.file_type, xarray_open_kwargs={"decode_coords": "all"}) | StoreToZarr( combine_dims=pattern.combine_dim_keys, target_root='.', store_name='out.zarr', #target_chunks=chunks,...