Skip to content

Commit

Permalink
cleanup in vector utils
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Oct 3, 2014
1 parent 0d5fb23 commit 25fa170
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions python/plugins/processing/tools/vector.py
Expand Up @@ -25,7 +25,10 @@

__revision__ = '$Format:%H$'

import csv
import uuid
import codecs
import cStringIO

from PyQt4.QtCore import *
from qgis.core import *
Expand Down Expand Up @@ -343,9 +346,6 @@ def checkMinDistance(point, index, distance, points):

return True

from PyQt4.QtCore import *
from qgis.core import *

GEOM_TYPE_MAP = {
QGis.WKBPoint: 'Point',
QGis.WKBLineString: 'LineString',
Expand Down Expand Up @@ -426,10 +426,6 @@ def addFeature(self, feature):
else:
self.writer.addFeature(feature)

import csv
import codecs
import cStringIO


class TableWriter:

Expand Down

0 comments on commit 25fa170

Please sign in to comment.