[GRASS-SVN] r74122 - grass/trunk/gui/wxpython/core

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Feb 21 01:48:50 PST 2019


Author: mmetz
Date: 2019-02-21 01:48:50 -0800 (Thu, 21 Feb 2019)
New Revision: 74122

Modified:
   grass/trunk/gui/wxpython/core/utils.py
Log:
wxGUI: add GeoPackage as known raster/vector format

Modified: grass/trunk/gui/wxpython/core/utils.py
===================================================================
--- grass/trunk/gui/wxpython/core/utils.py	2019-02-21 09:48:28 UTC (rev 74121)
+++ grass/trunk/gui/wxpython/core/utils.py	2019-02-21 09:48:50 UTC (rev 74122)
@@ -791,33 +791,35 @@
     'Northwood Classified Grid Format .grc/.tab': '',
     'ARC Digitized Raster Graphics': 'arc',
     'Magellan topo (.blx)': 'blx',
-    'SAGA GIS Binary Grid (.sdat)': 'sdat'
+    'SAGA GIS Binary Grid (.sdat)': 'sdat',
+    'GeoPackage (.gpkg)': 'gpkg'
 }
 
 
 vectorFormatExtension = {
     'ESRI Shapefile': 'shp',
+    'GeoPackage': 'gpkg',
     'UK .NTF': 'ntf',
     'SDTS': 'ddf',
-            'DGN': 'dgn',
-            'VRT': 'vrt',
-            'REC': 'rec',
-            'BNA': 'bna',
-            'CSV': 'csv',
-            'GML': 'gml',
-            'GPX': 'gpx',
-            'KML': 'kml',
-            'GMT': 'gmt',
-            'PGeo': 'mdb',
-            'XPlane': 'dat',
-            'AVCBin': 'adf',
-            'AVCE00': 'e00',
-            'DXF': 'dxf',
-            'Geoconcept': 'gxt',
-            'GeoRSS': 'xml',
-            'GPSTrackMaker': 'gtm',
-            'VFK': 'vfk',
-            'SVG': 'svg',
+    'DGN': 'dgn',
+    'VRT': 'vrt',
+    'REC': 'rec',
+    'BNA': 'bna',
+    'CSV': 'csv',
+    'GML': 'gml',
+    'GPX': 'gpx',
+    'KML': 'kml',
+    'GMT': 'gmt',
+    'PGeo': 'mdb',
+    'XPlane': 'dat',
+    'AVCBin': 'adf',
+    'AVCE00': 'e00',
+    'DXF': 'dxf',
+    'Geoconcept': 'gxt',
+    'GeoRSS': 'xml',
+    'GPSTrackMaker': 'gtm',
+    'VFK': 'vfk',
+    'SVG': 'svg'
 }
 
 



More information about the grass-commit mailing list