Skip to content

Commit d9f17e9

Browse files
committed
correct meta definition of overlapping roundabouts
1 parent d10f51b commit d9f17e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/scala/module/MiscResolver.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ class MiscResolver extends IdResolver {
318318
// Road roundabouts
319319
add(RdRndbt~(0,2,0,-2), 0x5F06BC80) // surrogate tile "straight roundabout"
320320
add(RdRndbt~(0,0,-2,2), 0x5F06BC00) // INRUL
321-
add(RdRndbt~(0,0,-2,2) & Road~(102,102,0,0), 0x5F06BD00) // INRUL
321+
add(RdRndbt~(0,0,-2,2) & RdRndbt~(2,-2,0,0), 0x5F06BD00) // INRUL
322322
add(RdRndbt~(0,0,-2,2) & Road~NC, 0x5F06BA00) // INRUL
323323
add(RdRndbt~(0,0,-2,2) & Road~(0,1,0,0), 0x5F06BE00) // INRUL
324324
add(RdRndbt~(0,0,-2,2) & Road~(0,3,0,0), 0x5F06B800) // INRUL

src/main/scala/module/RoundaboutGenerator.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class RoundaboutGenerator(var context: RuleTransducer.Context) extends RuleGener
6464
RdRndbt~(0,0,-2,2) & Road~(0,3,0,0), // road diag right
6565
RdRndbt~(0,0,-2,2) & Road~WC & Road~(0,3,0,0), // road orth + road diag right
6666
RdRndbt~(0,0,-2,2) & Road~WC & Road~(0,1,0,0), // road orth + road diag left
67-
RdRndbt~(0,0,-2,2) & Road~(102,102,0,0), // overlapping roundabouts
67+
RdRndbt~(0,0,-2,2) & RdRndbt~(2,-2,0,0), // overlapping roundabouts
6868
)
6969
// inrul tile override of surrogate tile
7070
for (t <- inrulTiles){

0 commit comments

Comments
 (0)