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

[processing] Repair shapefile: show OGR error message #115

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/analysis/processing/qgsalgorithmrepairshapefile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,13 @@ QVariantMap QgsRepairShapefileAlgorithm::processAlgorithm( const QVariantMap &pa
throw QgsProcessingException( QObject::tr( "Could not load source layer for %1." ).arg( QLatin1String( "INPUT" ) ) );

CPLSetConfigOption( "SHAPE_RESTORE_SHX", "YES" );
CPLErrorReset();

std::unique_ptr< QgsVectorLayer > layer = std::make_unique< QgsVectorLayer >( path );
if ( !layer->isValid() )
{
CPLSetConfigOption( "SHAPE_RESTORE_SHX", nullptr );
throw QgsProcessingException( QObject::tr( "Could not repair %1." ).arg( path ) );
throw QgsProcessingException( QObject::tr( "Repair of %1 failed (OGR error: %2)" ).arg( path, QString::fromUtf8( CPLGetLastErrorMsg() ) ) );
}

CPLSetConfigOption( "SHAPE_RESTORE_SHX", nullptr );
Expand Down