Dave
Dave
Originally reported here - https://github.com/SymbolixAU/mapdeck/issues/337#issuecomment-735463808 When using a factor column as an 'id', the levels get dropped ```r df
coordinates stored in a single vector ``` [x,y,z,x,y,z,x,y,z,...] ``` And associated meta-data describing start indices, stride length --- References & discussion - https://github.com/geopandas/geo-arrow-spec/pull/2 - https://github.com/visgl/loaders.gl/issues/716 - https://github.com/geopandas/geo-arrow-spec/issues/3 - https://github.com/geopandas/geo-arrow-spec/issues/4 ---...
I think you can stick ``` remotes::install_github("r-spatial/sf") ``` Before or after this (I forget which is more likely to work): https://github.com/dcooley/sfheaders/blob/master/.github/workflows/R-CMD-check.yaml#L68 ...in a copy of your R-CMD-check.yaml file. If you're...
TODO - [ ] validity checks (and differences with `sf`) (like here I allow NAs, but sf doesn't) - [x] R API - [x] C++ API - [x] performance and...
Given `RcppSimdJson:::..deserialize_json()` can replicate the behaviour of `jsonify::from_json()`, should I include `RcppSimdJson` as a `LinkingTo`, and use it if the end-user's hardware is up to it? --- A wider question...
Make Rcpp::wrap() ers for all the Get(); calls
will be part of 3.0.0 release - [x] use [dynamic bootstrap loader](https://developers.google.com/maps/documentation/javascript/overview#Dynamic) - [x] load marker library - [x] load places library - [x] load visualization library - [x] load...
### Question The [`h3ToString`](https://github.com/uber/h3/blob/71e09dc002b211887c6db525609a449058233a71/src/h3lib/lib/h3Index.c#L75) function uses `sprintf()`. Is it possible / worth replacing with `snprintf()` ? ```c H3Error H3_EXPORT(h3ToString)(H3Index h, char *str, size_t sz) { // An unsigned 64 bit...