Codebase list mkgmap / e2c742e
New upstream version 0.0.0+svn4294 Bas Couwenberg 4 years ago
3 changed file(s) with 5 addition(s) and 7 deletion(s). Raw diff Collapse all Expand all
0 svn.version: 4289
1 build.timestamp: 2019-08-23T19:00:49+0100
0 svn.version: 4294
1 build.timestamp: 2019-09-28T07:25:58+0100
3939 highway=piste | highway=ski {delete highway}
4040 highway=no | highway=none {delete highway}
4141
42 # Hide unaccessible tunnels
43 highway=* & tunnel=yes & (access=private | access=no) & foot!=* & bicycle!=* {delete highway; delete junction}
4442 # Disable dead-end-checks for unaccessible oneways
4543 highway=* & oneway=yes & (access=private | access=no) {add mkgmap:dead-end-check=false}
4644 # Validation-like checks (uncomment to enable)
281279 include 'inc/roadspeed';
282280 # calculate the access rules
283281 include 'inc/access';
284
282
285283 #limit artificial cycleways to resolution 24
286284 mkgmap:synthesised=yes & mkgmap:bicycle=yes {set mkgmap:highest-resolution-only=true}
287285
128128 if (result != null) {
129129 AndOp and = new AndOp();
130130 and.setFirst(result);
131 and.setSecond(ops[0]);
131 and.setSecond(ops[0].copy());
132132 result = and;
133133 } else
134 result = ops[0];
134 result = ops[0].copy();
135135
136136 }
137137 return result;