Andreas Girgensohn

Results 15 issues of Andreas Girgensohn

`mousePosition` is declared as `[number, number]`. https://github.com/danmarshall/deckgl-typings/blob/0fcc8ca4062026a4e1a8ab5abb9f27a85e1bc281/deck.gl__core/index.d.ts#L1080 Based on usage, it should have this type: `{ x: number; y: number }` https://github.com/visgl/deck.gl/search?q=mouseposition

Thanks for creating these typings. They are very useful for calling deck.gl from TypeScript. In `getTileData`, `tile.signal` is missing. Also, `tile.url` should be optional because it is added internally: https://github.com/danmarshall/deckgl-typings/blob/master/deck.gl__geo-layers/index.d.ts#L220...

This exposes the result of the `draw` function while making sure that there is an `options` object. I wrote this to satisfy #138. While testing my change, I noticed unexpected...

ready to merge

I would like to request that additional options would be passed to `makeFetchSource`. Those options are described at [Supplying request options](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch). I'm having a problem with `If-Range` headers and would...

**User story** I'm trying to add support for JPEG 2000 compression in OME-TIFF. I forced the resolution to geotiff 2.0.3 in my app. Unfortunately, the old geotiff version is still...

**Describe the bug** bioformats2raw produces very small images at the lowest level of the image pyramid. In one sample image (about 70,000 pixels in the larger dimension), the smallest image...

bug

Could you store the `omexml` property in `ZarrLoader` like you do in `OMETiffLoader` (maybe as a documented property)? It contains all the metadata of the image and could be useful...

It would be great if you could add support for string arrays that have been categorized with `numcodecs.Categorize`: https://zarr.readthedocs.io/en/stable/tutorial.html#string-arrays In `.zarray`, they are represented like this: ``` "filters":[{"astype":"|u1","dtype":"|O","id":"categorize","labels":["abc","bcd","cde","def"]}] ``` A...

In addition to `string`, the [`Response` constructor](https://developer.mozilla.org/en-US/docs/Web/API/Response/Response) supports several other types. That is important for mocking an `arrayBuffer` response. Unfortunately, the typing for `MockResponseInitFunction` only supports `string`. The following works...

The result of `mmap.mmap` in `MMapCache` does not appear to get closed. That may be the reason for this error when repeatedly opening files stored on S3: ``` File ".../python3.8/site-packages/fsspec/spec.py",...