PostGIS style generation fixes

This commit is contained in:
Komяpa 2010-07-08 00:34:26 +03:00
parent 0dcaca8674
commit cf59cf8d9c
3 changed files with 13 additions and 5 deletions

View file

@ -81,6 +81,7 @@ class PostGisBackend:
try:
geom = geom.boundary
geom = list(geom.coords)
row_dict[":area"] = "yes"
except NotImplementedError:
"multipolygon"
continue

View file

@ -20,7 +20,7 @@ from debug import debug, Timer
from mapcss import MapCSS
style = MapCSS(1, 19) #zoom levels
style.parse(open("styles/openstreetinfo.mapcss","r").read())
style.parse(open("styles/mapink.mapcss","r").read())
t = ("way", "node")
dct = {}
@ -32,13 +32,20 @@ for a in t:
dct[tag].add(a)
print dct
print """
# OsmType Tag DataType Flags"""
for t in ("z_order","way_area",":area"):
if t in dct:
del dct[t]
for k,v in dct.iteritems():
s = ""
for i in v:
s += i
s += ","
s = s[:-1]
print "%-10s %-18s %-13s %s"%(s, k, "text", "linear")
print "%-10s %-18s %-13s %s"%(s, k, "text", "polygon")
print """
node,way z_order int4 linear # This is calculated during import
way way_area real # This is calculated during import"""

View file

@ -252,11 +252,11 @@ class MapCSS():
log.warning("choked on: %s"%(css))
return
print sc
#print sc
if (previous==oDECLARATION):
self.choosers.append(sc)
sc= StyleChooser()
print self.choosers
#print self.choosers
return
#}