Jeff Peck

Results 16 issues of Jeff Peck

i.e. ``` updateTriggersChanged: boolean | string | Record | null; ``` My workaround at the moment is to do this: ``` const { updateTriggersChanged } = changeFlags as { updateTriggersChanged:...

### Description I am not sure how easy it is to make this into an example, but I will try to explain what is happening: I have a custom layer...

doc

#### Description I have a composite layer whose renderLayers method is being implemented like this (as a contrived example): ``` renderLayers(): SolidPolygonLayer[] { const { gl } = this.context; const...

doc

#### Target Use case I am working on a CompositeLayer that needs to iterate though the data in the CPU on `updateState` before passing to the `render` method. While it...

feature

#### Describe the bug I am using the EditableGeoJsonLayer to handle drawing geometries over some rendered points to make selections. Recently, we needed to use the `modelMatrix` prop in our...

For the `round` function, I noticed that you use `0.49`, which seems to give a speed boost in some circumstances, but with random numbers, apparently not. ``` function createRandom(count, scale)...

See here: https://github.com/uber-web/probe.gl/blob/master/modules/log/src/utils/hi-res-timestamp.ts#L8 The imported `isBrowser` is a function that returns a boolean. It looks like that should be called `isBrowser()`

#### Describe the bug I am not sure if this is a nebula.gl bug, or a deck.gl bug, an xvfb bug, or something else entirely, but I have encountered it...

This is to address the issue noted in: https://github.com/geotiffjs/geotiff.js/issues/159 and allows geotiff to handle a situation where there is an interleaved tiff that has `SampleFormat` of `[1]`, despite there being...

It looks like zoomOffset is coming from the scale of the incoming modelMatrix. https://github.com/hms-dbmi/viv/blob/26e67bf6977a42227c151aed17b985063ad5eb6d/packages/layers/src/multiscale-image-layer/multiscale-image-layer.js#L144 This does not work as expected when the scale factor is two-dimensional (i.e. `new Matrix4().scale([1, .5])`....