Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix wkbType cast from OGR 25D Type. #50233

Merged
merged 3 commits into from Sep 19, 2022

Conversation

lbartoletti
Copy link
Member

Description

As mentionned by @Koyaani a PolygonZ is opened as a Polygon25D and can cause problems.

This fix use the QgsOgrUtils method to return the true QGIS wkbType.

Fixes #50218

As mentionned by @Koyaani a PolygonZ is opened as a Polygon25D and
can cause problems.

This fix use the QgsOgrUtils method to return the true QGIS wkbType.

Fixes qgis#50218
@rouault
Copy link
Contributor

rouault commented Sep 17, 2022

failed tests:

 FAIL!  : TestQgsOgrUtils::ogrGeometryToQgsGeometry2(linestringz) Compared values are not the same
   Actual   (static_cast< int >( geom.wkbType() )): 1002
   Expected (type)                                : -2147483646
   Loc: [/root/QGIS/tests/src/core/testqgsogrutils.cpp(243)]
PASS   : TestQgsOgrUtils::ogrGeometryToQgsGeometry2(linestringm)
PASS   : TestQgsOgrUtils::ogrGeometryToQgsGeometry2(linestringzm)
FAIL!  : TestQgsOgrUtils::ogrGeometryToQgsGeometry2(linestring25d) Compared values are not the same
   Actual   (static_cast< int >( geom.wkbType() )): 1002
   Expected (type)                                : -2147483646
   Loc: [/root/QGIS/tests/src/core/testqgsogrutils.cpp(243)]

@@ -212,10 +212,10 @@ void TestQgsOgrUtils::ogrGeometryToQgsGeometry2_data()
QTest::newRow( "point25d" ) << QStringLiteral( "Point25D (1.1 2.2 3.3)" ) << static_cast< int >( QgsWkbTypes::Point25D );

QTest::newRow( "linestring" ) << QStringLiteral( "LineString (1.1 2.2, 3.3 4.4)" ) << static_cast< int >( QgsWkbTypes::LineString );
QTest::newRow( "linestringz" ) << QStringLiteral( "LineStringZ (1.1 2.2 3.3, 4.4 5.5 6.6)" ) << static_cast< int >( QgsWkbTypes::LineString25D ); // ogr uses 25d for z
QTest::newRow( "linestringz" ) << QStringLiteral( "LineStringZ (1.1 2.2 3.3, 4.4 5.5 6.6)" ) << static_cast< int >( QgsWkbTypes::LineStringZ ); // ogr uses 25d for z
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lbartoletti, the comment is now obsolete, isn't it?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, yes! I forgot to remove this one. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

wkbType of geometries is not same as the layer with z and with geopackage
3 participants