-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dependency on retiring spatial infrastructure packages #76
Comments
@zoometh See also https://r-spatial.org/r/2023/05/15/evolution4.html. Please take urgent steps to resolve this issue. No positive changes appear in the repository. Less than three months remain to retain this package on CRAN. |
@zoometh Less than three weeks remain to fix this. |
I'm going to fix this |
@zoometh R spatial infrastructure packages maptools, rgdal and rgeos will be archived by CRAN on Monday, October 16, 2023. Your package does not pass CMD check when these packages are not available. Expect your package to be archived by CRAN October 17-18 as CRAN checks feed through and your package fails, if not updated by Monday, October 16, 2023. No grace period is anticipated, as you have had sufficient time to update your package to remove dependencies on maptools, rgdal and/or rgeos. |
@rsbivand I've replaced the |
Submit a new version, after running R CMD build <package_directory>, then R CMD check --as-cran on the tar srchive from the previous step with current and development versions of R after removing the retiring packages. I can run R CMD check if you attach the tar archive you built for example here. |
That's fine. I've have made many changes to the package, adding shape analysis functions. Today, I have many errors and warnings I will try to solve in the coming days |
You will be aware, for example from:
https://r-spatial.org/r/2022/04/12/evolution.html,
https://r-spatial.org/r/2022/12/14/evolution2.html,
https://r-spatial.org/r/2023/04/10/evolution3.html and
https://rsbivand.github.io/csds_jan23/bivand_csds_ssg_230117.pdf and
perhaps view https://www.youtube.com/watch?v=TlpjIqTPMCA&list=PLzREt6r1NenmWEidssmLm-VO_YmAh4pq9&index=1
that
rgdal
,rgeos
andmaptools
will be retired thisyear, in October 2023.
iconr imports 'rgdal' using
rgdal::readOGR
as found bypkgapi
, not in NAMESPACE, in R/read_eds.R line 31 and R/read_nds.R line 16. You could drop the"shp"
format, or use either ofsf::st_read
,terra::vect
to read the files and coerce to sp as described in links from https://r-spatial.org/r/2023/04/10/evolution3.html. Note that ESRI shapefiles are EOL, and belong to the previous century; GPKG is a much better format for actual data. Fix best by June, latest October 2023.The text was updated successfully, but these errors were encountered: