Skip to content

Commit

Permalink
Throw error when ESRI classification mode is not currently supported
Browse files Browse the repository at this point in the history
Co-authored-by: Nyall Dawson <[email protected]>
  • Loading branch information
merydian and nyalldawson authored Jul 11, 2024
1 parent 57623de commit 616bf93
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/core/providers/arcgis/qgsarcgisrestutils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -993,6 +993,10 @@ QgsFeatureRenderer *QgsArcGisRestUtils::convertRenderer( const QVariantMap &rend
QgsClassificationStandardDeviation* method = new QgsClassificationStandardDeviation();
graduatedRenderer->setClassificationMethod(method);
}
else
{
QgsDebugError( QStringLiteral( "ESRI classification mode %1 is not currently supported" ).arg( esriMode ) );
}


if ( !classBreakInfos.isEmpty() )
Expand Down

0 comments on commit 616bf93

Please sign in to comment.