We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 47013f7 commit 0bb5b5bCopy full SHA for 0bb5b5b
src/providers/ogr/qgsogrprovider.cpp
@@ -1529,6 +1529,12 @@ int QgsOgrProvider::capabilities() const
1529
}
1530
1531
1532
+ /* Curve geometries are available in some drivers starting with GDAL 2.0 */
1533
+ if ( OGR_L_TestCapability( ogrLayer, "CurveGeometries" ) )
1534
+ {
1535
+ ability |= CircularGeometries;
1536
+ }
1537
+
1538
// supports geometry simplification on provider side
1539
#if defined(GDAL_VERSION_NUM) && defined(GDAL_COMPUTE_VERSION)
1540
#if GDAL_VERSION_NUM >= GDAL_COMPUTE_VERSION(1,11,0)
0 commit comments