def write_markers(self):
     fileUtils.write_file('marker', self.markerPath, self.positions)
 def __write_file(self, strInfo, strFilePath, listStore):
     locations = {}
     for row in listStore:
         locations[row[0]] = (float(row[1]), float(row[2]), int(row[3]))
     fileUtils.write_file(strInfo, strFilePath, locations)
Example #3
0
 def write_markers(self):
     fileUtils.write_file('marker', self.markerPath, self.positions)
Example #4
0
 def __write_file(self, strInfo, strFilePath, listStore):
     locations = {}
     for row in listStore:
         locations[row[0]] = (float(row[1]), float(row[2]), int(row[3]))
     fileUtils.write_file(strInfo, strFilePath, locations)