Skip to content

Commit

Permalink
Add SOSI support to OGR provider
Browse files Browse the repository at this point in the history
  • Loading branch information
dakcarto committed May 14, 2014
1 parent 29c39b9 commit 9804d17
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/providers/ogr/qgsogrprovider.cpp
Expand Up @@ -1791,6 +1791,11 @@ QString createFilters( QString type )
"*catd.ddf" );
myWildcards << "*catd.ddf";
}
else if ( driverName.startsWith( "SOSI" ) )
{
myFileFilters += createFileFilter_( QObject::tr( "Systematic Organization of Spatial Information [SOSI]" ), "*.sos" );
myExtensions << "sos";
}
else if ( driverName.startsWith( "SQLite" ) )
{
myFileFilters += createFileFilter_( QObject::tr( "SQLite/SpatiaLite" ), "*.sqlite *.db" );
Expand Down

0 comments on commit 9804d17

Please sign in to comment.