[gdal-dev] (no subject)

2012-10-28 Thread SIVA RAMA KRISHNA
s.r.kriis...@gmail.com ___ gdal-dev mailing list gdal-dev@lists.osgeo.org http://lists.osgeo.org/mailman/listinfo/gdal-dev

[gdal-dev] Ogr and Dwg via Teigha (in C#)

2012-10-28 Thread Noon Silk
Hi All, I'm trying to read DWG files and output OGR layers. I note, actually, that there exists an OgrDwgDatasource in the C++; but I don't believe it is built by default. My difficutly comes in in that I'm using the SWIG-generated bindings. I tried porting the C++ datasource code to C#, but

Re: [gdal-dev] breaking lines at intersection

2012-10-28 Thread Chaitanya kumar CH
Siva, There is currently no direct function to break lines at intersections. In any case, it is a simple operation with complex options. What attributes should the new pieces get? Should we save it to a new layer or append to the current layer? Should we modify the original feature to retain one

Re: [gdal-dev] Ogr and Dwg via Teigha (in C#)

2012-10-28 Thread Tamas Szekeres
Noon, The C# bindings provided by OGR provide a common interface for all drivers. You can use the Datasource class for each of the drivers . You can instatiate the driver by using the driver specific connection string (ie by using Ogr.Open) or obtain a specific driver (Ogr.GetDriverByName) and

[gdal-dev] Homebrew Package Manager and libKML dependency on libkml 1.3

2012-10-28 Thread Ragi Burhum
Hello everyone, I was looking into adding the libKML OGR driver to the ever popular Mac OSX package manager Homebrew http://mxcl.github.com/homebrew/. After digging into why it wasn't building the driver, I realized it was because the libKML driver depends on version 1.3, which has never been

Re: [gdal-dev] Homebrew Package Manager and libKML dependency on libkml 1.3

2012-10-28 Thread Frank Warmerdam
On 12-10-28 12:54 PM, Ragi Burhum wrote: Hello everyone, I was looking into adding the libKML OGR driver to the ever popular Mac OSX package manager Homebrew http://mxcl.github.com/homebrew/. After digging into why it wasn't building the driver, I realized it was because the libKML driver

Re: [gdal-dev] Ogr and Dwg via Teigha (in C#)

2012-10-28 Thread Noon Silk
Hi Tamas, Thanks. I'm partly towards getting a build going; but am I to understand that generating the SWIG bindings is best done from linux? (That is, I note that the code to generate the bindings is in a shell script; I'm currently attempting to figure out how to run it, but I'm not sure if

Re: [gdal-dev] Homebrew Package Manager and libKML dependency on libkml 1.3

2012-10-28 Thread rburhum
Hi Frank, Getting an official release of libKML 1.3 would be great. By the way, there is a build issue of libKML with autoconf 1.12. I submitted a bug and a simple fix with details http://code.google.com/p/libkml/issues/detail?id=186sort=-id . If you could commit that, that would be great,