Change to routes, and update marshal positions and numbers

This commit is contained in:
Timothy Allen 2023-09-02 11:51:05 +02:00
parent d83220afe4
commit fa6e3ab3bb
10 changed files with 29700 additions and 29931 deletions

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -93,17 +93,26 @@ WHEN "Source" = '10KM' THEN
WHEN regexp_match( "Name", '^[2456]$') THEN 'R,BR'
WHEN regexp_match( "Name", '^[1]$') THEN 'T'
WHEN regexp_match( "Name", '^[3]$') THEN 'B'
WHEN regexp_match( "Name", '^Finish$') THEN 'BL,L'
WHEN regexp_match( "Name", '^Finish$') THEN 'BR,R'
WHEN regexp_match( "Name", '^Start$') THEN 'BL,L'
END
WHEN "Source" ILIKE '5KM%' THEN
WHEN "Source" ILIKE '%Dog Walk' THEN
CASE
WHEN regexp_match( "Name", '^[12]$') THEN 'L,TL'
WHEN regexp_match( "Name", '^[0]$') THEN 'R,BR'
WHEN regexp_match( "Name", '^[4]$') THEN 'T'
WHEN regexp_match( "Name", '^[3]$') THEN 'B'
WHEN regexp_match( "Name", '^Finish$') THEN 'BL,R'
WHEN regexp_match( "Name", '^Start$') THEN 'BL,R'
END
WHEN "Source" ILIKE '%Fun Run' THEN
CASE
WHEN regexp_match( "Name", '^[12]$') THEN 'L,TL'
WHEN regexp_match( "Name", '^[0]$') THEN 'R,BR'
WHEN regexp_match( "Name", '^[4]$') THEN 'T'
WHEN regexp_match( "Name", '^[3]$') THEN 'B'
WHEN regexp_match( "Name", '^Finish$') THEN 'TR,R'
WHEN regexp_match( "Name", '^Start$') THEN 'BL,L'
WHEN regexp_match( "Name", '^Start$') THEN 'TL,L'
END
WHEN "Source" = 'Trail' THEN
CASE