Changes between Initial Version and Version 1 of DxfDwg


Ignore:
Timestamp:
Nov 22, 2007, 11:08:38 AM (16 years ago)
Author:
warmerdam
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DxfDwg

    v1 v1  
     1= OGR DXFDWG Driver =
     2
     3The DXFDWG driver is currently a write-only driver dependent on the Open Design Alliance DWGdirect libraries for writing to the DWG and DXF formats.  The DWGdirect library is not open source, though it is offered under fairly permissive terms.  Because the driver implementation includes adapted portions of the DWGdirect source code, it has had to be moved out of the normal GDAL/OGR source distribution (#1816) and now lives in http://svn.osgeo.org/gdal/spike/dxfdwg.
     4
     5Driver user documentation:
     6
     7  http://trac.osgeo.org/gdal/browser/spike/dxfdwg/drv_dxfdwg.html
     8
     9To build:
     10
     111) insert driver into your source tree something like:
     12
     13{{{
     14cd ogr/ogrsf_frmts
     15svn checkout http://svn.osgeo.org/gdal/spike/dxfdwg
     16}}}
     17
     182) Install DWGdirect library somewhere appropriate.
     19
     203.linux) On Linux configure using the DWGdirect configure options:
     21
     22{{{
     23  --with-dwgdirect=path Include DWG direct support
     24  --with-dwg-plt=platform DWGdirect Platform, defaults to lnxX86
     25}}}
     26
     273.win32) On Windows update the DWGdirect portion of the nmake.opt file.
     28
     294) Build/install normally.