Takaya Uchida

Results 117 comments of Takaya Uchida

Yes, the documentation examples are a bit out of date... `xrft.fft` is the up-to-date function to use. `xrft.dft` and `xrft.fft` have different default input arguments.

The same syntax was working fine till last week so I'm not sure what's changed...

> The absence of "size" or "modification time" is indicative of the portal being broken. I passed this on to the ECCO portal maintainer and he said that the "size"s...

> This would indicate that the size of the file was not available, which maybe the server doesn't support it (unlikely if it worked before). More likely, there either is...

> Also, @roxyboy's example failed to reproduce for me on https://us-central1-b.gcp.pangeo.io/. Following code works fine. > > ```python > from xmitgcm import llcreader > model = llcreader.ECCOPortalLLC2160Model() > dsw =...

> It seems to working again for me too... I'll close this, sorry for the disturbance. Changing the domain seems to give the error again: ``` dsw = model.get_dataset(varnames=['Eta'], type='latlon').sel(time='2012-02-01',...

> ```python > import fsspec > url = "https://data.nas.nasa.gov/ecco/download_data.php?file=/eccodata/llc_4320/compressed/0000154224/Eta.0000154224.data.shrunk" > with fsspec.open(url, mode='rb') as fp: > # test size works > assert fp.size == 562551864 > with fsspec.open(url, mode='rb') as...

@lily-dove I've read regional sea-surface data from LLC4320 in the past by ``` from xmitgcm import llcreader model = llcreader.ECCOPortalLLC4320Model() model.get_dataset(varnames=['U','V'], k_levels=[0], iters=iis, type='latlon' ).sel( j=slice(9555,10198),j_g=slice(9555,10198), i=slice(15355,15845),i_g=slice(15355,15845), ).isel(time=0,k=0,k_l=0,k_u=0,k_p1=0 ).chunk({'j':200,'i':200,'j_g':200,'i_g':200}) ```...

I'm getting the following GatewayClusterError when trying to activate my clusters on Binderhub: ``` --------------------------------------------------------------------------- GatewayClusterError Traceback (most recent call last) in 3 4 gateway = Gateway() ----> 5 cluster...

Thanks for sharing this. I was facing the same issue with bokeh=3.3.2.