Edzer Pebesma

Results 708 comments of Edzer Pebesma

Great, will check it out! > I'm having a wired GitHub Action error on Windows and macOS related to sf. I'm unsure if that has anything to do with the...

@kalibera would merging this prevent the error we now see on [r-devel-windows](https://www.r-project.org/nosvn/R.check/r-devel-windows-x86_64/sf-00install.html)?

I don't think that `sf` does anything specific in this regard; could you check with `ogr2ogr` whether the key field is read correctly, and written e.g. to a gpkg or...

Here's a POC check: ```r remotes::install_github("edzer/testingsf") # Using github PAT from envvar GITHUB_PAT. Use `gitcreds::gitcreds_set()` and unset GITHUB_PAT in .Renviron (or elsewhere) if you want to use the more secure...

Fixed now by adding `base` - there might be others, like `utils` & `stats`?

Packages added (for now) to the `known_sf_aware` list because upstream package assume sf-aware behaviour: * `stats`, because of `as.dist` in `spatialsample` * `base`, because of `subset()` * `utils` because of...

I think I've done about five revdep checks on 800+ packages now, just to discover that there are new packages depending on `sf` arriving on CRAN on a daily basis....

Asking the question is answering it; this now allows e.g. package `spatialsample` to define in `.onLoad()` ```r if (utils::packageVersion("sf") >= "1.0.17") sf::sf_make_aware_pkg("rsample") ``` to make sure that `[.sf` has sf...