Add trail run

This commit is contained in:
Timothy Allen 2022-07-27 12:31:03 +02:00
parent 2705c57c35
commit 6d04aab3d8
7 changed files with 27613 additions and 29353 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -84,21 +84,21 @@ if (
To place the route markers on the appropriate side of the route, use something like the following in the field calculator to create a new text field named `quadrant` (used by the label's position priority in the placement section):
```
CASE
WHEN "RouteLen" = '21' THEN
WHEN "Source" = '21KM' THEN
CASE
WHEN regexp_match( "Name", '^([136]|20|1[45678])$') THEN 'L,TL'
WHEN regexp_match( "Name", '^([489]|10|1[123])$') THEN 'R,BR'
WHEN regexp_match( "Name", '^([25]|19)$') THEN 'T'
WHEN regexp_match( "Name", '^([7])$') THEN 'B'
END
WHEN "RouteLen" = '10' THEN
WHEN "Source" = '10KM' THEN
CASE
WHEN regexp_match( "Name", '^[789]$') THEN 'L,TL'
WHEN regexp_match( "Name", '^[2456]$') THEN 'R,BR'
WHEN regexp_match( "Name", '^[1]$') THEN 'T'
WHEN regexp_match( "Name", '^[3]$') THEN 'B'
END
WHEN "RouteLen" = '5' THEN
WHEN "Source" = '5KM' THEN
CASE
WHEN regexp_match( "Name", '^[12]$') THEN 'L,TL'
WHEN regexp_match( "Name", '^[0]$') THEN 'R,BR'
@ -106,6 +106,14 @@ WHEN "RouteLen" = '5' THEN
WHEN regexp_match( "Name", '^[3]$') THEN 'B'
END
WHEN "Source" = 'Trail' THEN
CASE
WHEN regexp_match( "Name", '^14$') THEN 'L,TL'
WHEN regexp_match( "Name", '^8$') THEN 'L,BL'
WHEN regexp_match( "Name", '^9$') THEN 'R,TR'
WHEN regexp_match( "Name", '^Finish$') THEN 'R,BR'
WHEN regexp_match( "Name", '^Start$') THEN 'R,TR'
END
END
```
(Note that you may wish to allocate particular markers different positional quadrant; edit the above as needed.)