PostGIS style generation fixes
This commit is contained in:
parent
0dcaca8674
commit
cf59cf8d9c
3 changed files with 13 additions and 5 deletions
|
@ -81,6 +81,7 @@ class PostGisBackend:
|
|||
try:
|
||||
geom = geom.boundary
|
||||
geom = list(geom.coords)
|
||||
row_dict[":area"] = "yes"
|
||||
except NotImplementedError:
|
||||
"multipolygon"
|
||||
continue
|
||||
|
|
|
@ -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"""
|
||||
|
|
|
@ -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
|
||||
#}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue