コード例 #1
0
 def write_markers(self):
     fileUtils.write_file('marker', self.markerPath, self.positions)
コード例 #2
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)
コード例 #3
0
ファイル: mapMark.py プロジェクト: yuviip/GMapCatcher
 def write_markers(self):
     fileUtils.write_file('marker', self.markerPath, self.positions)
コード例 #4
0
ファイル: widTreeView.py プロジェクト: pacoqueen/cican
 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)