Alan Thomas

Results 13 comments of Alan Thomas

The repo is implicitly licensed under the CC-BY-SA 3.0/GFDL pair. We did for a time have a copy of `moment.js` in here, which was licensed under MIT or something, but...

Let me be clear, I really don't like GPL; I find it too restrictive for a project such as Twinkle. I would be happy to release code under MIT as...

No we're not at the moment, but I was to some extent replying to @azatoth's email with that comment, which proposed "releasing the code under MIT or GPL as well".

I think this is still true: > The repo is implicitly licensed under the CC-BY-SA 3.0/GFDL pair. I would tend to ignore GFDL here - it's an inappropriate license for...

Paradox is an ancient DBMS, firmly a legacy product imho - ["the last update to the product was released in 2009"](https://dbdb.io/db/paradox). I am not sure that GDAL needs to be...

Good idea. Something like: ``` \\ → \ \= → = \: → : ``` Also we could restrict the special parsing of `( )` to after an `=` or...

This would be reasonably straightforward to add. You would write a function to [OGRDXFWriterLayer](https://github.com/OSGeo/gdal/blob/master/ogr/ogrsf_frmts/dxf/ogrdxfwriterlayer.cpp) that is called from each of the `Write*` functions. The new function would validate the `RawCodeValues`...

According to the [DXF docs](https://images.autodesk.com/adsk/files/autocad_2012_pdf_dxf-reference_enu.pdf) (pages 130-121), the group codes `11, 21, 31` are used for specifying a spline's fit points (not control points). However GDAL does not handle these...

Okay, if Aspose.CAD is generating these, we should support them. It's worth noting that AutoCAD can read this style of spline just fine, even though GDAL currently can't. We already...

The [docs are clear](https://gdal.org/drivers/vector/dxf.html#dxf-writer) that `b` is not supported in style strings. This support can easily be added as a copy-paste of https://github.com/OSGeo/gdal/blob/814434983f73c2917ceb36ee8a72fa3225ce646c/gdal/ogr/ogrsf_frmts/dxf/ogrdxfwriterlayer.cpp#L514-L519 with appropriate changes - not a hard...