Skip to content

Commit

Permalink
Merge pull request #2114 from geometalab/master
Browse files Browse the repository at this point in the history
Add GeoPackage/GPKG writable driver support
  • Loading branch information
jef-n committed Jun 5, 2015
2 parents 1cd4fd6 + fb107f1 commit e330265
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/core/qgsvectorfilewriter.cpp
Expand Up @@ -2270,6 +2270,13 @@ bool QgsVectorFileWriter::driverMetadata( QString driverName, QString &longName,
glob = "*.geojson";
ext = "geojson";
}
else if ( driverName.startsWith( "GPKG" ) )
{
longName = "GeoPackage";
trLongName = QObject::tr( "GeoPackage" );
glob = "*.gpkg";
ext = "gpkg";
}
else if ( driverName.startsWith( "GeoRSS" ) )
{
longName = "GeoRSS";
Expand Down

0 comments on commit e330265

Please sign in to comment.