Andrew

Results 588 comments of Andrew

Hey apologies for the late reply, I was planning to take a look last weekend, but it slipped out of my mind 😢 However, if you're able to make a...

Also relevant: https://github.com/developmentseed/titiler-xarray https://geoviews.org/user_guide/Using_WMTS_Offline.html

That sounds good to me. The only thing is that I can't guarantee I'll have time to get to this by next Tuesday (depends on how successful / straightforward the...

Okay I got around to kicking this off, starting with task 1 First off, the following code is heavily adapted from https://github.com/carbonplan/ndpyramid/blob/main/ndpyramid/core.py All I did was make it accept a...

Is it running wheel signal voltage? `KeysViewHDF5 ['acquisition', 'analysis', 'file_create_date', 'general', 'identifier', 'intervals', 'processing', 'session_description', 'session_start_time', 'specifications', 'stimulus', 'timestamps_reference_time', 'units']>` `h5_f["acquisition"].keys()`

Thanks! I realized the line that downloads that was commented out that's why I couldn't find it `# lfp = session.get_lfp(probe_id) # This will load 2 GB of LFP data`...

For task 2, load based on zoom level: https://github.com/holoviz-topics/neuro/assets/15331990/19565c22-c76c-4aab-9c2a-cf1467d77e1f ```python import numpy as np import holoviews as hv from holoviews.operation.datashader import datashade hv.extension("bokeh") def rescale(x_range): nlevels = len(ts_dt) sub_ds =...

The latest code, although it has been [brought to my attention](https://github.com/pydata/xarray/issues/8695) that apply_ufunc might not be needed here. So, I'm wondering whether each channel should be downsampled individually (looped) or...

Thanks to the advice from Deepak Cherian and Sam Levang (https://github.com/pydata/xarray/issues/8695#issuecomment-1947327688), I was able to make a mini breakthrough of keeping all the downsampled times, while keeping it blazingly fast...