Giacomo Caria

Results 32 comments of Giacomo Caria

I can definitely access files in the S3 bucket, but I have just discovered that I can read the file using only `fiona`: ```python In [3]: fiona.open("s3://path/to/shapefile.shp") ``` so there...

That's a useful point you're making @jorisvandenbossche Indeed I can reproduce the error with the two lines of code you posted, so this has nothing to do with `geopandas`.

Both the snippets run fine and open correctly the shapefile. I have also tested that setting explicitly the AWS credentials (as in the link you've posted) works: ``` from fiona.session...

Sorry for the late reply. Indeed, I can confirm that is the case (last snippet works)

Thanks for the explanation! It looks like there are two contrasting needs here: 1. ease of use for users transitioning from `xarray.open_rasterio` 2. ease of use for users that are...

This is done neatly in `pandas` with a decorator (see [here](https://github.com/pandas-dev/pandas/pull/27573)) that takes care of the deprecation. Would it be fine to just implement the same in `xarray`?

I sometimes have the same error, below you can find a MRE, and these are the package versions I am using (please let me know if some relevant ones are...

Good catch @Hoxbro ! There's a very good chance that's what's going on. I agree with you that a better error message would be very helpful.

It's quite a huge file ~1GB (not sure why it's been made this big) so probably I'd have to cut it before attaching it. I have just tested I can...

Could this be a memory issue ? Maybe running interactively has a larger maximum memory that can be used ? I can probably check this.