-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.py
221 lines (179 loc) · 7.07 KB
/
parser.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
import json
import pathlib
from typing import Any, List, Optional
import cairo
from colour import Colour
from drawing import FeatureLayerDrawingRule, PolygonFeatureDrawing, fill, drawcolour, ContextModification, multiple, f_all, \
f_false, FeatureFilter, f_true, f_property, f_has, f_not, LineFeatureDrawing, stroke, f_geometry, nothing, linewidthexp, widthexp, BackgroundLayerDrawingRule, ZoomFilter, z_between, linecap, linejoin, linedash, CircleFeatureDrawing, \
TextFeatureDrawing
class Parser:
def parse(self, p: pathlib.Path):
j = json.load(p.open())
rules = []
for layer in j["layers"]:
layer_id_ = layer["id"]
layer_type_ = layer["type"]
if layer_type_ == "background":
rules.append(BackgroundLayerDrawingRule(
id=layer_id_,
drawing=fill(self.parse_paint(layer.get("paint")))
))
continue
layer_source_ = layer["source"]
if layer_source_ != "openmaptiles":
continue
z_filter = self.parse_zooms(layer)
source_layer_ = layer["source-layer"]
f_filter = self.parse_filter(layer.get("filter"))
if layer_type_ == "fill":
paint = self.parse_paint(layer.get("paint"))
rules.append(
FeatureLayerDrawingRule(
source_layer_,
PolygonFeatureDrawing(fill(paint)),
f_filter,
layer_id_,
z_filter
)
)
elif layer_type_ == "line":
paint = self.parse_paint(layer.get("paint"))
rules.append(
FeatureLayerDrawingRule(
source_layer_,
LineFeatureDrawing(stroke(paint)),
f_filter,
layer_id_,
z_filter
)
)
elif layer_type_ == "circle":
rules.append(FeatureLayerDrawingRule(
source_layer_,
CircleFeatureDrawing(fill(self.parse_circle_paint(layer.get("paint")))),
f_filter,
layer_id_,
z_filter
))
elif layer_type_ == "symbol_xx":
layout = layer.get("layout", {})
paint = layer.get("paint", {})
if "text-field" in layout:
rules.append(FeatureLayerDrawingRule(
source_layer_,
TextFeatureDrawing(
font_name=layout["text-font"][0],
field_name=layout["text-field"].replace("{", "").replace("}",""),
text_anchor=layout.get("text-anchor", "center"),
text_colour=Colour.from_spec(paint["text-color"]),
halo_colour=Colour.from_spec(paint.get("text-halo-color")),
halo_width=float(paint.get("text-halo-width", "0"))
),
f_filter,
layer_id_,
z_filter
))
else:
print(f"Layer {layer_id_} has no text rules")
else:
print(f"Unsupported layer type {layer_type_}")
return rules
def parse_zooms(self, layer) -> ZoomFilter:
max_zoom = int(layer.get("maxzoom", 100))
min_zoom = int(layer.get("minzoom", 0))
return z_between(min_zoom, max_zoom)
def parse_predicate(self, *terms) -> FeatureFilter:
op = terms[0]
prop: str = terms[1]
rest = terms[2:]
if prop.startswith("$"):
gprop = prop.replace("$", "")
if op in {"==", "in"}:
return f_geometry(gprop, set(rest))
else:
print(f"Unsupported prop {prop} op {op}")
return f_true()
if op in {"==", "in"}:
return f_property(prop, set(rest))
elif op in {"has"}:
return f_has(prop)
elif op in {"!has"}:
return f_not(f_has(prop))
elif op in {"!in", "!="}:
return f_not(f_property(prop, set(rest)))
else:
print(f"Unsupported predicate op {op}")
return f_true()
def parse_filter(self, filters: Optional[List[Any]]):
if filters is None:
return lambda x: True
op = filters[0]
if op == "all":
predicates = [self.parse_predicate(*p) for p in filters[1:]]
return f_all(*predicates)
elif op == "==":
return self.parse_predicate(*filters)
else:
print(f"Unsupported op {op}")
return f_false()
def parse_line_width(self, rule: dict):
if "base" in rule:
return linewidthexp(
rule["base"],
rule["stops"]
)
else:
return nothing()
def parse_line_cap(self, v) -> ContextModification:
mapping = {
"butt": cairo.LINE_CAP_BUTT,
"square": cairo.LINE_CAP_SQUARE,
"round": cairo.LINE_CAP_ROUND
}
if v in mapping:
return linecap(mapping[v])
else:
print(f"Unknown cap {v}")
return nothing()
def parse_line_join(self, v) -> ContextModification:
mapping = {
"bevel": cairo.LINE_JOIN_BEVEL,
"miter": cairo.LINE_JOIN_MITER,
"round": cairo.LINE_JOIN_ROUND
}
if v in mapping:
return linejoin(mapping[v])
else:
print(f"Unknown join {v}")
return nothing()
def parse_line_dash(self, d):
return linedash(*[v * 4.0 for v in d])
def parse_circle_paint(self, param: dict) -> ContextModification:
mods = []
return multiple(*mods)
def parse_paint(self, param: dict) -> ContextModification:
rules = {
"fill-color": lambda v: drawcolour(Colour.from_spec(v)),
"background-color": lambda v: drawcolour(Colour.from_spec(v)),
"line-color": lambda v: drawcolour(Colour.from_spec(v)),
"line-width": lambda v: self.parse_line_width(v),
"line-cap": lambda v: self.parse_line_cap(v),
"line-join": lambda v: self.parse_line_join(v),
"line-dasharray": lambda v: self.parse_line_dash(v),
}
mods = []
for k, v in param.items():
if k in rules:
mods.append(rules[k](v))
else:
print(f"No rule for {k}")
if len(mods) == 0:
mods.append(rules["fill-color"]("#ff0000"))
print("Hmmm.. no drawing rules")
return multiple(*mods)
if __name__ == "__main__":
# p = pathlib.Path("style2.json")
# style = Parser().parse(p)
# print(style)
x = widthexp(1.2, [(5, 0.4), (6, 0.7), (7, 1.75), (20, 22)])
print(x(13))