Description
This is linked to r-spatial/discuss#28.
This zip contains a simple reprex, the Broad Street pump location in a shapefile used in ASDAR (https://asdar-book.org/), includes a +datum=
specification. There are also two R scripts each for sf and rgdal, one pair just using +towgs84=
, the other pair using +nadgrids=
. The first pair were run with PROJ 4.9.3/GDAL 2.4.2 and PROJ 6.2.0/GDAL 3.0.1 (output Rout files with *4*
and *6*
), the grid*.R
files only under PROJ 6.2.0/GDAL 3.0.1 to use the new PROJ search path extension mechanism tested in test.cpp
.
Basic findings: for PROJ 4.9.3/GDAL 2.4.2, the +datum=
spec gives a reasonable transformation of the input to EPSG:4326. For PROJ 6.2.0/GDAL 3.0.1, the +datum=
spec is dropped on reading in sf and rgdal, and variants of +towgs84=
specs need to be added manually to the CRS to get a reasonable transformation (not off by ~100m).
Side finding: writing the object with a +towgs84=
with the ESRI Shapefile
driver in both sf and rgdal drops the +towgs84=
, but preserves it for the GPKG
driver.
Only for PROJ 6: using the NTv2 grid in the Europe datumgrid zip archive indicated by projinfo
gives a good transformation with both sf and rgdal using a CRS modified by adding +nadgrids=
and extending the search path to include the current directory (where the *.gsb
file is located, not included in zipfile, see projinfo
output for download link).
Conclusion: Moving to PROJ 6 in software is feasible, but typical workflow input may suffer invisible degradation during processing for rgdal and sf workflows and their reverse dependencies. @tim-salabim (re: mapview) @mtennekes (re: tmap) @Nowosad (re. spData).