Open meshry opened 4 years ago
My project needs this to calculate nearest features in one of our shiny apps which is only supported from 3.6.1 or later. Would be great to have this work on the remote server.
I am also running into problems due to outdated GEOS (3.5.1), GDAL (2.2.2), and PROJ (4.9.2) versions on shinyapps.io. My app runs fine locally (GEOS 3.8.0, GDAL 3.0.4, and PROJ 6.3.1), but is unable to process some functions from the sf package once deployed. Are there any known workarounds besides manually recoding the CRS definitions as suggested here?
Shinyapps.io
has an old version ofGEOS
. This causes my Shiny app, which works fine on my laptop, to fail to deploy onShinyapps.io
. Specifically, the packagelwgeom (0.2-4)
fails to install onShinyapps.io
because it requiresGEOS 3.6.0
or later.I have the
sf
package installed and loaded to the library on my laptop and it links toGEOS 3.8.0
. I also have thelwgeom
package installed and loaded to the library on my laptop and it also links toGOES 3.8.0.
Yet, when I try to deploy the app toShinyapps.io
, I get the following error:upgrade GEOS to 3.6.0 or later
.Is it possible to get
GEOS 3.8.0
on Shinyapps.io?