Dan Allan

Results 761 comments of Dan Allan

Notes from a design conversation with @tacaswell, working from the top down... In the client `download()` method, let the user optionally specify _which_ cache to download into. (Otherwise, use the...

The above proposal was trying to combine two use cases: 1. Deliberate download for offline use 2. Passive automatic caching (like a web browser cache). This became very complex. Also,...

It probably also makes sense to make it possible to attach the cache in a read-only mode where it would: * not refresh or add any content * not update...

Thanks for the report @st3107. The conda packaging for tiled is brand new and may have some issues. We will investigate.

Thoughts from chat with @tacaswell: * 500 MB is probably good conservative default capacity * Max 500 KB per item (large items are not cached)

The requirement seems to be correctly declared here: https://github.com/bluesky/tiled/blob/a0bc8b282325b307c254b8872ddb4b713e9acd3c/requirements-server.txt#L5 I think the issue is in the conda recipe. @gwbischof is investigating.

Makes sense. I think a simple fix will work here: change that `del self.__mapping[key]` to `self.__mapping.pop(key, None)`.

Should we support `?slice=::mean(2)` for downsampling? It keeps coming up. I worry about adding much in the way of data processing because slippery slope. Things like log-scaling an image can...

In addition to downsampling over N pixels with `?slice=::mean(N)` might also support `?slice=::mean` to average a dimension down to 0-d, such as averaging an image time series over time to...

I guess I’m leaning: “Let’s do it but mark it as experimental and reserve the right to revisit moving it into a data reduction/processing microservice, once we actually have one.”...