We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 310495f commit 014f568Copy full SHA for 014f568
python/plugins/mapserver_export/ms_export.py
@@ -547,8 +547,11 @@ def writeMapLayers(self):
547
layer_def += " 'wms_style' '" + ','.join(wmsStyles) + "'\n"
548
layer_def += " END\n"
549
550
+ elif providerString == 'ogr':
551
+ layer_def += " DATA '" + dataString.split('|')[0] + "'\n"
552
+
553
else:
- # its a standard ogr, gdal or grass layer
554
+ # it's a standard gdal or grass layer
555
layer_def += " DATA '" + dataString + "'\n"
556
557
# WMS settings for all layers
0 commit comments