I want to read a .DWG file into R. DWG is on the list of supported OGR formats in GDAL:
So in theory, I should be able to read in the .DWG file using readOGR() in rgdal. But I don't know how to define the dsn.
The ogrDrivers() command gives me the list of available drivers, but the list doesn't match the list of available OGR formats from the GDAL website.
According to the OGR page on DWG files, there should be a DWG driver, but it's not even on the list of OGR drivers in rgdal.
Does this mean that DWG files are not supported in rgdal, even though they are supported by OGR in GDAL?
Thanks very much.