Dave
Dave
In this line ```js mapmap._map.getMap() ``` How do you get / define `mapmap`?
oh it's in a shiny. Full reprex of the issue. ```r library(shiny) library(shinydashboard) library(mapdeck) set_token( secret::get_secret("MAPBOX") ) ui
yep, I get this error too. I'll take a look in the morning (Australian time). In the meantime, this works ```r data
Actually, I've had a quick look, and there are some geometries with a `z` property ```r df
@edzer With this example ```r sf::st_sfc( list( sf::st_point(c(0,0)) , sf::st_point(c(1,1,1)) ) ) ``` If I let it pass through the `CPL_get_z_range()` C++ functions, it ends up hitting [this stop point](https://github.com/r-spatial/sf/blob/master/R/sfc.R#L130)...
ok, I'll pull together a PR for review.
Hi, yeah, sorry - got sidetracked with something I'm working on. I think a limiting factor is the current requirement to have the [dimension uniform](https://github.com/r-spatial/sf/blob/master/R/sfc.R#L126) for all geometries. How do...
Yes, for example this works ```r geo
I think we also need to let it pass the `CPL_get_z_range()` function to avoid the original error ``` Error in CPL_get_z_range(obj, 3) : z error - expecting three columns; ```
yes, I think so. I had a very quick go at it with [this implementation](https://github.com/r-spatial/sf/compare/master...dcooley:issue1592) a few days ago.