Re: [gdal-dev] GDAL & CAD Files

2024-06-26 Thread Robert Coup via gdal-dev
Hi, On Tue, 25 Jun 2024 at 21:11, Michał Kowalczuk via gdal-dev < gdal-dev@lists.osgeo.org> wrote: > First of all, the dwg format is only available in gdal if you buy ODA SDK > which is very expensive. > There is also an in-house-use license available for ODA https://www.opendesign.com/pricing/i

Re: [gdal-dev] GDAL & CAD Files

2024-06-25 Thread Michał Kowalczuk via gdal-dev
First of all, the dwg format is only available in gdal if you buy ODA SDK which is very expensive. To omit this you can switch to DXF format which is built-in by default in gdal. https://www.opendesign.com/pricing https://gdal.org/drivers/vector/dxf.html Regards, Michal W dniu wt., 25.06.2024 o

Re: [gdal-dev] GDAL & CAD Files

2024-06-25 Thread Kurt Schwehr via gdal-dev
https://gdal.org/drivers/vector/dwg.html says: > DWG files are considered to have no georeferencing information through OGR >From https://gdal.org/programs/ogr2ogr.html, you will need to specify the spatial reference system / projection with "-s_srs" -Kurt On Tue, Jun 25, 2024 at 12:55 PM Ashly

[gdal-dev] GDAL & CAD Files

2024-06-25 Thread Ashlyn Powell via gdal-dev
Hello GDAL Devs, I am new to using GDAL, and I just don't know enough about it yet. I am working with thousands of CAD files (DWG) to extract a project boundary line then export it out as a KML. I would love to automate this process. Does GDAL have the capability to work with DWG files? Has anyon