Take into account classificator id in mapcss-mapping
This commit is contained in:
parent
e00d57aa05
commit
2be0033e5f
1 changed files with 5 additions and 0 deletions
|
@ -80,7 +80,12 @@ def komap_mapswithme(options):
|
|||
# Build classificator tree from mapcss-mapping.csv file
|
||||
types_file = open(os.path.join(ddir, 'types.txt'), "w")
|
||||
|
||||
cnt = 1
|
||||
for row in csv.reader(open(os.path.join(ddir, 'mapcss-mapping.csv')), delimiter=';'):
|
||||
while int(row[5]) > cnt:
|
||||
print >> types_file, "mapswithme"
|
||||
cnt += 1
|
||||
cnt += 1
|
||||
cl = row[0].replace("|", "-")
|
||||
pairs = [i.strip(']').split("=") for i in row[1].split(',')[0].split('[')]
|
||||
kv = {}
|
||||
|
|
Loading…
Add table
Reference in a new issue