Anthony North

Results 55 comments of Anthony North

How should we deal with non-contiguous slices? We'll need this for data.frame manipulation. Should we shallow copy, allowing indices to be any integer vector within range? I think this could...

I agree, walking the indices and making slices is very complicated and potentially more costly than a copy. An optional dependency on arrow is probably safe. You could create a...

I had imagined `wk_handle_indices()` would be performing a copy. The difficulty here, I think, is that wk readers are reading in order and we don't want that here. Re-writing readers...

Is the intent to bring across the geoarrow_vctr as-is + necessary fixes? Does this package completely replace paleolimbot/geoarrow?

Ok. I'll follow up on the geoarrow_vctr discussion with a separate issue.

Basemaps without a token can currently only be achieved with raster tiles, using the [tile_layer](https://qfes.github.io/rdeck/reference/tile_layer.html). Maplibre support is planned #119 and _should_ be simple. WMSLayer support will come with deck.gl...

Yes. The basemap doesn't render if `map_style = NULL`, so you can do ```r # no basemap rdeck(map_style = NULL) |> add_whatever_layer() ``` Looks like disabling basemap isn't documented! :facepalm:....

The limitation here is that `update_x_layer()` replaces the in-client layer `data` if supplied. #120 It would also be useful to keep additional columns in `data` that aren't used for any...

This is doable. Via shiny is fairly straight forward using an `observable()` and doesn't require any javascript. Without shiny this will require an `onRender()` javascript function (not straight forward, non-public...

> I have been trying the onRender() approach, but I haven't managed to access the layer in the javascript function so far. Could you provide a pointer on how to...