Compare commits
48 Commits
c6fa8794e0
...
0.0.24
| Author | SHA1 | Date | |
|---|---|---|---|
| 5b7cc4bf3b | |||
| 5411235adc | |||
| f6bdbd0090 | |||
| 74e1828f8c | |||
| d52987a3be | |||
| 25e2d0f0b2 | |||
| 756bbbe66f | |||
| e70b55a5f0 | |||
| bda2e8a0be | |||
| 5ce8ca7c0e | |||
| 40b4fc94a6 | |||
| 97703a081a | |||
| e7530846f2 | |||
| 660b38950f | |||
| 437ce6c3e0 | |||
| 765923ca0a | |||
| 1393f458db | |||
| 3f1ad2cf39 | |||
| 2016497c9e | |||
| 454561e481 | |||
| 488217923f | |||
| 6232277de1 | |||
| cff62fa343 | |||
| f359938d78 | |||
| 7e68192312 | |||
| e94b0e811a | |||
| 04f6a28100 | |||
| 54e3483a39 | |||
| 117d1f752e | |||
| 1207edf12b | |||
| b3d9eb6f33 | |||
| 869a7296e8 | |||
| 7777671cbb | |||
| 353fd07b92 | |||
| a036b0ba63 | |||
| 0b53f8ed81 | |||
| ee92b52552 | |||
| 4cc6140d86 | |||
| a458cc5e76 | |||
| cb9f826943 | |||
| fa1da3686f | |||
| d5270dc889 | |||
| 6366cb601b | |||
| fe1061875b | |||
| 699f2b760d | |||
| c8790e2aae | |||
| 3fbffc7589 | |||
| 84312abc75 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,6 +3,7 @@ node_modules
|
||||
# Transpiled JSON
|
||||
/static/mapFiles/json/
|
||||
/static/map-index.json
|
||||
/src/lib/assets/route/*.json
|
||||
|
||||
# Output
|
||||
.output
|
||||
|
||||
8
.vscode/settings.json
vendored
Normal file
8
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"yaml.schemas": {
|
||||
"./static/mapFiles/yaml/mapFiles.schema.json": "static/mapFiles/yaml/*.yaml"
|
||||
},
|
||||
"yaml.format.enable": true,
|
||||
"yaml.validate": true,
|
||||
"yaml.schemaStore.enable": false
|
||||
}
|
||||
@@ -6,7 +6,7 @@ RUN npm ci
|
||||
|
||||
COPY . .
|
||||
RUN node ./scripts/parse-maps.js
|
||||
RUN rm -r ./static/mapFiles/yaml
|
||||
RUN rm -r ./static/mapFiles
|
||||
RUN npm run build
|
||||
RUN npm prune --production
|
||||
|
||||
|
||||
29
package-lock.json
generated
29
package-lock.json
generated
@@ -13,6 +13,7 @@
|
||||
"@sveltejs/adapter-node": "^5.5.2",
|
||||
"@sveltejs/kit": "^2.50.1",
|
||||
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
||||
"@tabler/icons-svelte": "^3.36.1",
|
||||
"@types/node": "^22",
|
||||
"eslint": "^9.39.2",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
@@ -1344,6 +1345,34 @@
|
||||
"vite": "^6.3.0 || ^7.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@tabler/icons": {
|
||||
"version": "3.36.1",
|
||||
"resolved": "https://registry.npmjs.org/@tabler/icons/-/icons-3.36.1.tgz",
|
||||
"integrity": "sha512-f4Jg3Fof/Vru5ioix/UO4GX+sdDsF9wQo47FbtvG+utIYYVQ/QVAC0QYgcBbAjQGfbdOh2CCf0BgiFOF9Ixtjw==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"funding": {
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/codecalm"
|
||||
}
|
||||
},
|
||||
"node_modules/@tabler/icons-svelte": {
|
||||
"version": "3.36.1",
|
||||
"resolved": "https://registry.npmjs.org/@tabler/icons-svelte/-/icons-svelte-3.36.1.tgz",
|
||||
"integrity": "sha512-f48RDkXJr7dMbbWHho81rR91QiPleHTlOwJUM5uFhTqo7dXH4mNZxJo3tksQNmlIauh7PqoS3i+RY7YlZxg5yg==",
|
||||
"dev": true,
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@tabler/icons": ""
|
||||
},
|
||||
"funding": {
|
||||
"type": "github",
|
||||
"url": "https://github.com/sponsors/codecalm"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"svelte": ">=3 <6 || >=5.0.0-next.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/cookie": {
|
||||
"version": "0.6.0",
|
||||
"resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz",
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
"@sveltejs/adapter-node": "^5.5.2",
|
||||
"@sveltejs/kit": "^2.50.1",
|
||||
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
||||
"@tabler/icons-svelte": "^3.36.1",
|
||||
"@types/node": "^22",
|
||||
"eslint": "^9.39.2",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
|
||||
@@ -3,9 +3,11 @@ import fs from 'fs';
|
||||
import path from 'path';
|
||||
|
||||
const inputDir = './static/mapFiles/yaml';
|
||||
const outputDir = './static/mapFiles/json';
|
||||
const outputDir = './src/lib/assets/route';
|
||||
const indexFile = './static/map-index.json';
|
||||
|
||||
const noiseRegex = /\s+(single line|junction|jn|junc|jct|gf|north|south|east|west)\.?$/i;
|
||||
|
||||
if (!fs.existsSync(outputDir)) fs.mkdirSync(outputDir, { recursive: true });
|
||||
|
||||
const mapList = [];
|
||||
@@ -18,12 +20,37 @@ fs.readdirSync(inputDir).forEach((file) => {
|
||||
const fileName = file.replace('.yaml', '.json');
|
||||
fs.writeFileSync(path.join(outputDir, fileName), JSON.stringify(content));
|
||||
|
||||
const contentSet = new Set();
|
||||
|
||||
if (Array.isArray(content.routeDetail)) {
|
||||
content.routeDetail.forEach((item) => {
|
||||
if ((item.type === 'junction' || item.type === 'station') && item.name) {
|
||||
let cleanName = item.name;
|
||||
|
||||
// Run the replacement in a loop or twice to catch nested noise
|
||||
// e.g., "Reading West Junction"
|
||||
// Pass 1: "Reading West"
|
||||
// Pass 2: "Reading"
|
||||
let previousName;
|
||||
do {
|
||||
previousName = cleanName;
|
||||
cleanName = cleanName.replace(noiseRegex, '').trim();
|
||||
} while (cleanName !== previousName);
|
||||
|
||||
if (cleanName) {
|
||||
contentSet.add(cleanName);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
mapList.push({
|
||||
routeId: content.routeId || null,
|
||||
routeStart: content.routeStart || null,
|
||||
routeEnd: content.routeEnd || null,
|
||||
created: content.created || null,
|
||||
checked: content.checked || null
|
||||
updated: content.updated || null,
|
||||
checked: content.checked || null,
|
||||
contents: Array.from(contentSet)
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
@@ -7,6 +7,13 @@
|
||||
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
|
||||
/>
|
||||
<link rel="manifest" href="/manifest.webmanifest" />
|
||||
<meta name="title" content="OwlBoard Maps | Railway route schematics to assist with learning & refreshing routes" />
|
||||
<meta name="description" content="Schematic route diagrams showing stations, junctions, crossings, bridges and more" />
|
||||
<meta name="theme-color" content="#4fd1d1" />
|
||||
<link rel="canonical" href="https://maps.owlboard.info" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:url" content="https://maps.owlboard.info" />
|
||||
<title>OwlBoard Maps</title>
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
|
||||
BIN
src/lib/assets/apple-touch-icon.png
Normal file
BIN
src/lib/assets/apple-touch-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
@@ -1 +0,0 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512"><defs><radialGradient xlink:href="#a" id="b" cx="256" cy="256" r="254.04401" fx="256" fy="256" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#2b343c"/><stop offset="1" stop-color="#404c55"/></linearGradient></defs><circle cx="256" cy="256" r="254.04401" fill="url(#b)"/><path fill="#4fd1d1" d="M256 63.429688c-70.95778.000042-128.48044 57.522702-128.48047 128.480472.00022 14.10748 2.32313 28.1184 6.87695 41.4707l-.01-.0156 7.35742 17.3086c1.62516 3.0994 3.37536 6.13147 5.24805 9.08789.32127.56629.64671 1.13007.97656 1.6914L256 448.57031l108.0293-187.11719c.32985-.56133.65528-1.12511.97656-1.6914 1.8727-2.95642 3.62483-5.98849 5.25-9.08789l7.34766-17.28125v-.0117c4.55383-13.3523 6.87674-27.36322 6.87695-41.4707C384.48042 120.95241 326.95774 63.429742 256 63.429688Zm-77.58594 58.457032c.01-.00084.0211-.00045.0312 0 0 0 17.19849 15.57553 33.64258 24.45117 20.19639 10.90092 31.83331 10.07724 43.91211 24.80469 12.0788-14.72745 23.71572-13.90377 43.91211-24.80469 16.44409-8.87564 33.64258-24.45117 33.64258-24.45117 2.60037-.11599 0 42.34071 0 58.96094 0 42.83269-73.74774 87.10937-77.55469 87.04687-3.80695.0625-77.55469-44.21418-77.55469-87.04687 0-16.55531-2.58111-58.74622-.0312-58.96094z"/><path fill="#fd5" d="m256 247.27121-7.4932-25.90681 7.46586 6 7.52054-6z"/></svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,13 +1,17 @@
|
||||
/* FONTS */
|
||||
@font-face {
|
||||
font-family: "urwgothic";
|
||||
src: url("/fonts/urwgothic/urwgothic.woff2") format("woff2"), url("/font/urwgothic/urwgothic.woff") format("woff");
|
||||
font-family: 'urwgothic';
|
||||
src:
|
||||
url('/fonts/urwgothic/urwgothic.woff2') format('woff2'),
|
||||
url('/font/urwgothic/urwgothic.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@font-face {
|
||||
font-family: "urwgothic";
|
||||
src: url("/fonts/urwgothic/urwgothicDemi.woff2") format("woff2"), url("/font/urwgothic/urwgothicDemi.woff") format("woff");
|
||||
font-family: 'urwgothic';
|
||||
src:
|
||||
url('/fonts/urwgothic/urwgothicDemi.woff2') format('woff2'),
|
||||
url('/font/urwgothic/urwgothicDemi.woff') format('woff');
|
||||
font-weight: 900;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
1
src/lib/assets/maps-logo-maskable.svg
Normal file
1
src/lib/assets/maps-logo-maskable.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" viewBox="0 0 562.09 562.09"><defs><radialGradient xlink:href="#a" id="b" cx="256" cy="256" r="254.04" fx="256" fy="256" gradientTransform="translate(27 27)" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#2b343c"/><stop offset="1" stop-color="#404c55"/></linearGradient></defs><path fill="url(#b)" d="M694.32 283a411.32 393.92 0 0 1-410.68 393.92 411.32 393.92 0 0 1-411.96-392.69 411.32 393.92 0 0 1 409.4-395.14A411.32 393.92 0 0 1 694.3 280.54" transform="translate(-1.96 -1.96)"/><path fill="#4fd1d1" d="M281.04 88.47c-70.95 0-128.48 57.53-128.48 128.48 0 14.11 2.33 28.12 6.88 41.47l-.01-.01 7.36 17.3a124.7 124.7 0 0 0 5.25 9.1l.97 1.69 108.03 187.1 108.03-187.1.98-1.7a128.5 128.5 0 0 0 5.25-9.08l7.35-17.28v-.02a128.48 128.48 0 0 0 6.87-41.47C409.52 146 352 88.47 281.04 88.47Zm-84.01 49.27 2.52 2.38c7.74 7.29 16.97 12.23 28.03 15.02 4.64 1.17 4.62 1.17 8.1-.34 25.92-11.2 64.62-11.22 91.01-.03 7.27 3.08 25.1-4.12 36.09-14.59a30.17 30.17 0 0 1 2.43-2.18c.35 0 .48 6.13.2 9.02a49.7 49.7 0 0 1-9.29 24.82l-1.47 2.06.7.94c38.07 51.55-7.46 115.42-60.6 85-1.3-.74-2.45-1.24-2.57-1.11-.2.2-5.5 10.18-9.4 17.68-1.76 3.39-1.4 3.4-3.26-.14-4.77-9.12-9.38-17.7-9.5-17.7-.08 0-1.18.58-2.45 1.31-52.6 30.1-99.03-34.13-60.98-84.33.78-1.02 1.1-1.66.95-1.87-7.68-10.44-11.39-21.86-10.7-32.92zm44.85 39.23a35.62 35.62 0 0 0-15.48 3.92c-35.26 17.47-16.98 71.79 21.65 64.33a35.5 35.5 0 0 0 22.5-14.71c1.25-1.78 1.67-2.22 1.88-1.93.14.2 2.14 3.61 4.44 7.59 4.87 8.43 4.1 7.82 5.9 4.67a497.41 497.41 0 0 1 7.32-12.44c.14-.08.96.9 1.86 2.22 16.09 23.62 52.73 18.48 61.43-8.6 8.52-26.58-16.98-51.8-43.57-43.1-12.13 3.98-20.13 12.66-27.95 30.34l-.7 1.56-1.38-3.13c-8.8-20-22.71-30.89-37.9-30.72zm76.41 18.05c4.34-.12 8.8 1.43 12.33 4.95 11.83 11.83.35 31.55-16.05 27.58-8.43-2.04-13.82-10.73-12.05-19.4 1.65-8.07 8.54-12.92 15.77-13.13zm-75.7.04c8.54-.48 16.99 5.68 17.6 15.6.66 11.02-10.1 19.75-20.85 16.88-12.5-3.33-16.72-18.35-7.72-27.46a16.6 16.6 0 0 1 10.97-5.02zm6.22 4.93c-1.1.07-2.17.56-3 1.54-3.25 3.86 1.28 9.24 5.7 6.74a4.52 4.52 0 0 0 2.21-3.84c0-2.82-2.5-4.61-4.9-4.44zm63.97.06c-3.15.2-5.02 3.3-3.63 6.36 1.05 2.31 4.26 3.26 6.3 1.87 3.77-2.56 2.44-7.95-2.03-8.23a5.19 5.19 0 0 0-.64 0z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
1
src/lib/assets/round-logo-text.svg
Normal file
1
src/lib/assets/round-logo-text.svg
Normal file
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 5.9 KiB |
1
src/lib/assets/round-logo.svg
Normal file
1
src/lib/assets/round-logo.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" viewBox="0 0 508.09 508.09"><defs><radialGradient xlink:href="#a" id="b" cx="256" cy="256" r="254.04" fx="256" fy="256" gradientUnits="userSpaceOnUse"/><linearGradient id="a"><stop offset="0" stop-color="#2b343c"/><stop offset="1" stop-color="#404c55"/></linearGradient></defs><circle cx="256" cy="256" r="254.04" fill="url(#b)" transform="translate(-1.96 -1.96)"/><path fill="#4fd1d1" d="M254.04 61.47c-70.95 0-128.48 57.53-128.48 128.48 0 14.11 2.33 28.12 6.88 41.47l-.01-.01 7.36 17.3a124.7 124.7 0 0 0 5.25 9.1l.97 1.69 108.03 187.1 108.03-187.1.98-1.7a128.5 128.5 0 0 0 5.25-9.08l7.35-17.28v-.02a128.48 128.48 0 0 0 6.87-41.47C382.52 119 325 61.47 254.04 61.47Zm-84.01 49.27 2.52 2.38c7.74 7.29 16.97 12.23 28.03 15.02 4.64 1.17 4.62 1.17 8.1-.34 25.92-11.2 64.62-11.22 91.01-.03 7.27 3.08 25.1-4.12 36.09-14.59a30.17 30.17 0 0 1 2.43-2.18c.35 0 .48 6.13.2 9.02a49.7 49.7 0 0 1-9.29 24.82l-1.47 2.06.7.94c38.07 51.55-7.46 115.42-60.6 85-1.3-.74-2.45-1.24-2.57-1.11-.2.2-5.5 10.18-9.4 17.68-1.76 3.39-1.4 3.4-3.26-.14-4.77-9.12-9.38-17.7-9.5-17.7-.08 0-1.18.58-2.45 1.31-52.6 30.1-99.03-34.13-60.98-84.33.78-1.02 1.1-1.66.95-1.87-7.68-10.44-11.39-21.86-10.7-32.92zm44.85 39.23a35.62 35.62 0 0 0-15.48 3.92c-35.26 17.47-16.98 71.79 21.65 64.33a35.5 35.5 0 0 0 22.5-14.71c1.25-1.78 1.67-2.22 1.88-1.93.14.2 2.14 3.61 4.44 7.59 4.87 8.43 4.1 7.82 5.9 4.67a497.41 497.41 0 0 1 7.32-12.44c.14-.08.96.9 1.86 2.22 16.09 23.62 52.73 18.48 61.43-8.6 8.52-26.58-16.98-51.8-43.57-43.1-12.13 3.98-20.13 12.66-27.95 30.34l-.7 1.56-1.38-3.13c-8.8-20-22.71-30.89-37.9-30.72zm76.41 18.05c4.34-.12 8.8 1.43 12.33 4.95 11.83 11.83.35 31.55-16.05 27.58-8.43-2.04-13.82-10.73-12.05-19.4 1.65-8.07 8.54-12.92 15.77-13.13zm-75.7.04c8.54-.48 16.99 5.68 17.6 15.6.66 11.02-10.1 19.75-20.85 16.88-12.5-3.33-16.72-18.35-7.72-27.46a16.6 16.6 0 0 1 10.97-5.02zm6.22 4.93c-1.1.07-2.17.56-3 1.54-3.25 3.86 1.28 9.24 5.7 6.74a4.52 4.52 0 0 0 2.21-3.84c0-2.82-2.5-4.61-4.9-4.44zm63.97.06c-3.15.2-5.02 3.3-3.63 6.36 1.05 2.31 4.26 3.26 6.3 1.87 3.77-2.56 2.44-7.95-2.03-8.23a5.19 5.19 0 0 0-.64 0z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -1,26 +1,34 @@
|
||||
<script lang="ts">
|
||||
import { components } from '$lib/mapRegistry';
|
||||
import type { ElecType } from '$lib/railStyles';
|
||||
import { IconArrowNarrowRight } from '@tabler/icons-svelte';
|
||||
|
||||
export let feature: any; // Raw Object
|
||||
export let activeElec: string; // Active Electrification Type
|
||||
type featureType = "station" | "junction" | "crossovers" | "siteof" | "bridge" | "minorBridge" | "crossover" | "crossing" | "loop" | "loops" | "signallerChange" | "electrificationChange" | "default" | "tunnel";
|
||||
export let feature: {name: string; type: featureType; goto?: string; entryPoint?: string; miles: number; chains: number; description?: string}; // Raw Object
|
||||
export let activeElec: ElecType; // Active Electrification Type
|
||||
export let reversed: boolean = false;
|
||||
|
||||
$: Icon = components[feature.type] || components.default;
|
||||
|
||||
// Linking Logic
|
||||
$: isLinkable = !!(feature.goto && feature.entryPoint);
|
||||
$: href = `/map/${feature.goto}#${feature.entryPoint}`;
|
||||
|
||||
const slugify = (str?: string) =>
|
||||
str?.toLocaleLowerCase().trim().replace(/\s+/g, '-') ?? 'unknown';
|
||||
</script>
|
||||
|
||||
<div class="row-container" id="{slugify(feature.name)}">
|
||||
<div class="row-container" id={slugify(feature.name)}>
|
||||
<div class="mileage-col">
|
||||
<span class="miles">{feature.miles + 'm' || ''}</span>
|
||||
<span class="chains">{feature.chains + 'ch' || ''}</span>
|
||||
</div>
|
||||
|
||||
<div class="icon-col">
|
||||
<svelte:component this={Icon} {feature} {activeElec} {reversed} />
|
||||
<svelte:component this={Icon} feature={feature as any} {activeElec} {reversed} />
|
||||
</div>
|
||||
|
||||
<svelte:element this={isLinkable ? 'a' : 'div'} {...(isLinkable ? { href } : {})} class="link-wrapper">
|
||||
<div class="label-col">
|
||||
{#if feature.name}
|
||||
<div class="feature-name">{feature.name}</div>
|
||||
@@ -29,18 +37,31 @@
|
||||
<div class="feature-desc">{feature.description}</div>
|
||||
{/if}
|
||||
</div>
|
||||
{#if isLinkable}
|
||||
<div class="link-indicator">
|
||||
<IconArrowNarrowRight />
|
||||
</div>
|
||||
{/if}
|
||||
</svelte:element>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<style>
|
||||
a {
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
.row-container {
|
||||
display: grid;
|
||||
/* Balanced columns: 1fr on both sides keeps the 64px icon in the dead center */
|
||||
grid-template-columns: 3.5rem 64px 1fr;
|
||||
width: 100%;
|
||||
height: 64px;
|
||||
max-height: 64px;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.mileage-col {
|
||||
@@ -50,7 +71,7 @@
|
||||
padding-right: 12px;
|
||||
font-family: 'Courier New', Courier, monospace;
|
||||
font-size: 0.85rem;
|
||||
color: #64748b; /* Adjusted slightly for contrast */
|
||||
color: #64748b;
|
||||
}
|
||||
|
||||
.miles {
|
||||
@@ -62,13 +83,46 @@
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
|
||||
.icon-col {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
/* Ensure the icon itself is centered if the SVG is smaller than 64px */
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
|
||||
.link-wrapper {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.link-indicator {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-left: 5px;
|
||||
margin-right: 8px;
|
||||
flex-shrink: 0;
|
||||
color: #e1ebeb;
|
||||
background-color: #3c6f79;
|
||||
padding: 2px 2px;
|
||||
border-radius: 999px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.link-wrapper:hover .link-indicator {
|
||||
background-color: #404c55;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
|
||||
.label-col {
|
||||
@@ -76,20 +130,16 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
|
||||
/* FIX: Allow children to manage their own wrapping */
|
||||
overflow: hidden;
|
||||
/* min-width: 0 is critical for flex children to allow truncation */
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.feature-name {
|
||||
font-weight: 700;
|
||||
font-family: sans-serif;
|
||||
color: #1e293b;
|
||||
font-size: 0.8rem;
|
||||
text-transform: capitalize;
|
||||
|
||||
/* Allow the title to wrap naturally onto multiple lines */
|
||||
white-space: normal;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 2px;
|
||||
@@ -98,12 +148,11 @@
|
||||
.feature-desc {
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
font-family: sans-serif;
|
||||
-webkit-line-clamp: 2;
|
||||
line-clamp: 2;
|
||||
overflow: hidden;
|
||||
|
||||
/* Firefox Fix: Ensure white-space is normal here too */
|
||||
white-space: normal;
|
||||
|
||||
line-height: 1.2rem;
|
||||
max-height: 2.4rem;
|
||||
font-size: 0.75rem;
|
||||
@@ -111,21 +160,26 @@
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
/* Tablet and Desktop scaling */
|
||||
@media (max-width: 320px) {
|
||||
.feature-desc {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 480px) {
|
||||
.feature-name {
|
||||
font-size: 1rem; /* The larger title you requested */
|
||||
font-size: 1rem;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.feature-desc {
|
||||
font-size: 0.85rem; /* Slightly larger desc to match */
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.3rem;
|
||||
max-height: 2.6rem;
|
||||
}
|
||||
|
||||
.label-col {
|
||||
padding-left: 24px; /* More "breathing room" on big screens */
|
||||
padding-left: 24px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -9,10 +9,9 @@
|
||||
|
||||
$: type = feature.kind.toLowerCase();
|
||||
$: isFoot = type === 'foot';
|
||||
$: filterCategory = isFoot ? 'foot' : type === 'uwc' ? 'uwc' : 'level-crossing';
|
||||
</script>
|
||||
|
||||
<svg viewBox="0 0 64 64" width="64" height="64" class={filterCategory}>
|
||||
<svg viewBox="0 0 64 64" width="64" height="64">
|
||||
<BaseTrack {activeElec} height={64} />
|
||||
|
||||
{#if type === 'foot'}
|
||||
|
||||
@@ -37,13 +37,13 @@
|
||||
<g font-family="sans-serif" font-size="10" font-weight="800" text-anchor="start">
|
||||
{#if showFromEco}
|
||||
<text x="75" y="24" fill="#b91c1c" style="text-transform: uppercase;">
|
||||
ECO: {feature.from.eco}
|
||||
ECO: {feature.from.eco} | Type: {feature.from.elec}
|
||||
</text>
|
||||
{/if}
|
||||
|
||||
{#if showToEco}
|
||||
<text x="75" y="48" fill="#b91c1c" style="text-transform: uppercase;">
|
||||
ECO: {feature.to.eco}
|
||||
ECO: {feature.to.eco} | Type: {feature.to.elec}
|
||||
</text>
|
||||
{/if}
|
||||
</g>
|
||||
|
||||
@@ -6,6 +6,8 @@
|
||||
direction: 'up' | 'down';
|
||||
diverges: 'left' | 'right' | 'both';
|
||||
elecBranch?: string;
|
||||
goto?: string;
|
||||
entryPoint?: string;
|
||||
};
|
||||
export let activeElec: any;
|
||||
export let reversed: boolean = false;
|
||||
|
||||
@@ -1,12 +1,14 @@
|
||||
<script lang="ts">
|
||||
import { IconArrowNarrowRight } from '@tabler/icons-svelte';
|
||||
export let feature: {
|
||||
routeName: string;
|
||||
routeId: string;
|
||||
entryPoint: string;
|
||||
};
|
||||
</script>
|
||||
|
||||
<div class="link-wrapper">
|
||||
<a href="/map/{feature.routeId}" class="wide-button">
|
||||
<a href="/map/{feature.routeId}#{feature.entryPoint}" class="wide-button">
|
||||
<div class="content">
|
||||
<div class="header-row">
|
||||
<span class="sub-text">Go to</span>
|
||||
@@ -16,16 +18,7 @@
|
||||
</div>
|
||||
|
||||
<div class="icon-circle">
|
||||
<svg viewBox="0 0 24 24" width="20" height="20">
|
||||
<path
|
||||
d="M5 12h14M12 5l7 7-7 7"
|
||||
fill="none"
|
||||
stroke="currentColor"
|
||||
stroke-width="3"
|
||||
stroke-linecap="round"
|
||||
stroke-linejoin="round"
|
||||
/>
|
||||
</svg>
|
||||
<IconArrowNarrowRight />
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
@@ -68,12 +61,14 @@
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
font-family: "urwgothic";
|
||||
color: #64748b;
|
||||
}
|
||||
|
||||
.route-id-chip {
|
||||
font-size: 0.6rem;
|
||||
font-weight: 800;
|
||||
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
||||
background: #f1f5f9;
|
||||
color: #475569;
|
||||
padding: 2px 6px;
|
||||
@@ -82,6 +77,7 @@
|
||||
}
|
||||
|
||||
.main-text {
|
||||
font-family: "urwgothic";
|
||||
font-size: 1rem;
|
||||
font-weight: 800;
|
||||
color: #0f172a;
|
||||
@@ -91,16 +87,15 @@
|
||||
}
|
||||
|
||||
.icon-circle {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: #f8fafc;
|
||||
border-radius: 50%;
|
||||
color: #94a3b8;
|
||||
|
||||
color: #e1ebeb;
|
||||
background-color: #3c6f79;
|
||||
padding: 4px 4px;
|
||||
border-radius: 999px;
|
||||
transition: all 0.3s ease;
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
.wide-button:hover {
|
||||
@@ -110,8 +105,7 @@
|
||||
}
|
||||
|
||||
.wide-button:hover .icon-circle {
|
||||
background: #4f46e5;
|
||||
color: #ffffff;
|
||||
background-color: #404c55;
|
||||
transform: rotate(-45deg);
|
||||
}
|
||||
|
||||
|
||||
@@ -1,11 +1,18 @@
|
||||
<script lang="ts">
|
||||
import BaseTrack from '$lib/components/mapIcons/BaseTrack.svelte';
|
||||
import type { ElecType } from '$lib/railStyles';
|
||||
|
||||
export let activeElec: string;
|
||||
export let activeElec: ElecType;
|
||||
export let feature: any;
|
||||
export let reversed: boolean;
|
||||
|
||||
const pinSVG: string = `<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 256.96 385.14"><path fill="#4fd1d1" d="M128.48 0C57.52 0 0 57.52 0 128.48c0 14.1 2.32 28.12 6.88 41.47l-.01-.01 7.35 17.3c1.63 3.1 3.38 6.14 5.25 9.1l.98 1.68 108.03 187.12 108.03-187.12.98-1.69a128.5 128.5 0 0 0 5.25-9.09l7.34-17.28a128.48 128.48 0 0 0 6.88-41.48C256.96 57.52 199.44 0 128.48 0ZM44.47 49.27l2.52 2.37c7.74 7.3 16.96 12.23 28.02 15.02 4.65 1.17 4.62 1.17 8.11-.34 25.92-11.2 64.61-11.21 91-.03 7.28 3.09 25.1-4.12 36.1-14.58a30.17 30.17 0 0 1 2.43-2.18c.34 0 .47 6.13.19 9.02a49.7 49.7 0 0 1-9.28 24.82l-1.48 2.06.7.94c38.07 51.55-7.45 115.42-60.6 85-1.3-.74-2.45-1.24-2.56-1.12-.2.2-5.5 10.18-9.4 17.68-1.77 3.4-1.41 3.4-3.26-.13-4.77-9.13-9.38-17.71-9.5-17.71-.09 0-1.19.6-2.45 1.32-52.6 30.1-99.04-34.14-60.98-84.34.77-1.02 1.1-1.66.94-1.86-7.67-10.45-11.38-21.86-10.7-32.92zM89.3 88.5a35.62 35.62 0 0 0-15.47 3.91c-35.27 17.48-16.99 71.8 21.65 64.34a35.5 35.5 0 0 0 22.49-14.72c1.26-1.78 1.68-2.21 1.88-1.93.15.2 2.15 3.62 4.44 7.6 4.88 8.42 4.11 7.82 5.91 4.67a554.85 554.85 0 0 1 7.31-12.45c.15-.07.97.91 1.86 2.23 16.1 23.61 52.74 18.48 61.43-8.6 8.53-26.59-16.97-51.8-43.57-43.1-12.12 3.98-20.12 12.66-27.95 30.34l-.69 1.56-1.38-3.14c-8.81-20-22.72-30.88-37.9-30.71zm76.42 18.05c4.34-.12 8.8 1.42 12.33 4.95 11.83 11.83.35 31.55-16.05 27.58-8.43-2.05-13.82-10.73-12.05-19.41 1.64-8.06 8.54-12.91 15.77-13.12zm-75.7.03c8.54-.47 16.98 5.68 17.59 15.6.67 11.03-10.1 19.76-20.84 16.89-12.5-3.34-16.73-18.36-7.72-27.46a16.6 16.6 0 0 1 10.97-5.03zm6.22 4.93c-1.1.08-2.18.56-3 1.54-3.25 3.87 1.28 9.25 5.69 6.75a4.52 4.52 0 0 0 2.22-3.85c0-2.81-2.5-4.6-4.91-4.44zm63.97.07c-3.15.2-5.02 3.3-3.64 6.36 1.05 2.3 4.27 3.26 6.3 1.87 3.77-2.56 2.44-7.96-2.02-8.23a5.19 5.19 0 0 0-.64 0z"/></svg>`;
|
||||
</script>
|
||||
|
||||
<!--
|
||||
Check for 'feature.side' and place map pin on that side of the track.
|
||||
Use 'reversed' to switch sides if the route is reversed.
|
||||
-->
|
||||
<svg viewBox="0 0 64 64" width="64" height="64" class="loops">
|
||||
<BaseTrack {activeElec} height={64} />
|
||||
</svg>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
import BaseTrack from './BaseTrack.svelte';
|
||||
|
||||
export let feature: {
|
||||
tunnelType: 'start' | 'whole' | 'end';
|
||||
tunnelType: 'start' | 'whole' | 'end' | 'mid';
|
||||
length: string;
|
||||
};
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
const portalColour = '#475569'; // Slate grey
|
||||
|
||||
$: effectiveType = (() => {
|
||||
if (!reversed || feature.tunnelType === 'whole') return feature.tunnelType;
|
||||
if (!reversed || feature.tunnelType === 'whole' || feature.tunnelType === 'mid') return feature.tunnelType;
|
||||
return feature.tunnelType === 'start' ? 'end' : 'start';
|
||||
})();
|
||||
</script>
|
||||
@@ -32,7 +32,7 @@
|
||||
{/if}
|
||||
</g>
|
||||
|
||||
{#if feature.tunnelType === 'whole' && feature.length}
|
||||
{#if feature.length}
|
||||
<rect x="12" y="26" width="40" height="12" fill="white" />
|
||||
<text
|
||||
x="32"
|
||||
|
||||
@@ -16,6 +16,7 @@ export const components = {
|
||||
crossovers: Crossover,
|
||||
siteof: SiteOf,
|
||||
bridge: Bridge,
|
||||
minorBridge: Bridge,
|
||||
crossover: Crossover,
|
||||
crossing: Crossing,
|
||||
loop: Loop,
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
<script lang="ts">
|
||||
import favicon from '$lib/assets/favicon.svg';
|
||||
import globalCss from '$lib/assets/global.css';
|
||||
import favicon from '$lib/assets/round-logo.svg';
|
||||
import appleLogo from '$lib/assets/apple-touch-icon.png';
|
||||
import '$lib/assets/global.css';
|
||||
|
||||
let { children } = $props();
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<link rel="icon" href={favicon} />
|
||||
<link rel="stylesheet" href={globalCss} />
|
||||
<link rel="apple-touch-icon" href={appleLogo} />
|
||||
</svelte:head>
|
||||
|
||||
{@render children()}
|
||||
|
||||
@@ -1,23 +1,26 @@
|
||||
<script lang="ts">
|
||||
import logo from '$lib/assets/round-logo-text.svg';
|
||||
import type { PageData } from './$types';
|
||||
import { base } from '$app/paths';
|
||||
export let data: PageData;
|
||||
import favicon from '$lib/assets/favicon.svg';
|
||||
import { resolve } from '$app/paths';
|
||||
|
||||
let searchTerm = '';
|
||||
let { data }: { data: PageData } = $props();
|
||||
let searchTerm = $state('');
|
||||
|
||||
$: filteredMaps = data.maps.filter(
|
||||
(m) =>
|
||||
m.routeId.toString().includes(searchTerm) ||
|
||||
m.routeStart.toLowerCase().includes(searchTerm.toLowerCase()) ||
|
||||
m.routeEnd.toLowerCase().includes(searchTerm.toLowerCase())
|
||||
let filteredMaps = $derived(
|
||||
data.maps.filter((m) => {
|
||||
const term = searchTerm.toLowerCase();
|
||||
|
||||
if (m.routeId.toString().includes(term)) return true;
|
||||
|
||||
return m.contents.some((location) => location.toLowerCase().includes(term));
|
||||
})
|
||||
);
|
||||
|
||||
const vibrate = (patern: number | number[] = 10) => {
|
||||
const vibrate = (pattern: number | number[] = 10) => {
|
||||
if (typeof window !== 'undefined' && window.navigator.vibrate) {
|
||||
window.navigator.vibrate(pattern);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const isVerifiedRecently = (dateVal: string | null) => {
|
||||
if (!dateVal) return 'draft';
|
||||
@@ -47,29 +50,20 @@
|
||||
<div class="page-wrapper">
|
||||
<header class="main-header">
|
||||
<div class="brand-container">
|
||||
<img
|
||||
src={favicon}
|
||||
alt="OwlBoard Logo"
|
||||
class="main-logo"
|
||||
/>
|
||||
<div class="brand-text">
|
||||
<h1>Routes</h1>
|
||||
</div>
|
||||
<div class="search-container">
|
||||
<input
|
||||
type="text"
|
||||
bind:value={searchTerm}
|
||||
placeholder="Search index..."
|
||||
class="search-input"
|
||||
/>
|
||||
</div>
|
||||
<img src={logo} alt="OwlBoard Logo" class="main-logo" />
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="list-container">
|
||||
<a href="https://owlboard.info" class="button-link">Go to OwlBoard Live Departures & PIS</a>
|
||||
|
||||
<input type="text" bind:value={searchTerm} placeholder="Search Station/Jn" class="search-input" />
|
||||
{#each filteredMaps as map (map.routeId)}
|
||||
<a href="{base}/map/{map.routeId.toString().padStart(4, '0')}" class="card" on:click={() => vibrate(10)}>
|
||||
<a
|
||||
href={resolve(`/map/${map.routeId.toString().padStart(4, '0')}`)}
|
||||
class="card"
|
||||
onclick={() => vibrate(10)}
|
||||
>
|
||||
<div class="card-top">
|
||||
<span class="route-id">{map.routeId.toString().padStart(4, '0')}</span>
|
||||
<span class="status-badge {isVerifiedRecently(map.checked)}">
|
||||
@@ -90,9 +84,9 @@
|
||||
</div>
|
||||
|
||||
<div class="card-footer">
|
||||
<span>Created on {formatDate(map.created)}</span>
|
||||
<span>Updated: {formatDate(map.updated)}</span>
|
||||
{#if map.checked}
|
||||
<span>• Checked & Updated on {formatDate(map.checked)}</span>
|
||||
<span>• Checked: {formatDate(map.checked)}</span>
|
||||
{/if}
|
||||
</div>
|
||||
</a>
|
||||
@@ -121,6 +115,7 @@
|
||||
.main-header {
|
||||
margin-bottom: 1.5rem;
|
||||
position: fixed;
|
||||
height: 80px;
|
||||
top: 0;
|
||||
left: 0;
|
||||
box-sizing: border-box;
|
||||
@@ -145,26 +140,14 @@
|
||||
display: block;
|
||||
}
|
||||
|
||||
.brand-text h1 {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 900;
|
||||
font-family: "urwgothic";
|
||||
margin: 0;
|
||||
line-height: 1;
|
||||
font-style: none;
|
||||
}
|
||||
|
||||
.search-container {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.search-input {
|
||||
width: 100%;
|
||||
margin-left: auto;
|
||||
height: 50px;
|
||||
max-width: 500px;
|
||||
font-family: 'urwgothic';
|
||||
margin: auto;
|
||||
height: 40px;
|
||||
padding: 0.8rem 1rem;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
border-radius: 30px;
|
||||
border: none;
|
||||
font-size: 1rem;
|
||||
@@ -264,14 +247,14 @@
|
||||
}
|
||||
|
||||
.location {
|
||||
font-family: "urwgothic";
|
||||
font-family: 'urwgothic';
|
||||
font-size: 1.23rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.path-arrow {
|
||||
color: #fff;
|
||||
font-family: "urwgothic";
|
||||
font-family: 'urwgothic';
|
||||
font-size: 0.9rem;
|
||||
margin: 0.2rem 0;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
import type { PageLoad } from './$types';
|
||||
|
||||
export interface RouteMapIndex {
|
||||
routeId: string | number;
|
||||
routeStart: string;
|
||||
routeEnd: string;
|
||||
updated: string;
|
||||
checked: string;
|
||||
contents: string[];
|
||||
}
|
||||
|
||||
export const load: PageLoad = async ({ fetch }) => {
|
||||
const response = await fetch('map-index.json');
|
||||
|
||||
@@ -12,6 +21,6 @@ export const load: PageLoad = async ({ fetch }) => {
|
||||
return {
|
||||
maps: maps.sort((a: any, b: any) => {
|
||||
return Number(a.routeId) - Number(b.routeId);
|
||||
})
|
||||
}) as RouteMapIndex[]
|
||||
};
|
||||
};
|
||||
|
||||
@@ -1,22 +1,37 @@
|
||||
import { json } from "@sveltejs/kit";
|
||||
import { json } from '@sveltejs/kit';
|
||||
import type { RequestHandler } from './$types';
|
||||
import favicon from '$lib/assets/favicon.svg?url';
|
||||
import logo from '$lib/assets/round-logo.svg';
|
||||
import maskableLogo from '$lib/assets/maps-logo-maskable.svg';
|
||||
import appleLogo from '$lib/assets/apple-touch-icon.png';
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
export const GET: RequestHandler = ({ url }) => {
|
||||
const manifest = {
|
||||
name: "OwlBoard Maps",
|
||||
short_name: "OwlBoard Maps",
|
||||
start_url: "/",
|
||||
display: "standalone",
|
||||
theme_color: "#ff6600",
|
||||
background_color: "#ffffff",
|
||||
name: 'OwlBoard Maps',
|
||||
short_name: 'OB Maps',
|
||||
start_url: '/',
|
||||
display: 'standalone',
|
||||
theme_color: '#4fd1d1',
|
||||
background_color: '#3d4952',
|
||||
icons: [
|
||||
{
|
||||
src: favicon,
|
||||
sizes: "any",
|
||||
type: "image/svg+xml"
|
||||
src: logo,
|
||||
sizes: '48x48 72x72 96x96 128x128 256x256 512x512 any',
|
||||
type: 'image/svg+xml',
|
||||
purpose: 'any'
|
||||
},
|
||||
{
|
||||
src: maskableLogo,
|
||||
sizes: '48x48 72x72 96x96 128x128 256x256 512x512 any',
|
||||
type: 'image/svg+xml',
|
||||
purpose: 'maskable'
|
||||
},
|
||||
{
|
||||
src: appleLogo,
|
||||
sizes: '180x180',
|
||||
type: 'image/png',
|
||||
purpose: 'any'
|
||||
}
|
||||
]
|
||||
};
|
||||
@@ -24,7 +39,7 @@ export const GET: RequestHandler = ({ url }) => {
|
||||
return json(manifest, {
|
||||
headers: {
|
||||
'Content-Type': 'application/manifest+json',
|
||||
'Cache-Control': 'public, max-age=3600',
|
||||
}
|
||||
})
|
||||
'Cache-Control': 'public, max-age=3600'
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
@@ -2,7 +2,10 @@
|
||||
import RouteRow from '$lib/components/RouteRow.svelte';
|
||||
import RouteEndLink from '$lib/components/mapIcons/RouteEndLink.svelte';
|
||||
import { slide } from 'svelte/transition';
|
||||
import { base } from '$app/paths';
|
||||
import { resolve } from '$app/paths';
|
||||
|
||||
import logo from '$lib/assets/round-logo.svg';
|
||||
import { IconArrowsExchange, IconSettings } from '@tabler/icons-svelte';
|
||||
|
||||
// data.route contains: routeStart, routeEnd, routeId, elecStart, elecEnd, routeDetail[]
|
||||
export let data;
|
||||
@@ -11,6 +14,7 @@
|
||||
|
||||
let visibleTypes = {
|
||||
station: true,
|
||||
minorBridge: false,
|
||||
bridge: true,
|
||||
crossovers: true,
|
||||
loop: true,
|
||||
@@ -18,7 +22,8 @@
|
||||
electrificationChange: true,
|
||||
siteof: true,
|
||||
junction: true,
|
||||
tunnel: true
|
||||
tunnel: true,
|
||||
crossing: true,
|
||||
};
|
||||
|
||||
let showFilters = false;
|
||||
@@ -61,8 +66,8 @@
|
||||
<div class="map-layout">
|
||||
<header class="top-nav">
|
||||
<div class="nav-cluster">
|
||||
<a href="{base}/" class="home-link" title="Back to Index">
|
||||
<span class="home-icon">⌂</span>
|
||||
<a href={resolve('/')} aria-label="Home" class="home-link" title="Back to Index">
|
||||
<img src={logo} alt="OwlBoard Logo" class="nav-logo" />
|
||||
</a>
|
||||
|
||||
<div class="route-stack">
|
||||
@@ -71,27 +76,34 @@
|
||||
{reversed ? data.route.routeEnd : data.route.routeStart}
|
||||
</h1>
|
||||
<span class="secondary-station">
|
||||
to {reversed ? data.route.routeStart : data.route.routeEnd}
|
||||
<span class="route-stack-to">
|
||||
to</span> {reversed ? data.route.routeStart : data.route.routeEnd}
|
||||
</span>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="quick-actions">
|
||||
<button class="icon-btn" on:click={() => (reversed = !reversed)}>
|
||||
⇄ {reversed ? 'UP' : 'DN'}
|
||||
<button class="icon-btn" onclick={() => (reversed = !reversed)}>
|
||||
<IconArrowsExchange />
|
||||
</button>
|
||||
<button class="icon-btn" on:click={() => (showFilters = !showFilters)}> Settings </button>
|
||||
<button class="icon-btn" onclick={() => (showFilters = !showFilters)}> <IconSettings /> </button>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{#if showFilters}
|
||||
<div class="backdrop" on:click={() => (showFilters = false)}></div>
|
||||
<div
|
||||
class="backdrop"
|
||||
role="button"
|
||||
tabindex="0"
|
||||
onclick={() => (showFilters = false)}
|
||||
onkeydown={(e) => (e.key === 'Enter' || e.key === ' ') && (showFilters = false)}
|
||||
></div>
|
||||
|
||||
<div class="filter-drawer" transition:slide>
|
||||
<div class="drawer-header">
|
||||
<h3>Visibility Filters</h3>
|
||||
<button class="close-icon" on:click={() => (showFilters = false)} aria-label="Close">
|
||||
<button class="close-icon" onclick={() => (showFilters = false)} aria-label="Close">
|
||||
<svg
|
||||
viewBox="0 0 24 24"
|
||||
width="20"
|
||||
@@ -111,7 +123,7 @@
|
||||
<button
|
||||
class="filter-chip"
|
||||
class:active={visibleTypes[type]}
|
||||
on:click={() => toggleFilter(type)}
|
||||
onclick={() => toggleFilter(type)}
|
||||
>
|
||||
{formatLabel(type)}
|
||||
</button>
|
||||
@@ -149,11 +161,12 @@
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
top: 0;
|
||||
height: 80px;
|
||||
left: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 0.5rem 1rem;
|
||||
padding: 0 0;
|
||||
background: #3c6f79;
|
||||
color: #e1ebeb;
|
||||
gap: 1rem;
|
||||
@@ -171,26 +184,42 @@
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
background: #404c55;
|
||||
border: 1px solid #334155;
|
||||
border-radius: 8px;
|
||||
color: #e1ebeb;
|
||||
text-decoration: none;
|
||||
font-size: 1.2rem;
|
||||
width: 52px;
|
||||
height: 52px;
|
||||
padding-left: 0;
|
||||
margin-left: 15px;
|
||||
margin-right: 0;
|
||||
padding-right: 0;
|
||||
flex-shrink: 0;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
@media (max-width: 350px) {
|
||||
.home-link {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
}
|
||||
}
|
||||
|
||||
.home-link:hover {
|
||||
background: #2d2d2d;
|
||||
transform: translateY(-1px) scale(1.05);
|
||||
filter: brightness(1.1);
|
||||
}
|
||||
|
||||
.home-link:active {
|
||||
transform: scale(0.95);
|
||||
}
|
||||
|
||||
.route-stack {
|
||||
display: flex;
|
||||
font-family: "urwgothic";
|
||||
flex-direction: column;
|
||||
min-width: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.route-stack-to {
|
||||
text-transform: lowercase;
|
||||
}
|
||||
|
||||
.primary-station {
|
||||
@@ -206,36 +235,30 @@
|
||||
.secondary-station {
|
||||
font-size: 0.7rem;
|
||||
color: #cce9e9;
|
||||
text-transform: uppercase;
|
||||
text-transform: capitalize;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.quick-actions {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
.map-spine {
|
||||
padding-top: 72px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
@media (min-width: 536px) {
|
||||
.primary-station {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
.secondary-station {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.top-nav {
|
||||
padding: 0 2rem;
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
.map-spine {
|
||||
padding-top: 90px;
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
h1 {
|
||||
font-size: 1.5rem;
|
||||
letter-spacing: -0.03em;
|
||||
@@ -352,6 +375,12 @@
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
@media (max-width: 390px) {
|
||||
.icon-btn {
|
||||
padding: 0.3rem 0.3rem;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-btn:hover {
|
||||
background: #2d2d2d;
|
||||
}
|
||||
|
||||
@@ -1,27 +1,30 @@
|
||||
import type { PageLoad } from '/$types';
|
||||
import { error } from '@sveltejs/kit';
|
||||
|
||||
export const load: PageLoad = async ({ params, fetch }) => {
|
||||
const mapDataFiles = import.meta.glob('$lib/assets/route/*.json', { query: '?json' });
|
||||
|
||||
export const load: PageLoad = async ({ params }) => {
|
||||
const { slug } = params;
|
||||
|
||||
try {
|
||||
const res = await fetch(`/mapFiles/json/${slug}.json`);
|
||||
const path = `/src/lib/assets/route/${slug}.json`;
|
||||
console.log(`Finding path: ${path}`);
|
||||
|
||||
if (!res.ok) {
|
||||
if (!(path in mapDataFiles)) {
|
||||
throw error(404, {
|
||||
message: `Route ${slug} not found`
|
||||
});
|
||||
}
|
||||
|
||||
const rawData = await res.json();
|
||||
try {
|
||||
const rawData = await mapDataFiles[path]();
|
||||
|
||||
return {
|
||||
route: rawData,
|
||||
slug: slug
|
||||
slug: slug,
|
||||
};
|
||||
|
||||
} catch (err) {
|
||||
console.error(`Error loading map ${slug}: `, err);
|
||||
|
||||
throw error(500, {
|
||||
message: `Failed to parse map data for ${slug}`
|
||||
});
|
||||
|
||||
BIN
static/favicon.ico
Normal file
BIN
static/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 124 KiB |
@@ -1,7 +1,7 @@
|
||||
routeStart: Paddington
|
||||
routeEnd: Reading West Jn
|
||||
routeId: 0001
|
||||
created: 2026-02-04
|
||||
routeEnd: Reading
|
||||
routeId: "0001"
|
||||
updated: 2026-02-09
|
||||
checked: 2026-02-09
|
||||
signallerStart: TVSC Paddington WS
|
||||
signallerEnd: TVSC Reading WS
|
||||
@@ -52,7 +52,7 @@ routeDetail:
|
||||
chains: 52
|
||||
|
||||
- type: crossovers
|
||||
name: Subway Junction
|
||||
name: Subway Jn
|
||||
miles: 0
|
||||
chains: 61
|
||||
|
||||
@@ -85,7 +85,7 @@ routeDetail:
|
||||
chains: 18
|
||||
|
||||
- type: junction
|
||||
name: Westbourne Park Junction
|
||||
name: Westbourne Park Jn
|
||||
diverges: left
|
||||
direction: up
|
||||
description: to Crossrail Core Operating Section
|
||||
@@ -93,7 +93,7 @@ routeDetail:
|
||||
chains: 21
|
||||
|
||||
- type: crossovers
|
||||
name: Portobello Junction
|
||||
name: Portobello Jn
|
||||
miles: 1
|
||||
chains: 33
|
||||
|
||||
@@ -120,7 +120,7 @@ routeDetail:
|
||||
chains: 73
|
||||
|
||||
- type: junction
|
||||
name: Kensal Green East Junction
|
||||
name: Kensal Green East Jn
|
||||
diverges: both
|
||||
direction: down
|
||||
description: to Crossrail & North Pole Depots
|
||||
@@ -156,8 +156,6 @@ routeDetail:
|
||||
|
||||
- type: siteof
|
||||
name: Old Oak Common West
|
||||
diverges: left
|
||||
direction: up
|
||||
description: Junction has been removed
|
||||
miles: 3
|
||||
chains: 20
|
||||
@@ -177,7 +175,7 @@ routeDetail:
|
||||
chains: 45
|
||||
|
||||
- type: junction
|
||||
name: Friars Junction
|
||||
name: Friars Jn
|
||||
diverges: left
|
||||
direction: up
|
||||
elecBranch: none
|
||||
@@ -207,7 +205,7 @@ routeDetail:
|
||||
chains: 80
|
||||
|
||||
- type: junction
|
||||
name: Acton East Junction
|
||||
name: Acton East Jn
|
||||
diverges: left
|
||||
direction: up
|
||||
description: Up/Dn Poplar to Acton Wells Jn
|
||||
@@ -312,7 +310,7 @@ routeDetail:
|
||||
chains: 46
|
||||
|
||||
- type: junction
|
||||
name: West Ealing Junction
|
||||
name: West Ealing Jn
|
||||
diverges: left
|
||||
direction: down
|
||||
elecBranch: none
|
||||
@@ -328,7 +326,7 @@ routeDetail:
|
||||
chains: 71
|
||||
|
||||
- type: junction
|
||||
name: Hanwell Junction
|
||||
name: Hanwell Jn
|
||||
diverges: left
|
||||
direction: up
|
||||
elecBranch: none
|
||||
@@ -394,7 +392,7 @@ routeDetail:
|
||||
chains: 46
|
||||
|
||||
- type: junction
|
||||
name: Southall East Junction
|
||||
name: Southall East Jn
|
||||
diverges: right
|
||||
direction: up
|
||||
elecBranch: none
|
||||
@@ -423,7 +421,7 @@ routeDetail:
|
||||
chains: 53
|
||||
|
||||
- type: crossovers
|
||||
name: Southall West Junction
|
||||
name: Southall West Jn
|
||||
description: Southall Sidings Diverge
|
||||
miles: 9
|
||||
chains: 70
|
||||
@@ -490,7 +488,7 @@ routeDetail:
|
||||
chains: 77
|
||||
|
||||
- type: junction
|
||||
name: Heathrow Airport Junction
|
||||
name: Heathrow Airport Jn
|
||||
diverges: both
|
||||
direction: down
|
||||
miles: 11
|
||||
@@ -506,7 +504,7 @@ routeDetail:
|
||||
chains: 28
|
||||
|
||||
- type: crossovers
|
||||
name: Stockley Bridge Junction
|
||||
name: Stockley Bridge Jn
|
||||
miles: 12
|
||||
chains: 9
|
||||
|
||||
@@ -519,7 +517,7 @@ routeDetail:
|
||||
chains: 22
|
||||
|
||||
- type: crossovers
|
||||
name: West Drayton East Junction
|
||||
name: West Drayton East Jn
|
||||
miles: 12
|
||||
chains: 67
|
||||
|
||||
@@ -538,13 +536,13 @@ routeDetail:
|
||||
|
||||
- type: bridge
|
||||
name: Station Road
|
||||
positon: under
|
||||
position: under
|
||||
category: minorRoad
|
||||
miles: 12
|
||||
chains: 56
|
||||
|
||||
- type: junction
|
||||
name: West Drayton Junction
|
||||
name: West Drayton Jn
|
||||
diverges: left
|
||||
direction: down
|
||||
description: Colnbrook Freight (near Heathrow)
|
||||
@@ -725,7 +723,7 @@ routeDetail:
|
||||
chains: 42
|
||||
|
||||
- type: junction
|
||||
name: Windsor Branch Junction
|
||||
name: Windsor Branch Jn
|
||||
diverges: right
|
||||
direction: down
|
||||
description: Windsor Branch from platforms 1 & 2 Only
|
||||
@@ -1048,7 +1046,7 @@ routeDetail:
|
||||
chains: 1
|
||||
|
||||
- type: junction
|
||||
name: Henley Branch Junction
|
||||
name: Henley Branch Jn
|
||||
diverges: left
|
||||
direction: down
|
||||
description: Henley-on-Thames from Platform 4 only
|
||||
@@ -1169,7 +1167,7 @@ routeDetail:
|
||||
chains: 77
|
||||
|
||||
- type: crossovers
|
||||
name: Kennet Bridge Junction
|
||||
name: Kennet Bridge Jn
|
||||
miles: 35
|
||||
chains: 10
|
||||
|
||||
@@ -1182,7 +1180,7 @@ routeDetail:
|
||||
chains: 28
|
||||
|
||||
- type: junction
|
||||
name: Reading New Junction
|
||||
name: Reading New Jn
|
||||
diverges: right
|
||||
direction: up
|
||||
elecBranch: none
|
||||
@@ -1199,7 +1197,7 @@ routeDetail:
|
||||
chains: 40
|
||||
|
||||
- type: junction
|
||||
name: Reading East Junction
|
||||
name: Reading East Jn
|
||||
diverges: left
|
||||
direction: up
|
||||
elecBranch: none
|
||||
@@ -1219,43 +1217,7 @@ routeDetail:
|
||||
miles: 35
|
||||
chains: 78
|
||||
|
||||
- type: bridge
|
||||
name: Caversham Road
|
||||
position: under
|
||||
category: minorRoad
|
||||
miles: 35
|
||||
chains: 11
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: down
|
||||
name: Westbury Line Junction
|
||||
description: to Oxford Road Jn
|
||||
miles: 36
|
||||
chains: 17
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: down
|
||||
name: Caversham Road Junction
|
||||
description: Reading Feeder Main/Relief diverge and pass under Reading Viaduct to Oxford Rd Jn
|
||||
miles: 36
|
||||
chains: 22
|
||||
|
||||
- type: crossovers
|
||||
name: Reading High Level Junction
|
||||
description: Down Reading Festival Connects to Down Main
|
||||
miles: 36
|
||||
chains: 47
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: up
|
||||
name: Reading West Junction
|
||||
description: to Oxford Road Junction (From relief lines only)
|
||||
miles: 37
|
||||
chains: 17
|
||||
|
||||
- type: continues
|
||||
routeName: Reading West Jn - Bristol TM
|
||||
routeName: Reading - Bristol TM
|
||||
routeId: '0002'
|
||||
entryPoint: reading
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
routeStart: Reading West Jn
|
||||
routeStart: Reading
|
||||
routeEnd: Bristol TM
|
||||
routeId: 0002
|
||||
created: 2026-02-04
|
||||
checked:
|
||||
routeId: "0002"
|
||||
updated: 2026-02-04
|
||||
checked: 2026-03-01
|
||||
signallerStart: TVSC Reading WS
|
||||
signallerEnd: TVSC Temple Meads WS
|
||||
elecStart:
|
||||
@@ -12,10 +12,623 @@ elecEnd:
|
||||
elec: none
|
||||
routeDetail:
|
||||
- type: continues
|
||||
routeName: Paddington - Reading West Jn
|
||||
routeName: Paddington - Reading
|
||||
routeId: '0001'
|
||||
entryPoint: reading
|
||||
|
||||
- type: station
|
||||
name: Reading
|
||||
miles: 35
|
||||
chains: 78
|
||||
|
||||
- type: bridge
|
||||
name: Caversham Road
|
||||
position: under
|
||||
category: minorRoad
|
||||
miles: 35
|
||||
chains: 11
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: down
|
||||
name: Westbury Line Jn
|
||||
description: to Oxford Road Jn
|
||||
goto: "0201"
|
||||
entryPoint: "oxford-road-jn"
|
||||
miles: 36
|
||||
chains: 17
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: down
|
||||
name: Caversham Road Jn
|
||||
description: Reading Feeder Main/Relief diverge and pass under Reading Viaduct to Oxford Rd Jn
|
||||
goto: "0201"
|
||||
entryPoint: "oxford-road-jn"
|
||||
miles: 36
|
||||
chains: 22
|
||||
|
||||
- type: signallerChange
|
||||
from: TVSC Reading WS (T)
|
||||
to: TVSC West Junction WS (T)
|
||||
miles: 36
|
||||
chains: 36
|
||||
|
||||
- type: crossovers
|
||||
name: Scours Lane Junction
|
||||
description: Line diverges
|
||||
name: Reading High Level Jn
|
||||
description: Down Reading Festival Connects to Down Main
|
||||
miles: 36
|
||||
chains: 47
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: up
|
||||
name: Reading West Jn
|
||||
description: to Oxford Road Junction (From relief lines only)
|
||||
goto: "0201"
|
||||
entryPoint: "oxford-road-jn"
|
||||
miles: 37
|
||||
chains: 17
|
||||
|
||||
- type: junction
|
||||
diverges: left
|
||||
direction: up
|
||||
name: Scours Lane Jn
|
||||
description: Reading Up Passenger loop diverges
|
||||
miles: 37
|
||||
chains: 61
|
||||
|
||||
- type: crossovers
|
||||
name: Tilehurst East Junction
|
||||
miles: 38
|
||||
chains: 90
|
||||
chains: 40
|
||||
|
||||
- type: station
|
||||
name: Tilehurst
|
||||
miles: 38
|
||||
chains: 52
|
||||
|
||||
- type: station
|
||||
name: Pangbourne
|
||||
description: Platforms on relief lines only
|
||||
miles: 41
|
||||
chains: 43
|
||||
|
||||
- type: siteof
|
||||
name: White Cliffs of Pangbourne
|
||||
miles: 41
|
||||
chains: 60
|
||||
|
||||
- type: bridge
|
||||
name: Basildon Skew Bridges
|
||||
description: Two adjacent Bridges
|
||||
roadName: A329
|
||||
category: aroad
|
||||
position: over
|
||||
miles: 42
|
||||
chains: 68
|
||||
|
||||
- type: bridge
|
||||
name: Gatehampton Viaduct
|
||||
position: under
|
||||
category: waterway
|
||||
description: River Thames
|
||||
miles: 44
|
||||
chains: 3
|
||||
|
||||
- type: station
|
||||
name: Goring & Streatley
|
||||
miles: 44
|
||||
chains: 60
|
||||
|
||||
- type: bridge
|
||||
name: Moulsford Viaduct
|
||||
category: waterway
|
||||
description: River Thames
|
||||
position: under
|
||||
miles: 47
|
||||
chains: 30
|
||||
|
||||
- type: station
|
||||
name: Cholsey
|
||||
description: Cholsey & Wallingford Railway adjacent to platform 4 (UR)
|
||||
miles: 48
|
||||
chains: 37
|
||||
|
||||
- type: signallerChange
|
||||
from: TVSC West Junction WS (T)
|
||||
to: TVSC Didcot WS (SB)
|
||||
miles: 50
|
||||
chains: 0
|
||||
|
||||
- type: crossovers
|
||||
name: Moreton Crossing
|
||||
miles: 51
|
||||
chains: 40
|
||||
|
||||
- type: crossovers
|
||||
name: Didcot East Jn
|
||||
description: Junction spans ~1 mile
|
||||
miles: 51
|
||||
chains: 71
|
||||
|
||||
- type: junction
|
||||
name: Didcot East Jn
|
||||
description: Up/Dn Didcot Avoiding to Oxforc
|
||||
diverges: left
|
||||
direction: down
|
||||
elecBranch: none
|
||||
miles: 52
|
||||
chains: 66
|
||||
|
||||
- type: station
|
||||
name: Didcot Parkway
|
||||
description: Platform 5 - Oxford Only
|
||||
miles: 53
|
||||
chains: 10
|
||||
|
||||
- type: junction
|
||||
name: Chester Line Jn
|
||||
diverges: left
|
||||
direction: down
|
||||
description: Up/Dn Oxford to Oxford, Up relief ends
|
||||
miles: 53
|
||||
chains: 12
|
||||
|
||||
- type: bridge
|
||||
name: Car Park Footbridge
|
||||
category: foot
|
||||
position: over
|
||||
miles: 53
|
||||
chains: 20
|
||||
|
||||
- type: junction
|
||||
name: Foxhall Jn
|
||||
diverges: left
|
||||
description: Up/Dn Didcot West Curve to Oxford
|
||||
direction: up
|
||||
miles: 53
|
||||
chains: 55
|
||||
|
||||
- type: loop
|
||||
position: right
|
||||
name: Down Steventon Goods Loop
|
||||
miles: 55
|
||||
chains: 60
|
||||
|
||||
- type: siteof
|
||||
name: Steventon
|
||||
description: Up Relief line diverges towards Didcot, two tracks towards Swindon
|
||||
miles: 56
|
||||
chains: 32
|
||||
|
||||
- type: crossing
|
||||
kind: CCTV
|
||||
name: Stocks Lane Level Crossing
|
||||
description: CCTV by TVSC
|
||||
miles: 56
|
||||
chains: 58
|
||||
|
||||
- type: crossing
|
||||
name: Causeway Level Crossing
|
||||
kind: CCTV
|
||||
description: CCTV by TVSC
|
||||
miles: 56
|
||||
chains: 72
|
||||
|
||||
- type: siteof
|
||||
name: Wantage Road
|
||||
description: Dn/Up Relief diverge towards Swindon
|
||||
miles: 60
|
||||
chains: 22
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Wantage Road Foot Crossing
|
||||
miles: 60
|
||||
chains: 58
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Grove Level Crossing
|
||||
miles: 61
|
||||
chains: 37
|
||||
|
||||
- type: siteof
|
||||
name: Challow
|
||||
description: Up/Dn Relief diverge towards Didcot
|
||||
miles: 64
|
||||
chains: 0
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Hale Farm Foot Crossing
|
||||
miles: 65
|
||||
chains: 19
|
||||
|
||||
- type: signallerChange
|
||||
from: TVSC Didcot WS (SB)
|
||||
to: TVSC Swindon WS (SW)
|
||||
miles: 66
|
||||
chains: 0
|
||||
|
||||
- type: crossovers
|
||||
name: Uffington
|
||||
miles: 66
|
||||
chains: 39
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Knighton Foot Crossing
|
||||
miles: 69
|
||||
chains: 12
|
||||
|
||||
- type: crossovers
|
||||
name: Bourton
|
||||
miles: 72
|
||||
chains: 30
|
||||
|
||||
- type: junction
|
||||
name: South Marston Jn
|
||||
description: To South Maston Euroterminal
|
||||
diverges: left
|
||||
direction: down
|
||||
elecBranch: none
|
||||
miles: 74
|
||||
chains: 48
|
||||
|
||||
- type: loop
|
||||
name: Up Swindon Goods Loop
|
||||
position: left
|
||||
miles: 75
|
||||
chains: 0
|
||||
|
||||
- type: junction
|
||||
name: Highworth Junction
|
||||
diverges: left
|
||||
direction: up
|
||||
elecBranch: none
|
||||
description: to BMW Sidings
|
||||
miles: 76
|
||||
chains: 32
|
||||
|
||||
- type: loop
|
||||
name: Down Swindon Goods Loop
|
||||
description: Also, Swindon Down Yard
|
||||
position: right
|
||||
miles: 76
|
||||
chains: 0
|
||||
|
||||
- type: junction
|
||||
name: Cocklebury Sidings
|
||||
diverges: left
|
||||
direction: down
|
||||
miles: 76
|
||||
chains: 67
|
||||
|
||||
- type: station
|
||||
name: Swindon
|
||||
miles: 77
|
||||
chains: 23
|
||||
|
||||
- type: junction
|
||||
name: Swindon Jn
|
||||
diverges: left
|
||||
direction: down
|
||||
description: Up/Dn Kemble towards Gloucester
|
||||
goto: "0230"
|
||||
entryPoint: swindon-jn
|
||||
miles: 77
|
||||
chains: 36
|
||||
|
||||
- type: crossovers
|
||||
name: Rushey Platt Jn
|
||||
description: Up Swindon relief diverges towards Swindon
|
||||
miles: 78
|
||||
chains: 36
|
||||
|
||||
- type: bridge
|
||||
category: motorway
|
||||
roadName: M4
|
||||
position: over
|
||||
miles: 80
|
||||
chains: 8
|
||||
|
||||
- type: crossing
|
||||
kind: msl
|
||||
name: Upper Studley Foot Crossing
|
||||
miles: 80
|
||||
chains: 64
|
||||
|
||||
- type: crossing
|
||||
name: Canalside 2 Foot Crossing
|
||||
kind: foot
|
||||
miles: 81
|
||||
chains: 74
|
||||
|
||||
- type: junction
|
||||
name: Wootton Bassett Jn
|
||||
diverges: left
|
||||
direction: down
|
||||
description: Up/Dn Badminton to Bristol PW
|
||||
goto: "0240"
|
||||
entryPoint: wootton-bassett-jn
|
||||
miles: 83
|
||||
chains: 7
|
||||
|
||||
- type: junction
|
||||
name: Wooton Bassett GF
|
||||
diverges: right
|
||||
direction: up
|
||||
description: Access to Wootton Bassett Sidings
|
||||
elecBranch: none
|
||||
miles: 83
|
||||
chains: 28
|
||||
|
||||
- type: siteof
|
||||
name: Wootton Bassett Incline Signal Box
|
||||
description: Disused
|
||||
miles: 85
|
||||
chains: 22
|
||||
|
||||
- type: crossing
|
||||
kind: msl
|
||||
name: Christian Malford Foot Crossing
|
||||
miles: 88
|
||||
chains: 79
|
||||
|
||||
- type: bridge
|
||||
name: River Avon Viaduct
|
||||
position: under
|
||||
category: waterway
|
||||
miles: 90
|
||||
chains: 85
|
||||
|
||||
- type: electrificationChange
|
||||
from:
|
||||
elec: 25kvac
|
||||
eco: Didcot
|
||||
to:
|
||||
elec: none
|
||||
miles: 93
|
||||
chains: 35
|
||||
|
||||
- type: station
|
||||
name: Chippenham
|
||||
miles: 93
|
||||
chains: 76
|
||||
|
||||
- type: crossovers
|
||||
name: Thingley Crossovers
|
||||
miles: 95
|
||||
chains: 32
|
||||
|
||||
- type: junction
|
||||
name: Thingley Jn
|
||||
diverges: right
|
||||
direction: down
|
||||
description: to Melksham & Trowbridge
|
||||
goto: "0250"
|
||||
entryPoint: thingley-jn
|
||||
miles: 96
|
||||
chains: 10
|
||||
|
||||
- type: signallerChange
|
||||
from: TVSC Swindon WS (SW)
|
||||
to: TVSC Bath WS (BL)
|
||||
miles: 99
|
||||
chains: 8
|
||||
|
||||
- type: tunnel
|
||||
tunnelType: whole
|
||||
name: Box Tunnel
|
||||
length: 1mi 1452yd
|
||||
description: 8 Emergency phones - Up side and Down entrance signal
|
||||
miles: 100
|
||||
chains: 40
|
||||
|
||||
- type: tunnel
|
||||
tunnelType: whole
|
||||
name: Middle Hill Tunnel
|
||||
length: 0mi 196yd
|
||||
miles: 101
|
||||
chains: 45
|
||||
|
||||
- type: crossing
|
||||
name: Bathampton Foot Crossing
|
||||
kind: foot
|
||||
miles: 103
|
||||
chains: 18
|
||||
|
||||
- type: junction
|
||||
name: Bathampton Jn
|
||||
diverges: right
|
||||
direction: up
|
||||
description: Up/Dn Trowbridge towards Westbury
|
||||
miles: 104
|
||||
chains: 45
|
||||
|
||||
- type: loop
|
||||
position: left
|
||||
name: Up Bathampton Loop
|
||||
miles: 105
|
||||
chains: 0
|
||||
|
||||
- type: tunnel
|
||||
name: Sydney Gardens East Tunnel
|
||||
tunnelType: whole
|
||||
length: 0mi 77yd
|
||||
miles: 106
|
||||
chains: 28
|
||||
|
||||
- type: tunnel
|
||||
name: Sydney Gardens West Tunnel
|
||||
tunnelType: whole
|
||||
length: 0mi 99yd
|
||||
miles: 106
|
||||
chains: 29
|
||||
|
||||
- type: bridge
|
||||
name: Pultney Road
|
||||
category: road
|
||||
miles: 106
|
||||
chains: 42
|
||||
position: under
|
||||
|
||||
- type: bridge
|
||||
name: Dolemeads Viaduct
|
||||
category: waterway
|
||||
description: River Avon
|
||||
miles: 106
|
||||
chains: 55
|
||||
position: under
|
||||
|
||||
- type: station
|
||||
name: Bath Spa
|
||||
miles: 106
|
||||
chains: 71
|
||||
|
||||
- type: bridge
|
||||
position: under
|
||||
name: St James Viaduct
|
||||
category: waterway
|
||||
description: River Avon
|
||||
miles: 107
|
||||
chains: 0
|
||||
|
||||
- type: crossovers
|
||||
name: Bath West Crossovers
|
||||
miles: 107
|
||||
chains: 25
|
||||
|
||||
- type: loop
|
||||
position: right
|
||||
name: Bath West Goods Loop
|
||||
miles: 107
|
||||
chains: 55
|
||||
|
||||
- type: station
|
||||
name: Oldfield Park
|
||||
miles: 107
|
||||
chains: 72
|
||||
|
||||
- type: tunnel
|
||||
name: Twerton Short Tunnel
|
||||
tunnelType: whole
|
||||
length: 0mi 45yd
|
||||
miles: 108
|
||||
chains: 71
|
||||
|
||||
- type: tunnel
|
||||
name: Twerton Long Tunnel
|
||||
tunnelType: whole
|
||||
length: 0mi 264yd
|
||||
miles: 109
|
||||
chains: 9
|
||||
|
||||
- type: bridge
|
||||
name: Bristol Road
|
||||
roadName: A4
|
||||
position: over
|
||||
category: aroad
|
||||
miles: 109
|
||||
chains: 50
|
||||
|
||||
- type: tunnel
|
||||
name: Saltford Tunnel
|
||||
tunnelType: whole
|
||||
length: 0mi 176yd
|
||||
miles: 111
|
||||
chains: 60
|
||||
|
||||
- type: station
|
||||
name: Keynsham
|
||||
miles: 113
|
||||
chains: 63
|
||||
|
||||
- type: bridge
|
||||
name: Avon Ring Road
|
||||
roadName: A4174
|
||||
position: over
|
||||
category: aroad
|
||||
miles: 114
|
||||
chains: 68
|
||||
|
||||
- type: tunnel
|
||||
tunnelType: whole
|
||||
name: St. Annes Park No.3 Tunnel
|
||||
length: 0mi 1017yd
|
||||
miles: 116
|
||||
chains: 0
|
||||
|
||||
- type: tunnel
|
||||
tunnelType: whole
|
||||
name: St. Annes Park No.2 Tunnel
|
||||
length: 0mi 154yd
|
||||
miles: 116
|
||||
chains: 44
|
||||
|
||||
- type: siteof
|
||||
name: St Annes
|
||||
description: Former station
|
||||
miles: 116
|
||||
chains: 56
|
||||
|
||||
- type: loop
|
||||
position: right
|
||||
name: East Depot Goods Loop
|
||||
description: Also provides access to East Depot
|
||||
miles: 117
|
||||
chains: 19
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: up
|
||||
name: North Somerset Jn
|
||||
description: to St. Phillips Marh
|
||||
miles: 117
|
||||
chains: 46
|
||||
|
||||
- type: junction
|
||||
name: Feeder Bridge Jn
|
||||
description: Up/Dn Bristol Loops to Dr. Days Jn
|
||||
diverges: left
|
||||
direction: down
|
||||
goto: "9999"
|
||||
entryPoint: dr-days-jn
|
||||
miles: 117
|
||||
chains: 50
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: down
|
||||
name: Kingsland Rd Sidings GF
|
||||
description: Access to Kingsland Road Sidings
|
||||
miles: 117
|
||||
chains: 57
|
||||
|
||||
- type: signallerChange
|
||||
from: TVSC Bath WS (BL)
|
||||
to: TVSC Temple Meads WS (BL)
|
||||
miles: 117
|
||||
chains: 73
|
||||
|
||||
- type: junction
|
||||
name: Bristol East Jn
|
||||
diverges: both
|
||||
direction: up
|
||||
description: Filton lines towards Filton on Up-side, Kingsland Road Sisings on right side
|
||||
miles: 118
|
||||
chains: 2
|
||||
goto: "9999"
|
||||
entryPoint: bristol-east-jn
|
||||
|
||||
- type: siteof
|
||||
name: Bristol East Gantry
|
||||
miles: 118
|
||||
chains: 10
|
||||
|
||||
- type: station
|
||||
name: Bristol Temple Meads
|
||||
miles: 118
|
||||
chains: 31
|
||||
1
static/mapFiles/yaml/0003.yaml.txt
Normal file
1
static/mapFiles/yaml/0003.yaml.txt
Normal file
@@ -0,0 +1 @@
|
||||
# Bristol TM - Exeter SD
|
||||
1
static/mapFiles/yaml/0210.yaml.txt
Normal file
1
static/mapFiles/yaml/0210.yaml.txt
Normal file
@@ -0,0 +1 @@
|
||||
# Reading - Taunton (via Westbury Line Jn)
|
||||
772
static/mapFiles/yaml/0230.yaml
Normal file
772
static/mapFiles/yaml/0230.yaml
Normal file
@@ -0,0 +1,772 @@
|
||||
routeStart: Swindon Junction
|
||||
routeEnd: Standish Junction
|
||||
routeId: "0230"
|
||||
updated: 2026-02-14
|
||||
checked: 2026-02-14
|
||||
signallerStart: TVSC Swindon WS
|
||||
signallerEnd: Gloucester PSB
|
||||
elecStart:
|
||||
elec: 25kvac
|
||||
eco: Didcot (TVSC)
|
||||
elecEnd:
|
||||
elec: none
|
||||
|
||||
routeDetail:
|
||||
- type: continues
|
||||
routeName: Reading - Bristol TM
|
||||
routeId: '0002'
|
||||
entryPoint: swindon
|
||||
|
||||
- type: junction
|
||||
name: Swindon Jn
|
||||
diverges: right
|
||||
direction: down
|
||||
goto: "0002"
|
||||
entryPoint: swindon-jn
|
||||
miles: 77
|
||||
chains: 36
|
||||
|
||||
- type: electrificationChange
|
||||
miles: 77
|
||||
chains: 58
|
||||
from:
|
||||
elec: 25kvac
|
||||
eco: Didcot
|
||||
to:
|
||||
elec: none
|
||||
|
||||
- type: minorBridge
|
||||
name: Bruce Street
|
||||
position: under
|
||||
category: road
|
||||
miles: 78
|
||||
chains: 7
|
||||
|
||||
- type: crossovers
|
||||
name: Rodbourne Jn
|
||||
description: Limit of bidirectional running from Swindon
|
||||
miles: 78
|
||||
chains: 30
|
||||
|
||||
- type: bridge
|
||||
name: River Hay
|
||||
position: under
|
||||
category: waterway
|
||||
miles: 78
|
||||
chains: 71
|
||||
|
||||
- type: minorBridge
|
||||
name: Former MSWJ Railway
|
||||
position: under
|
||||
category: foot
|
||||
miles: 79
|
||||
chains: 20
|
||||
|
||||
- type: minorBridge
|
||||
name: Edward's Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 79
|
||||
chains: 33
|
||||
|
||||
- type: minorBridge
|
||||
name: Mill Brook
|
||||
position: under
|
||||
category: stream
|
||||
miles: 79
|
||||
chains: 34
|
||||
|
||||
- type: bridge
|
||||
name: Purton Road
|
||||
description: Double bridge
|
||||
position: over
|
||||
category: road
|
||||
roadName: B4534
|
||||
miles: 79
|
||||
chains: 53
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 80
|
||||
chains: 0
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
category: road
|
||||
roadName: B4553
|
||||
miles: 80
|
||||
chains: 30
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Purton No.72 Foot Crossing
|
||||
miles: 80
|
||||
chains: 63
|
||||
|
||||
- type: crossing
|
||||
kind: AHB
|
||||
name: Purton Collins Lane LC
|
||||
miles: 81
|
||||
chains: 9
|
||||
|
||||
- type: crossing
|
||||
name: Purton No.64 Foot Crossing
|
||||
kind: foot
|
||||
miles: 81
|
||||
chains: 25
|
||||
|
||||
- type: crossing
|
||||
name: Purton No.60 Foot Crossing
|
||||
kind: foot
|
||||
miles: 81
|
||||
chains: 46
|
||||
|
||||
- type: crossing
|
||||
name: Purton Common Crossing
|
||||
kind: MSL
|
||||
miles: 81
|
||||
chains: 65
|
||||
|
||||
- type: crossing
|
||||
name: Purton No.129 Foot Crossing
|
||||
kind: foot
|
||||
miles: 82
|
||||
chains: 9
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: over
|
||||
category: road
|
||||
miles: 82
|
||||
chains: 13
|
||||
|
||||
- type: crossing
|
||||
name: Purton No.34 Foot Crossing
|
||||
kind: foot
|
||||
miles: 82
|
||||
chains: 30
|
||||
|
||||
- type: minorBridge
|
||||
name: Carpenter's
|
||||
position: under
|
||||
category: road
|
||||
miles: 82
|
||||
chains: 39
|
||||
|
||||
- type: minorBridge
|
||||
name: Braydon Brook
|
||||
position: under
|
||||
category: stream
|
||||
miles: 82
|
||||
chains: 53
|
||||
|
||||
- type: minorBridge
|
||||
name: Oak Hill (Coxhill Farm)
|
||||
position: under
|
||||
category: road
|
||||
miles: 82
|
||||
chains: 69
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Clover's Foot Crossing
|
||||
miles: 83
|
||||
chains: 11
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: over
|
||||
category: road
|
||||
miles: 83
|
||||
chains: 28
|
||||
|
||||
- type: crossing
|
||||
name: Gambols Farm Crossing
|
||||
kind: uwc
|
||||
miles: 83
|
||||
chains: 57
|
||||
|
||||
- type: minorBridge
|
||||
name: Black Dog Road
|
||||
roadName: B4696
|
||||
category: road
|
||||
position: over
|
||||
miles: 84
|
||||
chains: 25
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Gryphon Lodge Crossing
|
||||
miles: 84
|
||||
chains: 66
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
category: stream
|
||||
miles: 84
|
||||
chains: 22
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
name: Station Road
|
||||
roadName: B4040
|
||||
category: road
|
||||
miles: 85
|
||||
chains: 36
|
||||
|
||||
- type: siteof
|
||||
name: Minety & Ashton Keynes
|
||||
description: Former station
|
||||
miles: 85
|
||||
chains: 37
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Minety No.44 Foot Crossing
|
||||
miles: 85
|
||||
chains: 62
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Minety No.6 Foot Crossing
|
||||
miles: 86
|
||||
chains: 06
|
||||
|
||||
- type: minorBridge
|
||||
nam: Askew Bridge
|
||||
category: road
|
||||
position: under
|
||||
miles: 86
|
||||
chains: 18
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Minety No.3 Foot Crossing
|
||||
miles: 86
|
||||
chains: 23
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
category: road
|
||||
name: Minety Moor
|
||||
miles: 86
|
||||
chains: 36
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Minety No.5 Foot Crossing
|
||||
miles: 86
|
||||
chains: 42
|
||||
|
||||
- type: crossing
|
||||
kind: CCTV
|
||||
name: Minety LC
|
||||
description: CCTV by TVSC (LC Workstation)
|
||||
miles: 86
|
||||
chains: 74
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Minety No.26 Foot Crossing
|
||||
miles: 87
|
||||
chains: 4
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Minety No.26 Foot Crossing
|
||||
miles: 87
|
||||
chains: 31
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
category: road
|
||||
name: Slurt Bridge
|
||||
miles: 87
|
||||
chains: 63
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
category: stream
|
||||
name: Swill Brook
|
||||
miles: 88
|
||||
chains: 5
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Oaksey No.5 Foot Crossing
|
||||
miles: 88
|
||||
chains: 31
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
name: Oaksey Road
|
||||
category: road
|
||||
miles: 88
|
||||
chains: 37
|
||||
|
||||
- type: crossing
|
||||
name: Oaksey No.4 Foot Crossing
|
||||
kind: foot
|
||||
miles: 88
|
||||
chains: 56
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 88
|
||||
chains: 77
|
||||
|
||||
- type: crossing
|
||||
name: West End Farm Foot Crossing
|
||||
kind: foot
|
||||
miles: 89
|
||||
chains: 29
|
||||
|
||||
- type: minorBridge
|
||||
name: Poole Keynes
|
||||
position: under
|
||||
category: road
|
||||
miles: 89
|
||||
chains: 30
|
||||
|
||||
- type: crossing
|
||||
name: Kemble Wick Foot Crossing
|
||||
kind: foot
|
||||
miles: 89
|
||||
chains: 59
|
||||
|
||||
- type: minorBridge
|
||||
name: Wick Bridge
|
||||
position: over
|
||||
category: road
|
||||
miles: 90
|
||||
chains: 3
|
||||
|
||||
- type: tunnel
|
||||
tunnelType: whole
|
||||
name: Kemble Tunnel
|
||||
length: 0mi 409yd
|
||||
miles: 90
|
||||
chains: 50
|
||||
|
||||
- type: crossovers
|
||||
name: Kemble Jn
|
||||
miles: 90
|
||||
chains: 65
|
||||
|
||||
- type: junction
|
||||
diverges: left
|
||||
direction: down
|
||||
description: Up Kemble Siding (Former platform)
|
||||
miles: 90
|
||||
chains: 74
|
||||
name: Kemble GF
|
||||
|
||||
- type: station
|
||||
name: Kemble
|
||||
miles: 90
|
||||
chains: 79
|
||||
|
||||
- type: minorBridge
|
||||
name: Windmill/Tarlton Road
|
||||
position: under
|
||||
category: road
|
||||
miles: 91
|
||||
chains: 28
|
||||
|
||||
- type: minorBridge
|
||||
name: Tetbury Road
|
||||
position: under
|
||||
roadName: A433
|
||||
category: aroad
|
||||
miles: 91
|
||||
chains: 60
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Old Quarry Foot Crossing
|
||||
miles: 91
|
||||
chains: 77
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
category: stream
|
||||
name: Thames & Severn Canal
|
||||
description: Disused Canal
|
||||
miles: 92
|
||||
chains: 67
|
||||
|
||||
- type: minorBridge
|
||||
name: Coates
|
||||
description: to Tarlton Road
|
||||
category: road
|
||||
position: under
|
||||
miles: 92
|
||||
chains: 77
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Coates Tunnel House Foot Crossing
|
||||
miles: 93
|
||||
chains: 21
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
miles: 93
|
||||
chains: 42
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
miles: 93
|
||||
chains: 66
|
||||
|
||||
- type: signallerChange
|
||||
from: TVSC Swindon WS (SW)
|
||||
to: Gloucester PSB Panel C (G)
|
||||
miles: 93
|
||||
chains: 79
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
miles: 94
|
||||
chains: 4
|
||||
|
||||
- type: minorBridge
|
||||
name: Hailey Farm
|
||||
position: over
|
||||
miles: 94
|
||||
chains: 40
|
||||
|
||||
- type: tunnel
|
||||
tunnelType: whole
|
||||
name: Sapperton Short Tunnel
|
||||
length: 0mi 352yd
|
||||
miles: 94
|
||||
chains: 58
|
||||
|
||||
- type: tunnel
|
||||
tunnelType: whole
|
||||
name: Sapperton Long Tunnel
|
||||
length: 1mi 104yd
|
||||
miles: 95
|
||||
chains: 40
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Frampton Common Foot Crossing
|
||||
miles: 96
|
||||
chains: 5
|
||||
|
||||
- type: crossing
|
||||
kind: OMSL
|
||||
name: Frampton Level Crossing
|
||||
miles: 96
|
||||
chains: 32
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Frampton Mansell Foot Crossing
|
||||
miles: 96
|
||||
chains: 43
|
||||
|
||||
- type: bridge
|
||||
position: under
|
||||
name: Frampton Mansell Viaduct
|
||||
miles: 96
|
||||
chians: 57
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
category: road
|
||||
name: Lower Manor
|
||||
miles: 96
|
||||
chains: 65
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
miles: 97
|
||||
chains: 4
|
||||
|
||||
- type: minorBridge
|
||||
name: Marley Lane
|
||||
position: over
|
||||
category: road
|
||||
miles: 97
|
||||
chains: 39
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Chalford Foot Crossing
|
||||
miles: 97
|
||||
chains: 52
|
||||
|
||||
- type: bridge
|
||||
name: Chalford Viaduct
|
||||
position: under
|
||||
miles: 97
|
||||
chains: 61
|
||||
|
||||
- type: bridge
|
||||
name: Cowcombe Hill
|
||||
roadName: A419
|
||||
category: aroad
|
||||
position: over
|
||||
miles: 98
|
||||
chains: 4
|
||||
|
||||
- type: minorBridge
|
||||
name: Chalford Bottom
|
||||
position: under
|
||||
miles: 98
|
||||
chains: 36
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Hampton Road Foot Crossing
|
||||
miles: 98
|
||||
chains: 53
|
||||
|
||||
- type: crossing
|
||||
name: St. Mary's Level Crossing
|
||||
kind: MCG
|
||||
miles: 98
|
||||
chains: 64
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Brimscombe Foot Crossing
|
||||
miles: 99
|
||||
chains: 22
|
||||
|
||||
- type: minorBridge
|
||||
name: Knap Lane
|
||||
position: under
|
||||
category: road
|
||||
miles: 99
|
||||
chains: 34
|
||||
|
||||
- type: bridge
|
||||
name: Bourne Viaduct
|
||||
position: under
|
||||
miles: 99
|
||||
chains: 51
|
||||
|
||||
- type: minorBridge
|
||||
name: Brimscombe Hill
|
||||
position: over
|
||||
category: road
|
||||
miles: 99
|
||||
chains: 76
|
||||
|
||||
- type: minorBridge
|
||||
name: Orchard Lane
|
||||
position: under
|
||||
category: road
|
||||
miles: 100
|
||||
chains: 12
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Bagpath Foot Crossing
|
||||
miles: 100
|
||||
chains: 37
|
||||
|
||||
- type: crossing
|
||||
kind: MSL
|
||||
name: Ham Mill Foot Crossing
|
||||
miles: 100
|
||||
chains: 63
|
||||
|
||||
- type: crossing
|
||||
name: Thrupp Foot Crossing
|
||||
kind: foot
|
||||
miles: 100
|
||||
chains: 75
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Butterrow Foot Crossing
|
||||
miles: 101
|
||||
chains: 21
|
||||
|
||||
- type: crossing
|
||||
kind: msl
|
||||
name: Bowbridge Foot Crossing
|
||||
miles: 101
|
||||
chains: 36
|
||||
|
||||
- type: minorBridge
|
||||
name: Butterrow Hill
|
||||
position: over
|
||||
category: road
|
||||
miles: 101
|
||||
chains: 44
|
||||
|
||||
- type: bridge
|
||||
name: Capels Viaduct
|
||||
position: under
|
||||
category: stream
|
||||
description: Also crosses A419
|
||||
miles: 101
|
||||
chains: 66
|
||||
|
||||
- type: station
|
||||
name: Stroud
|
||||
miles: 102
|
||||
chains: 13
|
||||
|
||||
- type: bridge
|
||||
name: Watts Viaduct
|
||||
roadName: A46
|
||||
category: aroad
|
||||
position: under
|
||||
miles: 102
|
||||
chains: 19
|
||||
|
||||
- type: bridge
|
||||
name: Stratford Viaduct
|
||||
position: under
|
||||
miles: 102
|
||||
chains: 32
|
||||
|
||||
- type: crossing
|
||||
kind: omsl
|
||||
name: Gannicox Foot Crossing
|
||||
miles: 102
|
||||
chains: 50
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
position: over
|
||||
category: foot
|
||||
miles: 102
|
||||
chains: 65
|
||||
|
||||
- type: bridge
|
||||
category: aroad
|
||||
position: under
|
||||
roadName: A4171
|
||||
miles: 103
|
||||
chains: 3
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
miles: 103
|
||||
chains: 11
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
category: road
|
||||
name: Cashes Green Road
|
||||
miles: 103
|
||||
chains: 21
|
||||
|
||||
- type: crossing
|
||||
kind: msl
|
||||
name: Ebley Crossing
|
||||
miles: 103
|
||||
chains: 49
|
||||
|
||||
- type: minorBridge
|
||||
name: Foxmoor Lane
|
||||
position: under
|
||||
category: road
|
||||
miles: 103
|
||||
chains: 41
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
miles: 104
|
||||
chains: 40
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
miles: 104
|
||||
chains: 45
|
||||
|
||||
- type: minorBridge
|
||||
name: Brown's Lane
|
||||
position: over
|
||||
miles: 104
|
||||
chains: 47
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Stonehouse 26 Foot Crossing
|
||||
miles: 104
|
||||
chains: 63
|
||||
|
||||
- type: station
|
||||
name: Stonehouse
|
||||
miles: 104
|
||||
chains: 74
|
||||
|
||||
- type: minorBridge
|
||||
name: Queen's Road
|
||||
position: under
|
||||
category: road
|
||||
miles: 104
|
||||
chains: 79
|
||||
|
||||
- type: crossing
|
||||
kind: msl
|
||||
name: Globe Inn Foot Crossing
|
||||
miles: 105
|
||||
chains: 10
|
||||
|
||||
- type: minorBridge
|
||||
name: Gloucester Road
|
||||
roadName: B4008
|
||||
position: under
|
||||
miles: 105
|
||||
chains: 17
|
||||
|
||||
- type: bridge
|
||||
name: Oldends Lane
|
||||
position: under
|
||||
category: road
|
||||
miles: 105
|
||||
chains: 35
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Little Australia Foot Crossing
|
||||
miles: 105
|
||||
chains: 56
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
miles: 105
|
||||
chains: 64
|
||||
|
||||
- type: minorBridge
|
||||
name: Black Bridge
|
||||
position: over
|
||||
miles: 106
|
||||
chains: 13
|
||||
|
||||
- type: minorBridge
|
||||
name: Gloucester Road
|
||||
category: minorRoad
|
||||
roadName: B4008
|
||||
position: over
|
||||
miles: 106
|
||||
chains: 60
|
||||
|
||||
- type: junction
|
||||
name: Standish Jn
|
||||
diverges: right
|
||||
direction: up
|
||||
description: Up to Gloucester, Dn to Bristol
|
||||
miles: 106
|
||||
chains: 74
|
||||
goto: "2420"
|
||||
entryPoint: standish-jn
|
||||
|
||||
- type: continues
|
||||
routeName: "Westerleigh Jn - Gloucester"
|
||||
entryPoint: standish-jn
|
||||
routeId: "2420"
|
||||
|
||||
|
||||
656
static/mapFiles/yaml/0240.yaml
Normal file
656
static/mapFiles/yaml/0240.yaml
Normal file
@@ -0,0 +1,656 @@
|
||||
routeStart: Wootton Bassett Jn
|
||||
routeEnd: Stoke Gifford Jn
|
||||
routeId: 0240
|
||||
updated: 2026-02-11
|
||||
checked: 2026-02-11
|
||||
signallerStart: TVSC Swindon WS
|
||||
signallerEnd: TVSC Stoke Gifford WS
|
||||
elecStart:
|
||||
elec: 25kvac
|
||||
eco: Didcot (TVSC)
|
||||
elecEnd:
|
||||
elec: 25kvac
|
||||
eco: Didcot (TVSC)
|
||||
routeDetail:
|
||||
- type: continues
|
||||
routeName: Reading - Bristol TM
|
||||
entryPoint: wootton-bassett-jn
|
||||
routeId: '0002'
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: down
|
||||
name: Wootton Basset Jn
|
||||
description: to Chippenham & Bristol via Bath
|
||||
goto: "0002"
|
||||
entryPoint: wootton-bassett-jn
|
||||
miles: 83
|
||||
chains: 7
|
||||
|
||||
- type: loop
|
||||
name: Up Wootton Basset Goods Line
|
||||
description: Loop spans junction
|
||||
position: left
|
||||
miles: 83
|
||||
chains: 10
|
||||
|
||||
- type: bridge
|
||||
position: over
|
||||
name: Bath Road
|
||||
roadName: A3102
|
||||
category: aroad
|
||||
miles: 83
|
||||
chains: 29
|
||||
|
||||
- type: crossovers
|
||||
name: Wootton Basset West
|
||||
miles: 84
|
||||
chains: 7
|
||||
|
||||
- type: minorBridge
|
||||
name: Whitehill Lane
|
||||
position: under
|
||||
category: road
|
||||
miles: 84
|
||||
chains: 13
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 84
|
||||
chains: 39
|
||||
|
||||
- type: bridge
|
||||
position: over
|
||||
name: Motorway
|
||||
roadName: M4
|
||||
category: motorway
|
||||
miles: 84
|
||||
chains: 50
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 85
|
||||
chains: 15
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
name: Callow Hill
|
||||
category: road
|
||||
miles: 85
|
||||
chains: 29
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: over
|
||||
category: road
|
||||
miles: 85
|
||||
chains: 58
|
||||
|
||||
- type: minorBridge
|
||||
name: Brinkworth Brooklands
|
||||
position: over
|
||||
category: road
|
||||
miles: 86
|
||||
chains: 75
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Brinkworth Foot Crossing
|
||||
miles: 87
|
||||
chains: 17
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
category: road
|
||||
position: over
|
||||
miles: 88
|
||||
chains: 12
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 88
|
||||
chains: 46
|
||||
|
||||
- type: minorBridge
|
||||
name: School Hill
|
||||
position: under
|
||||
category: road
|
||||
miles: 88
|
||||
chains: 66
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 89
|
||||
chains: 9
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 89
|
||||
chains: 29
|
||||
|
||||
- type: minorBridge
|
||||
name: Idover Lane
|
||||
position: under
|
||||
category: road
|
||||
miles: 89
|
||||
chains: 46
|
||||
|
||||
- type: minorBridge
|
||||
name: The Street
|
||||
position: under
|
||||
category: road
|
||||
miles: 89
|
||||
chains: 70
|
||||
|
||||
- type: bridge
|
||||
name: River Avon
|
||||
position: under
|
||||
category: waterway
|
||||
miles: 90
|
||||
chains: 26
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 90
|
||||
chains: 60
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 91
|
||||
chains: 36
|
||||
|
||||
- type: minorBridge
|
||||
name: Startley Road
|
||||
position: under
|
||||
category: road
|
||||
miles: 91
|
||||
chains: 50
|
||||
|
||||
- type: minorBridge
|
||||
name: Rodbourne Lane
|
||||
description: or 'Pound Hill'
|
||||
position: under
|
||||
category: road
|
||||
miles: 92
|
||||
chains: 2
|
||||
|
||||
- type: minorBridge
|
||||
name: Cabbage Lane
|
||||
position: over
|
||||
category: road
|
||||
miles: 92
|
||||
chains: 28
|
||||
|
||||
- type: crossing
|
||||
name: Kingway Barn Foot Crossing
|
||||
kind: foot
|
||||
miles: 93
|
||||
chains: 7
|
||||
|
||||
- type: bridge
|
||||
name: Kingway
|
||||
position: under
|
||||
category: aroad
|
||||
roadName: A429
|
||||
miles: 93
|
||||
chains: 30
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 93
|
||||
chains: 70
|
||||
|
||||
- type: loop
|
||||
position: right
|
||||
name: Down Hullavington Goods Loop
|
||||
miles: 94
|
||||
chains: 5
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
name: Court Farm
|
||||
category: road
|
||||
miles: 94
|
||||
chains: 9
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
name: Bradfield Cottages
|
||||
category: road
|
||||
miles: 94
|
||||
chains: 27
|
||||
|
||||
- type: loop
|
||||
name: Up Hullavington Goods Loop
|
||||
position: left
|
||||
miles: 94
|
||||
chains: 42
|
||||
|
||||
- type: crossovers
|
||||
name: Hullavington
|
||||
miles: 94
|
||||
chains: 45
|
||||
|
||||
- type: minorBridge
|
||||
name: Gills Hunting
|
||||
position: over
|
||||
category: road
|
||||
miles: 94
|
||||
chains: 62
|
||||
|
||||
- type: bridge
|
||||
name: Aqueduct
|
||||
position: over
|
||||
category: stream
|
||||
miles: 95
|
||||
chains: 22
|
||||
|
||||
- type: minorBridge
|
||||
name: Happy Lands
|
||||
position: over
|
||||
category: road
|
||||
miles: 95
|
||||
chains: 40
|
||||
|
||||
- type: minorBridge
|
||||
name: Pig Lane
|
||||
position: over
|
||||
category: road
|
||||
miles: 95
|
||||
chains: 69
|
||||
|
||||
- type: minorBridge
|
||||
name: Fosse Way
|
||||
category: road
|
||||
position: over
|
||||
miles: 96
|
||||
chains: 47
|
||||
|
||||
- type: minorBridge
|
||||
name: Pipeline
|
||||
category: pipeline
|
||||
position: over
|
||||
miles: 96
|
||||
chains: 48
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
position: over
|
||||
category: foot
|
||||
miles: 96
|
||||
chains: 64
|
||||
|
||||
- type: tunnel
|
||||
name: Alterton Tunnel
|
||||
tunnelType: whole
|
||||
length: 0mi 506yd
|
||||
miles: 97
|
||||
chains: 46
|
||||
|
||||
- type: signallerChange
|
||||
from: TVSC Swindon WS (SW)
|
||||
to: TVSC Stoke Gifford WS (BL)
|
||||
miles: 98
|
||||
chains: 0
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
category: foot
|
||||
position: over
|
||||
miles: 98
|
||||
chains: 2
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
category: foot
|
||||
positon: over
|
||||
miles: 98
|
||||
chains: 17
|
||||
|
||||
- type: minorBridge
|
||||
name: Alderton Road
|
||||
position: over
|
||||
category: road
|
||||
miles: 98
|
||||
chains: 40
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 98
|
||||
chains: 76
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 99
|
||||
chains: 7
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
category: foot
|
||||
position: over
|
||||
miles: 99
|
||||
chains: 40
|
||||
|
||||
- type: bridge
|
||||
name: Luckington Road
|
||||
category: road
|
||||
roadName: B4040
|
||||
position: over
|
||||
miles: 99
|
||||
chains: 46
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
category: foot
|
||||
position: over
|
||||
miles: 99
|
||||
chains: 59
|
||||
|
||||
- type: siteof
|
||||
name: Badminton
|
||||
side: centre
|
||||
miles: 100
|
||||
chains: 1
|
||||
|
||||
- type: bridge
|
||||
name: Station Road
|
||||
position: over
|
||||
category: road
|
||||
miles: 100
|
||||
chains: 4
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
category: foot
|
||||
position: over
|
||||
miles: 100
|
||||
chains: 33
|
||||
|
||||
- type: bridge
|
||||
name: Aqueduct
|
||||
position: over
|
||||
category: stream
|
||||
miles: 100
|
||||
chains: 57
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
category: foot
|
||||
position: over
|
||||
miles: 100
|
||||
chains: 65
|
||||
|
||||
- type: tunnel
|
||||
tunnelType: whole
|
||||
length: 2mi 926yd
|
||||
name: Chipping Sodbury Tunnel
|
||||
miles: 102
|
||||
chains: 21
|
||||
description: 10 telephones on Up side
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
name: Footbridge
|
||||
category: foot
|
||||
miles: 103
|
||||
chains: 63
|
||||
|
||||
- type: bridge
|
||||
name: Frome Bridge
|
||||
position: over
|
||||
category: stream
|
||||
miles: 103
|
||||
chains: 75
|
||||
|
||||
- type: minorBridge
|
||||
name: Colt's Green Bridge
|
||||
category: road
|
||||
position: over
|
||||
miles: 104
|
||||
chains: 19
|
||||
|
||||
- type: loop
|
||||
name: Chipping Sodbury Goods Loop
|
||||
position: left
|
||||
description: Bidirectional with access to Chipping Sodbury Sidings
|
||||
miles: 104
|
||||
chains: 31
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
category: road
|
||||
position: over
|
||||
miles: 104
|
||||
chains: 56
|
||||
|
||||
- type: minorBridge
|
||||
name: Kingrove Lane
|
||||
position: over
|
||||
category: road
|
||||
miles: 104
|
||||
chains: 77
|
||||
|
||||
- type: bridge
|
||||
name: Aqueduct
|
||||
position: over
|
||||
category: stream
|
||||
miles: 105
|
||||
chains: 18
|
||||
|
||||
- type: minorBridge
|
||||
name: Dodington Road
|
||||
category: road
|
||||
position: over
|
||||
miles: 105
|
||||
chains: 19
|
||||
|
||||
- type: bridge
|
||||
name: Aqueduct
|
||||
category: stream
|
||||
position: over
|
||||
miles: 105
|
||||
chains: 38
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
category: foot
|
||||
position: over
|
||||
miles: 106
|
||||
chains: 32
|
||||
|
||||
- type: bridge
|
||||
name: Westerleigh Road
|
||||
category: road
|
||||
position: under
|
||||
miles: 107
|
||||
chains: 4
|
||||
|
||||
- type: junction
|
||||
diverges: left
|
||||
direction: up
|
||||
name: Westerleigh Jn
|
||||
goto: '2420'
|
||||
entryPoint: westerleigh-jn
|
||||
miles: 107
|
||||
chains: 14
|
||||
description: Up/Dn Charfield towards Gloucester
|
||||
|
||||
- type: bridge
|
||||
name: Westerleigh Branch
|
||||
category: rail
|
||||
position: under
|
||||
miles: 107
|
||||
chains: 15
|
||||
|
||||
- type: minorBridge
|
||||
name: Dodmoor Farm
|
||||
category: road
|
||||
position: under
|
||||
miles: 107
|
||||
chains: 33
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
category: road
|
||||
position: under
|
||||
miles: 107
|
||||
chains: 70
|
||||
|
||||
- type: minorBridge
|
||||
name: Boxhenge Farm Lane
|
||||
category: road
|
||||
position: under
|
||||
miles: 108
|
||||
chains: 10
|
||||
|
||||
- type: minorBridge
|
||||
name: The Dramway
|
||||
position: over
|
||||
category: foot
|
||||
miles: 108
|
||||
chains: 25
|
||||
|
||||
- type: minorBridge
|
||||
name: Henfield Road
|
||||
position: under
|
||||
category: road
|
||||
miles: 107
|
||||
chains: 52
|
||||
|
||||
- type: bridge
|
||||
name: Bristol Road
|
||||
category: aroad
|
||||
position: under
|
||||
roadName: A432
|
||||
miles: 108
|
||||
chains: 78
|
||||
|
||||
- type: minorBridge
|
||||
name: Park Lane
|
||||
position: under
|
||||
category: road
|
||||
miles: 109
|
||||
chains: 27
|
||||
|
||||
- type: bridge
|
||||
name: Upford Viaduct
|
||||
positon: under
|
||||
category: waterway
|
||||
miles: 109
|
||||
chains: 58
|
||||
|
||||
- type: minorBridge
|
||||
name: Hicks Common Lane
|
||||
position: over
|
||||
category: road
|
||||
miles: 109
|
||||
chains: 71
|
||||
|
||||
- type: minorBridge
|
||||
name: Down Road
|
||||
category: road
|
||||
position: over
|
||||
miles: 110
|
||||
chains: 15
|
||||
|
||||
- type: minorBridge
|
||||
name: Mill Lane
|
||||
category: road
|
||||
position: under
|
||||
miles: 110
|
||||
chains: 24
|
||||
|
||||
- type: bridge
|
||||
name: Winterbourne Viaduct
|
||||
category: road
|
||||
position: under
|
||||
miles: 110
|
||||
chains: 38
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
category: road
|
||||
position: under
|
||||
miles: 110
|
||||
chains: 48
|
||||
|
||||
- type: bridge
|
||||
name: M4 Motorway
|
||||
category: motorway
|
||||
roadName: M4
|
||||
position: under
|
||||
miles: 110
|
||||
chains: 63
|
||||
|
||||
- type: minorBridge
|
||||
name: Old Gloucester Road
|
||||
category: road
|
||||
roadName: B4427
|
||||
position: under
|
||||
miles: 110
|
||||
chains: 70
|
||||
|
||||
- type: minorBridge
|
||||
name: Curtis Lane
|
||||
position: over
|
||||
category: road
|
||||
miles: 111
|
||||
chains: 14
|
||||
|
||||
- type: crossovers
|
||||
name: Stoke Gifford East Jn
|
||||
miles: 111
|
||||
chains: 20
|
||||
|
||||
- type: minorBridge
|
||||
name: Pearson's Brick Yard
|
||||
category: road
|
||||
position: over
|
||||
miles: 111
|
||||
chains: 32
|
||||
|
||||
- type: station
|
||||
name: Bristol Parkway
|
||||
description: Stoke Gifford Dn Sidings on Down side
|
||||
miles: 111
|
||||
chains: 62
|
||||
|
||||
- type: bridge
|
||||
name: Bristol Road
|
||||
category: road
|
||||
position: under
|
||||
miles: 111
|
||||
chains: 77
|
||||
|
||||
- type: junction
|
||||
name: Stoke Gifford No.1 Jn
|
||||
diverges: right
|
||||
direction: down
|
||||
description: Up/Dn Filton & Bristol TM
|
||||
miles: 111
|
||||
chains: 79
|
||||
|
||||
- type: continues
|
||||
routeName: Bristol TM - Cardiff West Shunt
|
||||
entryPoint: patchway-junction
|
||||
routeId: '9999'
|
||||
126
static/mapFiles/yaml/0250.yaml
Normal file
126
static/mapFiles/yaml/0250.yaml
Normal file
@@ -0,0 +1,126 @@
|
||||
routeStart: Thingley Junction
|
||||
routeEnd: Bradford Junction
|
||||
routeId: "0250"
|
||||
updated: 2026-03-01
|
||||
checked: 2026-03-01
|
||||
signallerStart: TVSC Swindon WS
|
||||
signallerEnd: Westbury PSB
|
||||
elecStart:
|
||||
elec: none
|
||||
elecEnd:
|
||||
elec: none
|
||||
|
||||
routeDetail:
|
||||
|
||||
- type: continues
|
||||
routeName: Reading - Bristol TM
|
||||
routeId: "0002"
|
||||
entryPoint: thingley-jn
|
||||
|
||||
- type: junction
|
||||
name: Thingley Jn
|
||||
diverges: left
|
||||
direction: down
|
||||
description: Down Main towards Bath
|
||||
goto: "0002"
|
||||
entryPoint: thingley-jn
|
||||
miles: 96
|
||||
chains: 10
|
||||
|
||||
- type: signallerChange
|
||||
from: TVSC Swindon WS (SW)
|
||||
to: Westbury PSB (W)
|
||||
miles: 96
|
||||
chains: 30
|
||||
|
||||
- type: crossing
|
||||
name: Laycock 6 Foot Crossing
|
||||
kind: foot
|
||||
miles: 97
|
||||
chains: 30
|
||||
|
||||
- type: crossing
|
||||
name: Laycock 2 Foot Crossing
|
||||
kind: foot
|
||||
miles: 98
|
||||
chains: 8
|
||||
|
||||
- type: crossing
|
||||
name: Melksham Without 85 Foot Crossing
|
||||
kind: foot
|
||||
miles: 99
|
||||
chains: 12
|
||||
|
||||
- type: crossing
|
||||
name: Melksham Without 92 Foot Crossing
|
||||
kind: foot
|
||||
miles: 99
|
||||
chains: 41
|
||||
|
||||
- type: station
|
||||
name: Melksham
|
||||
miles: 100
|
||||
chains: 13
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Melksham 22 Foot Crossing
|
||||
miles: 100
|
||||
chains: 32
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
miles: 101
|
||||
chains: 39
|
||||
name: Church Farm No.1 Crossing
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Broughton Gifford No.26 Foot Crossing
|
||||
miles: 101
|
||||
chains: 77
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Broughton Gifford No.25 Foot Crossing
|
||||
miles: 102
|
||||
chains: 2
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Church Farm No.2 Crossing
|
||||
miles: 102
|
||||
chains: 10
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Holt No.1 Foot Crossing
|
||||
miles: 102
|
||||
chains: 23
|
||||
|
||||
- type: siteof
|
||||
name: Holt Junction
|
||||
description: Former junction
|
||||
miles: 102
|
||||
chains: 58
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Avon View Farm Crossing
|
||||
miles: 103
|
||||
chains: 9
|
||||
|
||||
- type: junction
|
||||
name: Bradford Jn
|
||||
diverges: left
|
||||
direction: up
|
||||
description: Up/Dn Trowbridge towards Bath
|
||||
goto: "0260"
|
||||
entryPoint: bradford-jn
|
||||
miles: 104
|
||||
chains: 40
|
||||
|
||||
- type: continues
|
||||
routeName: Bathampton Jn - Westbury
|
||||
routeId: "0260"
|
||||
entryPoint: bradford-jn
|
||||
261
static/mapFiles/yaml/0260.yaml
Normal file
261
static/mapFiles/yaml/0260.yaml
Normal file
@@ -0,0 +1,261 @@
|
||||
routeStart: Bathampton Jn
|
||||
routeEnd: Westbury South Jn
|
||||
routeId: "0260"
|
||||
updated: 2026-03-01
|
||||
checked: 2026-03-01
|
||||
signallerStart: TVSC Bath WS
|
||||
signallerEnd: Westbury PSB
|
||||
elecStart:
|
||||
elec: none
|
||||
elecEnd:
|
||||
elec: none
|
||||
|
||||
routeDetail:
|
||||
|
||||
- type: continues
|
||||
routeName: Reading - Bristol TM
|
||||
entryPoint: bathampton-jn
|
||||
routeId: "0002"
|
||||
|
||||
- type: junction
|
||||
name: Bathampton Jn
|
||||
description: Mileage change (0mi 0ch)
|
||||
diverges: right
|
||||
direction: down
|
||||
goto: "0002"
|
||||
entryPoint: bathampton-jn
|
||||
miles: 0
|
||||
chains: 0
|
||||
|
||||
- type: crossing
|
||||
kind: omsl
|
||||
name: Glass's Crossing
|
||||
miles: 0
|
||||
chains: 20
|
||||
|
||||
- type: crossing
|
||||
kind: omsl
|
||||
name: Claverton Crossing
|
||||
miles: 1
|
||||
chains: 73
|
||||
|
||||
- type: bridge
|
||||
name: Dundas Aqueduct
|
||||
position: over
|
||||
category: waterway
|
||||
description: Kennet & Avon Canal
|
||||
miles: 3
|
||||
chains: 12
|
||||
|
||||
- type: crossing
|
||||
name: Young's Crossing
|
||||
kind: uwc
|
||||
miles: 3
|
||||
chains: 25
|
||||
|
||||
- type: crossing
|
||||
name: Fisher's Crossing
|
||||
kind: uwc
|
||||
miles: 3
|
||||
chains: 50
|
||||
|
||||
- type: crossing
|
||||
name: Limpley Stoke No.1 Foot Crossing
|
||||
miles: 4
|
||||
chains: 10
|
||||
kind: foot
|
||||
|
||||
- type: crossing
|
||||
name: Limpley Stoke No.2 Foot Crossing
|
||||
kind: foot
|
||||
miles: 4
|
||||
chains: 14
|
||||
|
||||
- type: crossing
|
||||
name: Freshford Station Crossing
|
||||
kind: uwc
|
||||
miles: 4
|
||||
chains: 68
|
||||
|
||||
- type: station
|
||||
name: Freshford
|
||||
miles: 4
|
||||
chains: 70
|
||||
|
||||
|
||||
- type: bridge
|
||||
name: Freshford Viaduct
|
||||
category: waterway
|
||||
description: River Avon
|
||||
position: under
|
||||
miles: 5
|
||||
chains: 8
|
||||
|
||||
- type: bridge
|
||||
name: Avoncliff Aqueduct
|
||||
category: waterway
|
||||
description: Kennet & Avon Canal
|
||||
position: over
|
||||
miles: 5
|
||||
chains: 63
|
||||
|
||||
- type: station
|
||||
name: Avoncliff
|
||||
miles: 5
|
||||
chains: 63
|
||||
description: Local door operation
|
||||
|
||||
- type: crossing
|
||||
name: Avoncliff Mill Crossing
|
||||
kind: uwc
|
||||
miles: 5
|
||||
chains: 71
|
||||
|
||||
- type: signallerChange
|
||||
from: TVSC Bath WS (BL)
|
||||
to: Westbury PSB (W)
|
||||
miles: 6
|
||||
chains: 55
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Belcombe Road Foot Crossing
|
||||
miles: 6
|
||||
chains: 67
|
||||
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Barton Orchard Foot Crossing
|
||||
miles: 6
|
||||
chains: 74
|
||||
|
||||
- type: station
|
||||
name: Bradford-on-Avon
|
||||
miles: 7
|
||||
chains: 9
|
||||
|
||||
- type: tunnel
|
||||
name: Bradford Tunnel
|
||||
tunnelType: whole
|
||||
length: 0mi 159yd
|
||||
miles: 7
|
||||
chains: 22
|
||||
|
||||
- type: crossing
|
||||
kind: AHB
|
||||
name: Greenland Mill Level Crossing
|
||||
miles: 7
|
||||
chains: 27
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Cemetery Lane Crossing
|
||||
miles: 8
|
||||
chains: 1
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Tuckers Crossing
|
||||
miles: 8
|
||||
chains: 18
|
||||
|
||||
- type: junction
|
||||
name: Bradford Jn
|
||||
diverges: right
|
||||
direction: up
|
||||
description: Melksham Single towards Chippenham, mileage change
|
||||
goto: "0250"
|
||||
entryPoint: bradford-jn
|
||||
miles: 9
|
||||
chains: 12
|
||||
|
||||
- type: bridge
|
||||
name: Trowbridge Aqueduct
|
||||
description: Kennet & Avon Canal
|
||||
position: over
|
||||
category: waterway
|
||||
miles: 104
|
||||
chains: 54
|
||||
|
||||
- type: station
|
||||
name: Trowbridge
|
||||
miles: 105
|
||||
chains: 61
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: White Horse Foot Crossing
|
||||
miles: 107
|
||||
chains: 8
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Yarnbrook Foot Crossing
|
||||
miles: 107
|
||||
chains: 34
|
||||
|
||||
- type: bridge
|
||||
name: Yarnbrook Viaduct
|
||||
position: under
|
||||
category: aroad
|
||||
roadName: A363
|
||||
miles: 107
|
||||
chains: 56
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Heywood 3 Foot Crossing
|
||||
miles: 108
|
||||
chains: 46
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Hawkeridge Foot Crossing
|
||||
miles: 108
|
||||
chains: 78
|
||||
|
||||
- type: junction
|
||||
name: Hawkeridge Jn
|
||||
diverges: right
|
||||
direction: down
|
||||
description: Lines change direction towards Westbury
|
||||
goto: "0210"
|
||||
entryPoint: heywood-road-jn
|
||||
miles: 109
|
||||
chains: 14
|
||||
|
||||
- type: junction
|
||||
name: Westbury North Jn
|
||||
diverges: right
|
||||
direction: up
|
||||
goto: "0210"
|
||||
entryPoint: heywood-road-jn
|
||||
miles: 109
|
||||
chains: 49
|
||||
|
||||
- type: station
|
||||
name: Westbury
|
||||
miles: 109
|
||||
chains: 64
|
||||
|
||||
- type: junction
|
||||
name: Westbury South Jn
|
||||
diverges: left
|
||||
direction: down
|
||||
description: Up/Dn Main to Fairwood Jn
|
||||
goto: "0210"
|
||||
entryPoint: "fairwood-jn"
|
||||
miles: 110
|
||||
chains: 7
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Dilton Marsh Crossing
|
||||
miles: 110
|
||||
chains: 50
|
||||
|
||||
- type: continues
|
||||
routeName: Westbury - Southampton Ctl
|
||||
routeId: "0265"
|
||||
entryPoint: westbury
|
||||
1
static/mapFiles/yaml/0262.yaml.txt
Normal file
1
static/mapFiles/yaml/0262.yaml.txt
Normal file
@@ -0,0 +1 @@
|
||||
# Southampton Ctl - Portsmouth Hbr
|
||||
1
static/mapFiles/yaml/0263.yaml.txt
Normal file
1
static/mapFiles/yaml/0263.yaml.txt
Normal file
@@ -0,0 +1 @@
|
||||
# Castle Cary - Weymouth
|
||||
1
static/mapFiles/yaml/0265.yaml.txt
Normal file
1
static/mapFiles/yaml/0265.yaml.txt
Normal file
@@ -0,0 +1 @@
|
||||
# Westbury - Southampton Ctl
|
||||
1
static/mapFiles/yaml/0270.yaml.txt
Normal file
1
static/mapFiles/yaml/0270.yaml.txt
Normal file
@@ -0,0 +1 @@
|
||||
# Bristol TM - Cardiff West Shunt
|
||||
681
static/mapFiles/yaml/2420.yaml
Normal file
681
static/mapFiles/yaml/2420.yaml
Normal file
@@ -0,0 +1,681 @@
|
||||
routeStart: Westerleigh Jn
|
||||
routeEnd: Gloucester
|
||||
routeId: 2420
|
||||
updated: 2026-02-11
|
||||
checked: 2026-02-11
|
||||
signallerStart: TVSC Swindon WS
|
||||
signallerEnd: Gloucester PSB
|
||||
elecStart:
|
||||
elec: 25kvac
|
||||
eco: Didcot (TVSC)
|
||||
elecEnd:
|
||||
elec: none
|
||||
|
||||
routeDetail:
|
||||
|
||||
- type: junction
|
||||
name: Westerleigh Jn
|
||||
diverges: left
|
||||
direction: down
|
||||
goto: '0240'
|
||||
entryPoint: westerleigh-jn
|
||||
miles: 121
|
||||
chains: 26
|
||||
|
||||
- type: bridge
|
||||
name: Westerleigh Road
|
||||
category: road
|
||||
position: under
|
||||
miles: 121
|
||||
chains: 19
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
name: Cattle Creep
|
||||
miles: 121
|
||||
chains: 20
|
||||
|
||||
- type: electrificationChange
|
||||
from:
|
||||
elec: 25kvac
|
||||
eco: Didcot
|
||||
to:
|
||||
elec: none
|
||||
miles: 120
|
||||
chains: 67
|
||||
|
||||
- type: minorBridge
|
||||
name: Westerleigh Road
|
||||
position: under
|
||||
category: road
|
||||
miles: 120
|
||||
chains: 63
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
position: under
|
||||
miles: 120
|
||||
chains: 36
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: up
|
||||
name: Yate South Jn
|
||||
description: to Westerleigh Oil Terminal
|
||||
miles: 120
|
||||
chains: 3
|
||||
|
||||
- type: station
|
||||
name: Yate
|
||||
miles: 119
|
||||
chains: 60
|
||||
|
||||
- type: minorBridge
|
||||
category: aroad
|
||||
position: over
|
||||
description: Between platforms
|
||||
roadName: A432
|
||||
name: Station Road
|
||||
miles: 119
|
||||
chains: 59
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: down
|
||||
name: Yate Middle Junction
|
||||
description: Diverges between platforms, to Tytherington
|
||||
miles: 119
|
||||
chains: 57
|
||||
|
||||
- type: minorBridge
|
||||
name: Stream
|
||||
category: Stream
|
||||
miles: 119
|
||||
chains: 23
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Celestine Road Foot Crossing
|
||||
miles: 119
|
||||
chains: 23
|
||||
|
||||
- type: minorBridge
|
||||
name: Goose Green Way
|
||||
category: road
|
||||
roadName: B4059
|
||||
position: over
|
||||
miles: 119
|
||||
chains: 6
|
||||
|
||||
- type: minorBridge
|
||||
name: Broad Lane
|
||||
category: road
|
||||
position: over
|
||||
miles: 119
|
||||
chains: 3
|
||||
|
||||
- type: minorBridge
|
||||
category: road
|
||||
miles: 118
|
||||
chains: 56
|
||||
position: over
|
||||
|
||||
- type: minorBridge
|
||||
name: Limekiln Road
|
||||
position: over
|
||||
miles: 117
|
||||
chains: 37
|
||||
|
||||
- type: minorBridge
|
||||
name: Hall End Lane
|
||||
category: road
|
||||
position: over
|
||||
miles: 116
|
||||
chains: 61
|
||||
|
||||
- type: minorBridge
|
||||
name: Westend Road
|
||||
category: road
|
||||
position: over
|
||||
miles: 116
|
||||
chains: 36
|
||||
|
||||
- type: minorBridge
|
||||
name: Aqueduct
|
||||
category: stream
|
||||
position: over
|
||||
miles: 116
|
||||
chains: 25
|
||||
|
||||
- type: tunnel
|
||||
name: Wickwar Tunnel
|
||||
tunnelType: whole
|
||||
length: 0mi 1401yd
|
||||
miles: 116
|
||||
chains: 60
|
||||
|
||||
- type: siteof
|
||||
name: Wickwar
|
||||
description: Former station
|
||||
miles: 115
|
||||
chains: 9
|
||||
|
||||
- type: minorBridge
|
||||
name: Station Road
|
||||
category: road
|
||||
position: under
|
||||
miles: 114
|
||||
chains: 79
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
miles: 113
|
||||
chains: 74
|
||||
|
||||
- type: siteof
|
||||
name: Charfield
|
||||
description: Former & Future Station
|
||||
miles: 113
|
||||
chains: 14
|
||||
|
||||
- type: minorBridge
|
||||
name: Wooton Road
|
||||
category: road
|
||||
roadName: B4058
|
||||
position: over
|
||||
miles: 113
|
||||
chains: 9
|
||||
|
||||
- type: loop
|
||||
position: both
|
||||
name: Charfield Loops
|
||||
miles: 112
|
||||
chains: 72
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Charfield 8 Foot Crossing
|
||||
miles: 112
|
||||
chains: 42
|
||||
|
||||
- type: minorBridge
|
||||
name: Little Avon River
|
||||
category: stream
|
||||
position: under
|
||||
miles: 112
|
||||
chains: 38
|
||||
|
||||
- type: minorBridge
|
||||
name: Charfield Meadow
|
||||
category: road
|
||||
position: under
|
||||
miles: 112
|
||||
chains: 21
|
||||
|
||||
- type: minorBridge
|
||||
name: Huntingford Bridge
|
||||
category: road
|
||||
position: under
|
||||
miles: 112
|
||||
chains: 10
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
miles: 111
|
||||
chains: 49
|
||||
|
||||
- type: minorBridge
|
||||
name: Foot Bridge
|
||||
category: foot
|
||||
position: over
|
||||
miles: 111
|
||||
chains: 1
|
||||
|
||||
- type: minorBridge
|
||||
category: road
|
||||
name: Wick Bridge
|
||||
position: over
|
||||
miles: 110
|
||||
chains: 60
|
||||
|
||||
- type: bridge
|
||||
name: Motorway
|
||||
roadName: M5
|
||||
category: motorway
|
||||
position: over
|
||||
miles: 110
|
||||
chains: 48
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Wick Mill No.2 Foot Crossing
|
||||
miles: 110
|
||||
chains: 9
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Wick Mill No.1 Foot Crossing
|
||||
miles: 109
|
||||
chains: 79
|
||||
|
||||
- type: minorBridge
|
||||
name: Crossways
|
||||
category: road
|
||||
position: over
|
||||
miiles: 109
|
||||
chains: 63
|
||||
|
||||
- type: signallerChange
|
||||
from: TVSC Stoke Gifford WS (BL)
|
||||
to: Gloucester PSB Panel C (G)
|
||||
miles: 109
|
||||
chains: 60
|
||||
|
||||
- type: crossing
|
||||
name: Goldwick Foot Crossing
|
||||
kind: foot
|
||||
miles: 109
|
||||
chains: 47
|
||||
|
||||
- type: crossing
|
||||
name: Alkington 14 Foot Crossing
|
||||
kind: foot
|
||||
miles: 109
|
||||
chains: 38
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
miles: 109
|
||||
chains: 15
|
||||
|
||||
- type: crossing
|
||||
name: Stinchcombe 6 Foot Crossing
|
||||
kind: foot
|
||||
miles: 108
|
||||
chains: 46
|
||||
|
||||
- type: minorBridge
|
||||
name: Cattle Creep
|
||||
position: under
|
||||
miles: 108
|
||||
chains: 53
|
||||
|
||||
- type: bridge
|
||||
name: Bristol Road
|
||||
position: over
|
||||
category: aroad
|
||||
roadName: A38
|
||||
miles: 108
|
||||
chains: 4
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Thornbury 45 Footpath
|
||||
miles: 107
|
||||
chains: 72
|
||||
|
||||
- type: junction
|
||||
diverges: right
|
||||
direction: Up
|
||||
name: Berkeley Road Jn
|
||||
description: to Sharpness Docks
|
||||
miles: 107
|
||||
chains: 70
|
||||
|
||||
- type: minorBridge
|
||||
name: Cattle Creep
|
||||
position: under
|
||||
miles: 107
|
||||
chains: 23
|
||||
|
||||
- type: minorBridge
|
||||
name: Tumpy Green
|
||||
position: over
|
||||
miles: 107
|
||||
chains: 4
|
||||
|
||||
- type: crossing
|
||||
name: Slimbridge 53 Foot Crossing
|
||||
kind: foot
|
||||
miles: 106
|
||||
chains: 62
|
||||
|
||||
- type: crossing
|
||||
name: Slimbridge 54 Foot Crossing
|
||||
kind: foot
|
||||
miles: 106
|
||||
chains: 48
|
||||
|
||||
- type: bridge
|
||||
name: Bristol Road
|
||||
category: aroad
|
||||
roadName: A38
|
||||
position: over
|
||||
miles: 106
|
||||
chains: 24
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Slimbridge 46 Foot Crossing
|
||||
miles: 105
|
||||
chains: 79
|
||||
|
||||
- type: bridge
|
||||
position: over
|
||||
name: Motorway
|
||||
roadName: M5
|
||||
category: motorway
|
||||
miles: 105
|
||||
chains: 70
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
category: aroad
|
||||
roadName: A4135
|
||||
miles: 105
|
||||
chains: 57
|
||||
|
||||
- type: crossovers
|
||||
name: Coaley GF
|
||||
miles: 105
|
||||
chains: 36
|
||||
|
||||
- type: station
|
||||
name: Cam & Dursley
|
||||
miles: 105
|
||||
chains: 30
|
||||
|
||||
- type: minorBridge
|
||||
name: Box Road
|
||||
position: over
|
||||
miles: 105
|
||||
chains: 26
|
||||
|
||||
- type: crossing
|
||||
name: Dursley Foot Crossing
|
||||
kind: foot
|
||||
miles: 105
|
||||
chains: 14
|
||||
|
||||
- type: minorBridge
|
||||
name: Westend
|
||||
position: under
|
||||
miles: 104
|
||||
chains: 60
|
||||
|
||||
- type: crossing
|
||||
name: Coaley 12 Foot Crossing
|
||||
miles: 104
|
||||
chains: 46
|
||||
kind: foot
|
||||
|
||||
- type: minorBridge
|
||||
name: Peter's Street
|
||||
position: under
|
||||
miles: 104
|
||||
chains: 39
|
||||
|
||||
- type: crossing
|
||||
name: Coaley 17 Foot Crossing
|
||||
kind: foot
|
||||
miles: 104
|
||||
chains: 27
|
||||
|
||||
- type: crossing
|
||||
name: Frocester 23 Foot Crossing
|
||||
kind: foot
|
||||
miles: 104
|
||||
chains: 14
|
||||
|
||||
- type: siteof
|
||||
name: Frocester
|
||||
description: Former station
|
||||
miles: 103
|
||||
chains: 36
|
||||
|
||||
- type: minorBridge
|
||||
name: Peter's Street
|
||||
position: over
|
||||
miles: 103
|
||||
chains: 32
|
||||
|
||||
- type: minorBridge
|
||||
name: Bath Road
|
||||
position: over
|
||||
miles: 103
|
||||
chains: 16
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Leonard Stanley 4 Foot Crossing
|
||||
miles: 102
|
||||
chains: 60
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
miles: 102
|
||||
chains: 30
|
||||
|
||||
- type: bridge
|
||||
name: Stonehouse Viaduct
|
||||
position: under
|
||||
miles: 102
|
||||
chains: 9
|
||||
|
||||
- type: minorBridge
|
||||
name: River Frome
|
||||
category: waterway
|
||||
position: under
|
||||
miles: 101
|
||||
chains: 75
|
||||
|
||||
- type: minorBridge
|
||||
name: Bristol Road
|
||||
roadName: A419
|
||||
position: under
|
||||
miles: 101
|
||||
chains: 67
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
category: foot
|
||||
position: over
|
||||
miles: 101
|
||||
chains: 42
|
||||
|
||||
- type: crossing
|
||||
name: Old Ends Level Crossing
|
||||
kind: CCTV
|
||||
description: CCTV by Gloucester
|
||||
miles: 101
|
||||
chains: 27
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Stonehouse 2 Foot Crossing
|
||||
miles: 101
|
||||
chains: 7
|
||||
|
||||
- type: minorBridge
|
||||
name: Stagholt Farm
|
||||
position: under
|
||||
miles: 100
|
||||
chains: 74
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Stagholt Foot Crossing
|
||||
miles: 100
|
||||
chains: 73
|
||||
|
||||
- type: minorBridge
|
||||
name: Black Bridge
|
||||
position: over
|
||||
miles: 100
|
||||
chains: 40
|
||||
|
||||
- type: minorBridge
|
||||
name: Gloucester Road
|
||||
category: road
|
||||
roadName: B4008
|
||||
miles: 100
|
||||
chains: 2
|
||||
|
||||
- type: crossing
|
||||
name: Standish 12 Footpath
|
||||
kind: foot
|
||||
miles: 99
|
||||
chains: 71
|
||||
|
||||
- type: junction
|
||||
name: Standish Jn
|
||||
diverges: left
|
||||
direction: up
|
||||
goto: '0230'
|
||||
entryPoint: standish-jn
|
||||
miles: 99
|
||||
chains: 69
|
||||
|
||||
- type: crossing
|
||||
name: Standish 9 Foot Crossing
|
||||
kind: foot
|
||||
miles: 99
|
||||
chains: 45
|
||||
|
||||
- type: minorBridge
|
||||
name: Bridge Farm
|
||||
position: over
|
||||
miles: 99
|
||||
chains: 29
|
||||
|
||||
- type: loop
|
||||
name: Haresfield Down Goods Loop
|
||||
position: left
|
||||
miles: 99
|
||||
chains: 0
|
||||
|
||||
- type: crossing
|
||||
kind: R/G
|
||||
name: Haresfield Foot Crossing
|
||||
miles: 99
|
||||
chains: 62
|
||||
|
||||
- type: loop
|
||||
name: Haresfield Up Goods Loop
|
||||
description: Exit signal usually blank
|
||||
position: right
|
||||
miles: 98
|
||||
chains: 40
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
miles: 98
|
||||
chains: 38
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Brookthorpe Foot Crossing
|
||||
miles: 97
|
||||
chains: 01
|
||||
|
||||
- type: minorBridge
|
||||
name: Grange Road
|
||||
category: road
|
||||
position: under
|
||||
miles: 95
|
||||
chains: 66
|
||||
|
||||
- type: minorBridge
|
||||
name: Southern Avenue
|
||||
category: aroad
|
||||
roadName: A38
|
||||
miles: 95
|
||||
chains: 3
|
||||
position: over
|
||||
|
||||
- type: crossovers
|
||||
name: Tuffley Jn
|
||||
description: Limit of bidirectional running from Gloucester
|
||||
miles: 94
|
||||
chains: 74
|
||||
|
||||
- type: minorBridge
|
||||
name: Stroud Road
|
||||
roadName: B4072
|
||||
category: road
|
||||
position: over
|
||||
miles: 94
|
||||
chains: 62
|
||||
|
||||
- type: minorBridge
|
||||
name: Footbridge
|
||||
position: over
|
||||
miles: 93
|
||||
chains: 72
|
||||
|
||||
- type: minorBridge
|
||||
name: Tredworth Road
|
||||
position: under
|
||||
category: road
|
||||
miles: 93
|
||||
chains: 37
|
||||
|
||||
- type: minorBridge
|
||||
name: Barton Street
|
||||
category: road
|
||||
position: under
|
||||
roadName: B4073
|
||||
miles: 93
|
||||
chains: 10
|
||||
|
||||
- type: junction
|
||||
name: Gloucester Yard Junction
|
||||
diverges: left
|
||||
direction: down
|
||||
description: to Barnwood Junction
|
||||
goto: "2422"
|
||||
entryPoint: barnwood-jn
|
||||
miles: 93
|
||||
chains: 8
|
||||
|
||||
- type: loop
|
||||
name: Curve Through Siding
|
||||
position: left
|
||||
miles: 113
|
||||
chains: 20
|
||||
description: Mileage Change from Gloucester Yard Jn
|
||||
|
||||
- type: bridge
|
||||
name: Metz Way
|
||||
category: aroad
|
||||
roadName: A4032
|
||||
position: over
|
||||
miles: 113
|
||||
chains: 24
|
||||
|
||||
- type: crossing
|
||||
kind: MCB
|
||||
name: Horton Road LC
|
||||
description: Controlled by Gloucester PSB
|
||||
miles: 113
|
||||
chains: 56
|
||||
|
||||
- type: junction
|
||||
diverges: left
|
||||
direction: up
|
||||
name: Horton Road Jn
|
||||
description: to Barnwood Jn
|
||||
goto: "2422"
|
||||
entryPoint: horton-road-jn
|
||||
miles: 113
|
||||
chains: 61
|
||||
|
||||
- type: station
|
||||
name: Gloucester
|
||||
miles: 114
|
||||
chains: 4
|
||||
|
||||
- type: continues
|
||||
routeName: Gloucester - Severn Tunnel Jn
|
||||
entryPoint: gloucester
|
||||
routeId: '2421'
|
||||
739
static/mapFiles/yaml/2421.yaml
Normal file
739
static/mapFiles/yaml/2421.yaml
Normal file
@@ -0,0 +1,739 @@
|
||||
# yaml-language-server: $schema=./mapFiles.schema.json
|
||||
routeStart: Gloucester
|
||||
routeEnd: Severn Tunnel Jn
|
||||
routeId: "2421"
|
||||
updated: 2026-02-28
|
||||
checked: 2026-03-01
|
||||
signallerStart: Gloucester PSB
|
||||
signallerEnd: SWCC Severn Tunnel WS
|
||||
elecStart:
|
||||
elec: none
|
||||
elecEnd:
|
||||
elec: 25kvac
|
||||
eco: Didcot (TVSC)
|
||||
|
||||
routeDetail:
|
||||
|
||||
- type: continues
|
||||
routeName: Gloucester - Westerleigh Jn
|
||||
entryPoint: gloucester
|
||||
routeId: '2420'
|
||||
|
||||
- type: station
|
||||
name: Gloucester
|
||||
miles: 114
|
||||
chains: 4
|
||||
|
||||
- type: minorBridge
|
||||
name: Gloucester Viaduct
|
||||
miles: 114
|
||||
chains: 20
|
||||
position: under
|
||||
category: road
|
||||
|
||||
- type: crossovers
|
||||
name: Gloucester West
|
||||
miles: 114
|
||||
chains: 40
|
||||
|
||||
- type: minorBridge
|
||||
name: St. Catherines Street
|
||||
position: under
|
||||
category: road
|
||||
miles: 114
|
||||
chains: 47
|
||||
|
||||
- type: minorBridge
|
||||
name: St. Oswalds Road
|
||||
position: under
|
||||
category: road
|
||||
miles: 114
|
||||
chains: 54
|
||||
|
||||
- type: minorBridge
|
||||
name: St. Catherines Meadow Viaduct
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 115
|
||||
chains: 2
|
||||
|
||||
- type: bridge
|
||||
name: River Severn
|
||||
position: under
|
||||
category: waterway
|
||||
miles: 114
|
||||
chains: 10
|
||||
|
||||
- type: minorBridge
|
||||
name: Ham Meadow Viaduct
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 115
|
||||
chains: 20
|
||||
|
||||
- type: minorBridge
|
||||
name: Over Causeway
|
||||
position: over
|
||||
category: aroad
|
||||
roadName: A417
|
||||
miles: 115
|
||||
chains: 32
|
||||
|
||||
- type: minorBridge
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 115
|
||||
chains: 37
|
||||
|
||||
- type: crossovers
|
||||
name: Over Jn
|
||||
miles: 115
|
||||
chains: 43
|
||||
|
||||
- type: bridge
|
||||
position: under
|
||||
category: waterway
|
||||
name: River Severn
|
||||
miles: 115
|
||||
chains: 48
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Keens Crossing
|
||||
miles: 116
|
||||
chains: 3
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Over Farm Foot Crossing
|
||||
miles: 116
|
||||
chains: 48
|
||||
|
||||
- type: minorBridge
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 116
|
||||
chains: 40
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Poole's Crossing
|
||||
miles: 116
|
||||
chains: 46
|
||||
|
||||
- type: minorBridge
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 116
|
||||
chains: 64
|
||||
|
||||
- type: minorBridge
|
||||
category: aroad
|
||||
name: A48
|
||||
roadName: A48
|
||||
position: over
|
||||
miles: 117
|
||||
chains: 5
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Hygrove Foot Crossing
|
||||
miles: 117
|
||||
chains: 39
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Lower Barn Foot Crossing
|
||||
miles: 118
|
||||
chains: 17
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Churcham Court Foot Crossing
|
||||
miles: 118
|
||||
chains: 48
|
||||
|
||||
- type: minorBridge
|
||||
category: minorRoad
|
||||
name: Farm Bridge
|
||||
position: over
|
||||
miles: 118
|
||||
chains: 55
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Churcham 66 Foot Crossing
|
||||
miles: 118
|
||||
chains: 69
|
||||
|
||||
- type: minorBridge
|
||||
name: Oakle Street
|
||||
position: over
|
||||
category: road
|
||||
miles: 119
|
||||
chains: 35
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Oakle St No.1 Foot Crossing
|
||||
miles: 119
|
||||
chains: 59
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Oakle St No.2 Foot Crossing
|
||||
miles: 119
|
||||
chains: 66
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Hooks Farm Foot Crossing
|
||||
miles: 120
|
||||
chains: 1
|
||||
|
||||
- type: crossing
|
||||
kind: CCTV
|
||||
name: Ley Level Crossing
|
||||
description: CCTV by Gloucester
|
||||
miles: 120
|
||||
chains: 20
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Broken Cross Farm No.1 Crossing
|
||||
miles: 120
|
||||
chains: 49
|
||||
|
||||
- type: crossing
|
||||
kind: r/g
|
||||
name: Broken Cross Farm Level Crossing
|
||||
miles: 120
|
||||
chains: 66
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
category: minorRoad
|
||||
name: Grange Court Road
|
||||
miles: 121
|
||||
chains: 50
|
||||
|
||||
- type: crossing
|
||||
kind: AHB
|
||||
name: Westbury Level Crossing
|
||||
miles: 122
|
||||
chains: 11
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Longcroft Farm Foot Crossing
|
||||
miles: 122
|
||||
chains: 20
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Westbury Brook Foot Crossing
|
||||
miles: 122
|
||||
chains: 51
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
name: Westbury-on-Severn Lane
|
||||
miles: 122
|
||||
chains: 72
|
||||
category: road
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
name: Jordan Hill
|
||||
roadName: A48
|
||||
category: aroad
|
||||
miles: 122
|
||||
chains: 78
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 123
|
||||
chains: 33
|
||||
|
||||
- type: minorBridge
|
||||
name: Cattle Creep
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 123
|
||||
chains: 53
|
||||
|
||||
- type: crossing
|
||||
kind: omsl
|
||||
name: Broadoak Crossing
|
||||
miles: 123
|
||||
chains: 76
|
||||
|
||||
- type: minorBridge
|
||||
name: Broad Oak Bridge
|
||||
roadName: A48
|
||||
category: aroad
|
||||
position: under
|
||||
miles: 124
|
||||
chains: 5
|
||||
|
||||
- type: minorBridge
|
||||
name: Cattle Creep
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 124
|
||||
chains: 25
|
||||
|
||||
- type: minorBridge
|
||||
name: Hawkins Lane
|
||||
category: road
|
||||
position: under
|
||||
miles: 124
|
||||
chains: 40
|
||||
|
||||
- type: minorBridge
|
||||
name: Cattle Creep
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 124
|
||||
chains: 45
|
||||
|
||||
- type: minorBridge
|
||||
position: over
|
||||
name: Hyde Lane
|
||||
category: road
|
||||
miles: 125
|
||||
chains: 3
|
||||
|
||||
- type: signallerChange
|
||||
from: Gloucester PSB (G)
|
||||
to: SWCC Severn Tunnel Workstation (NT)
|
||||
miles: 125
|
||||
chains: 10
|
||||
|
||||
- type: tunnel
|
||||
tunnelType: whole
|
||||
length: 0mi 235yd
|
||||
name: Newnham Tunnel
|
||||
miles: 125
|
||||
chains: 14
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
category: minorRoad
|
||||
position: over
|
||||
miles: 125
|
||||
chains: 26
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Ruddle Bridge Crossing
|
||||
miles: 125
|
||||
chains: 37
|
||||
|
||||
- type: minorBridge
|
||||
name: Ruddle Road Bridge
|
||||
roadName: A48
|
||||
position: under
|
||||
category: aroad
|
||||
miles: 125
|
||||
chains: 47
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Bullo Pill Foot Crossing
|
||||
miles: 126
|
||||
chains: 35
|
||||
|
||||
- type: minorBridge
|
||||
name: Bullo Dock Viaduct
|
||||
position: under
|
||||
category: road
|
||||
miles: 126
|
||||
chains: 39
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
category: minorRoad
|
||||
position: over
|
||||
miles: 126
|
||||
chains: 74
|
||||
|
||||
- type: minorBridge
|
||||
name: Awre Road Cockshoot Bridge
|
||||
category: minorRoad
|
||||
position: over
|
||||
miles: 127
|
||||
chains: 34
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Awre 15 Foot Crossing
|
||||
miles: 128
|
||||
chains: 9
|
||||
|
||||
- type: crossing
|
||||
kind: CCTV
|
||||
name: Awre Level Crossing
|
||||
miles: 128
|
||||
chains: 22
|
||||
description: CCTV by SWCC
|
||||
|
||||
- type: minorBridge
|
||||
name: Hewletts Road
|
||||
position: over
|
||||
category: road
|
||||
miles: 128
|
||||
chains: 46
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Awre 87 Foot Crossing
|
||||
miles: 129
|
||||
chains: 7
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Milkmaid Head Foot Crossing
|
||||
miles: 129
|
||||
chains: 45
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Gatcombe Foot Crossing
|
||||
miles: 129
|
||||
chains: 61
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Aldridge Crossing
|
||||
miles: 130
|
||||
chains: 65
|
||||
|
||||
- type: minorBridge
|
||||
name: Cliff Farm Bridge
|
||||
category: minorRoad
|
||||
position: over
|
||||
miles: 131
|
||||
chains: 79
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Plummers Farm Foot Crossing
|
||||
miles: 132
|
||||
chains: 19
|
||||
|
||||
- type: crossing
|
||||
kind: AHB
|
||||
name: Naas Level Crossing
|
||||
miles: 132
|
||||
chains: 68
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Lydney Foot Crossing
|
||||
miles: 132
|
||||
chains: 71
|
||||
|
||||
- type: loop
|
||||
position: both
|
||||
name: Lydney Goods Loops
|
||||
description: Up loop gives access to Dean Forest Railway
|
||||
miles: 133
|
||||
chains: 21
|
||||
|
||||
- type: station
|
||||
name: Lydney
|
||||
miles: 133
|
||||
chains: 37
|
||||
|
||||
- type: crossing
|
||||
kind: CCTV
|
||||
name: Lydney Level Crossing
|
||||
description: CCTV by SWCC
|
||||
miles: 133
|
||||
chains: 40
|
||||
|
||||
- type: minorBridge
|
||||
name: The Lyd
|
||||
position: under
|
||||
category: stream
|
||||
miles: 133
|
||||
chains: 42
|
||||
|
||||
- type: minorBridge
|
||||
position: under
|
||||
category: road
|
||||
miles: 133
|
||||
chains: 45
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Garlands No.1 Crossing
|
||||
miles: 133
|
||||
chains: 72
|
||||
|
||||
- type: minorBridge
|
||||
name: Garlands Bridge
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 134
|
||||
chains: 26
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Stockwell Lane Crossing
|
||||
miles: 134
|
||||
chains: 53
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Hardacre No.1 Foot Crossing
|
||||
miles: 134
|
||||
chains: 62
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Hardacre No.2 Crossing
|
||||
miles: 135
|
||||
chains: 4
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Alvington 17 Foot Crossing
|
||||
miles: 134
|
||||
chains: 66
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Alvington 18 Foot Crossing
|
||||
miles: 135
|
||||
chains: 38
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Woolaston 117 Foot Crossing
|
||||
miles: 135
|
||||
chains: 56
|
||||
|
||||
- type: crossing
|
||||
kind: foot
|
||||
name: Woolaston 118 Foot Crossing
|
||||
miles: 135
|
||||
chains: 77
|
||||
|
||||
- type: crossing
|
||||
kind: r/g
|
||||
name: Woolaston Level Crossing
|
||||
miles: 136
|
||||
chains: 14
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
category: minorRoad
|
||||
position: over
|
||||
miles: 136
|
||||
chains: 27
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: High Hall Crossing
|
||||
miles: 138
|
||||
chains: 14
|
||||
|
||||
- type: minorBridge
|
||||
name: Pill House Bridge
|
||||
position: over
|
||||
category: road
|
||||
miles: 139
|
||||
chains: 9
|
||||
|
||||
- type: minorBridge
|
||||
name: Farm Bridge
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 139
|
||||
chains: 56
|
||||
|
||||
- type: minorBridge
|
||||
name: Snipe Hill Bridge
|
||||
position: over
|
||||
category: road
|
||||
miles: 140
|
||||
chains: 22
|
||||
|
||||
- type: minorBridge
|
||||
name: Mead School Bridge
|
||||
position: over
|
||||
category: road
|
||||
miles: 140
|
||||
chains: 35
|
||||
|
||||
- type: minorBridge
|
||||
name: Sedbury Lane
|
||||
position: over
|
||||
category: road
|
||||
miles: 140
|
||||
chains: 55
|
||||
|
||||
- type: tunnel
|
||||
tunnelType: whole
|
||||
name: Chepstow Tunnel
|
||||
length: 0mi 359yd
|
||||
description: May be illuminated
|
||||
miles: 140
|
||||
chains: 69
|
||||
|
||||
- type: minorBridge
|
||||
name: Beachley Road
|
||||
position: over
|
||||
category: road
|
||||
miles: 141
|
||||
chains: 0
|
||||
|
||||
- type: bridge
|
||||
name: Chepstow Bridge
|
||||
position: under
|
||||
category: waterway
|
||||
description: Crosses River Wye
|
||||
miles: 141
|
||||
chains: 10
|
||||
|
||||
- type: station
|
||||
name: Chepstow
|
||||
miles: 141
|
||||
chains: 33
|
||||
|
||||
- type: bridge
|
||||
name: Motorway
|
||||
position: over
|
||||
category: motorway
|
||||
roadName: M48
|
||||
miles: 143
|
||||
chains: 4
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Sharpe's Crossing
|
||||
miles: 143
|
||||
chains: 15
|
||||
|
||||
- type: crossing
|
||||
kind: omsl
|
||||
name: Three Gates Crossing
|
||||
miles: 143
|
||||
chains: 35
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Curb Hut Crossing
|
||||
miles: 144
|
||||
chains: 6
|
||||
|
||||
- type: minorBridge
|
||||
name: Redcliffe Bridge
|
||||
category: minorRoad
|
||||
position: over
|
||||
miles: 144
|
||||
chains: 40
|
||||
|
||||
- type: crossing
|
||||
kind: omsl
|
||||
name: Mathern 21 Foot Crossing
|
||||
miles: 144
|
||||
chains: 68
|
||||
|
||||
- type: crossing
|
||||
name: Ifton Hill Farm Crossing
|
||||
kind: uwc
|
||||
miles: 145
|
||||
chains: 11
|
||||
|
||||
- type: minorBridge
|
||||
name: New Passage Road
|
||||
position: over
|
||||
category: road
|
||||
miles: 145
|
||||
chains: 67
|
||||
|
||||
- type: minorBridge
|
||||
category: foot
|
||||
position: over
|
||||
miles: 146
|
||||
chains: 0
|
||||
|
||||
- type: minorBridge
|
||||
name: Portskewett Road
|
||||
category: minorRoad
|
||||
position: over
|
||||
miles: 146
|
||||
chains: 32
|
||||
|
||||
- type: crossing
|
||||
name: Caldicot Level Crossing
|
||||
kind: CCTV
|
||||
description: CCTV by SWCC
|
||||
miles: 147
|
||||
chains: 4
|
||||
|
||||
- type: crossing
|
||||
name: Rhymers Crossing
|
||||
kind: uwc
|
||||
miles: 147
|
||||
chains: 25
|
||||
|
||||
- type: minorBridge
|
||||
name: Caldicot Road Bridge
|
||||
position: over
|
||||
category: road
|
||||
miles: 147
|
||||
chains: 51
|
||||
|
||||
- type: crossing
|
||||
kind: uwc
|
||||
name: Caldicot Station Crossing
|
||||
miles: 148
|
||||
chains: 0
|
||||
|
||||
- type: station
|
||||
name: Caldicot
|
||||
miles: 148
|
||||
chains: 2
|
||||
|
||||
- type: electrificationChange
|
||||
from:
|
||||
elec: none
|
||||
to:
|
||||
elec: 25kvac
|
||||
eco: Didcot
|
||||
miles: 148
|
||||
chains: 50
|
||||
|
||||
- type: minorBridge
|
||||
name: Ifton Tramway Underbridge
|
||||
category: minorRoad
|
||||
position: under
|
||||
miles: 148
|
||||
chains: 50
|
||||
|
||||
- type: station
|
||||
name: Severn Tunnel Junction
|
||||
description: Platforms 1 & 2 on this line of route
|
||||
miles: 148
|
||||
chains: 61
|
||||
|
||||
- type: junction
|
||||
name: Severn Tunnel Junction
|
||||
diverges: left
|
||||
direction: up
|
||||
description: to Bristol via Severn Tunnel
|
||||
goto: '0000'
|
||||
entryPoint: severn-tunnel-junction
|
||||
miles: 149
|
||||
chains: 14
|
||||
|
||||
- type: continues
|
||||
routeName: Bristol Parkway - Cardiff West Shunt
|
||||
routeId: '0000'
|
||||
entryPoint: severn-tunnel-junction
|
||||
1
static/mapFiles/yaml/2422.yaml.txt
Normal file
1
static/mapFiles/yaml/2422.yaml.txt
Normal file
@@ -0,0 +1 @@
|
||||
# Gloucster - Malvern Wells
|
||||
1
static/mapFiles/yaml/2651.yaml.txt
Normal file
1
static/mapFiles/yaml/2651.yaml.txt
Normal file
@@ -0,0 +1 @@
|
||||
# Romsey - Southampton Ctl via Easleigh
|
||||
1
static/mapFiles/yaml/2652.yaml.txt
Normal file
1
static/mapFiles/yaml/2652.yaml.txt
Normal file
@@ -0,0 +1 @@
|
||||
# Easleigh - Fareham
|
||||
576
static/mapFiles/yaml/mapFiles.schema.json
Normal file
576
static/mapFiles/yaml/mapFiles.schema.json
Normal file
@@ -0,0 +1,576 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"routeStart",
|
||||
"routeEnd",
|
||||
"routeId",
|
||||
"updated",
|
||||
"signallerStart",
|
||||
"signallerEnd",
|
||||
"elecStart",
|
||||
"elecEnd",
|
||||
"routeDetail"
|
||||
],
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"routeStart": {
|
||||
"type": "string",
|
||||
"description": "The route start point"
|
||||
},
|
||||
"routeEnd": {
|
||||
"type": "string",
|
||||
"description": "The route end point"
|
||||
},
|
||||
"routeId": {
|
||||
"type": "string",
|
||||
"description": "The routes ID Code",
|
||||
"pattern": "^[0-9]{4}$"
|
||||
},
|
||||
"updated": {
|
||||
"type": "string",
|
||||
"format": "date",
|
||||
"description": "Date the route was last updated"
|
||||
},
|
||||
"checked": {
|
||||
"type": "string",
|
||||
"format": "date",
|
||||
"description": "Date the route was last checked for accuracy"
|
||||
},
|
||||
"signallerStart": {
|
||||
"type": "string",
|
||||
"description": "The signaller at the start of the route"
|
||||
},
|
||||
"signallerEnd": {
|
||||
"type": "string",
|
||||
"description": "The signalller at the end of the route"
|
||||
},
|
||||
"elecStart": {
|
||||
"$ref": "#/definitions/elecInfo",
|
||||
"description": "Electrification details at the route start"
|
||||
},
|
||||
"elecEnd": {
|
||||
"$ref": "#/definitions/elecInfo",
|
||||
"description": "Electrification info at the end of the route"
|
||||
},
|
||||
"routeDetail": {
|
||||
"type": "array",
|
||||
"additionalItems": false,
|
||||
"items": {
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/bridge"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/crossing"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/crossover"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/electrificationChange"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/junction"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/loop"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/routeContinuation"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/siteof"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/station"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/tunnel"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/signallerChange"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"definitions": {
|
||||
"elecInfo": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"elec": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"25kvac",
|
||||
"750vdc",
|
||||
"650vdc",
|
||||
"1500vdc",
|
||||
"none"
|
||||
]
|
||||
},
|
||||
"eco": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"elec"
|
||||
]
|
||||
},
|
||||
"bridge": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"bridge",
|
||||
"minorBridge"
|
||||
]
|
||||
},
|
||||
"roadName": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"position": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"over",
|
||||
"under"
|
||||
]
|
||||
},
|
||||
"category": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"road",
|
||||
"aroad",
|
||||
"motorway",
|
||||
"foot",
|
||||
"waterway",
|
||||
"stream",
|
||||
"rail",
|
||||
"minorRoad",
|
||||
"pipeline"
|
||||
]
|
||||
},
|
||||
"miles": {
|
||||
"type": "number"
|
||||
},
|
||||
"chains": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"position",
|
||||
"category",
|
||||
"miles",
|
||||
"chains"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"crossing": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"const": "crossing"
|
||||
},
|
||||
"kind": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"CCTV",
|
||||
"AHB",
|
||||
"uwc",
|
||||
"foot",
|
||||
"omsl",
|
||||
"r/g",
|
||||
"msl",
|
||||
"mcb",
|
||||
"mg",
|
||||
"mcg",
|
||||
"aocl"
|
||||
]
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"miles": {
|
||||
"type": "number"
|
||||
},
|
||||
"chains": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"kind",
|
||||
"name",
|
||||
"miles",
|
||||
"chains"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"crossover": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"const": "crossovers"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"miles": {
|
||||
"type": "number"
|
||||
},
|
||||
"chains": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"name",
|
||||
"miles",
|
||||
"chains"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"electrificationChange": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"const": "electrificationChange"
|
||||
},
|
||||
"miles": {
|
||||
"type": "number"
|
||||
},
|
||||
"chains": {
|
||||
"type": "number"
|
||||
},
|
||||
"from": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"elec": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"25kvac",
|
||||
"750vdc",
|
||||
"650vdc",
|
||||
"1500vdc",
|
||||
"none"
|
||||
]
|
||||
},
|
||||
"eco": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"elec"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"to": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"elec": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"25kvac",
|
||||
"750vdc",
|
||||
"650vdc",
|
||||
"1500vdc",
|
||||
"none"
|
||||
]
|
||||
},
|
||||
"eco": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"elec"
|
||||
],
|
||||
"additionalProperties": false
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"miles",
|
||||
"chains"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"junction": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"const": "junction"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"diverges": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"left",
|
||||
"right",
|
||||
"both"
|
||||
]
|
||||
},
|
||||
"direction": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"up",
|
||||
"down",
|
||||
"both"
|
||||
]
|
||||
},
|
||||
"miles": {
|
||||
"type": "number"
|
||||
},
|
||||
"chains": {
|
||||
"type": "number"
|
||||
},
|
||||
"elecBranch": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"25kvac",
|
||||
"750vdc",
|
||||
"650vdc",
|
||||
"1500vdc",
|
||||
"none"
|
||||
]
|
||||
},
|
||||
"goto": {
|
||||
"type": "string"
|
||||
},
|
||||
"entryPoint": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"diverges",
|
||||
"direction",
|
||||
"miles",
|
||||
"chains",
|
||||
"type"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"loop": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"const": "loop"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"position": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"left",
|
||||
"right",
|
||||
"both"
|
||||
]
|
||||
},
|
||||
"miles": {
|
||||
"type": "number"
|
||||
},
|
||||
"chains": {
|
||||
"type": "number"
|
||||
},
|
||||
"elecLoop": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"25kvac",
|
||||
"750vdc",
|
||||
"650vdc",
|
||||
"1500vdc",
|
||||
"none"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"name",
|
||||
"position",
|
||||
"miles",
|
||||
"chains"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"routeContinuation": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"const": "continues"
|
||||
},
|
||||
"routeName": {
|
||||
"type": "string",
|
||||
"description": "Name to display"
|
||||
},
|
||||
"routeId": {
|
||||
"type": "string",
|
||||
"description": "Id of route"
|
||||
},
|
||||
"entryPoint": {
|
||||
"type": "string",
|
||||
"description": "Entrypoint of other route (lowercase, replacing whitespace with -, junction always referred to as jn"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"routeName",
|
||||
"routeId",
|
||||
"entryPoint"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"siteof": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"const": "siteof"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"miles": {
|
||||
"type": "number"
|
||||
},
|
||||
"chains": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"name",
|
||||
"miles",
|
||||
"chains"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"station": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"const": "station"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"miles": {
|
||||
"type": "number"
|
||||
},
|
||||
"chains": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"name",
|
||||
"miles",
|
||||
"chains"
|
||||
]
|
||||
},
|
||||
"tunnel": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"const": "tunnel"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"description": {
|
||||
"type": "string"
|
||||
},
|
||||
"tunnelType": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"start",
|
||||
"end",
|
||||
"mid",
|
||||
"whole"
|
||||
]
|
||||
},
|
||||
"length": {
|
||||
"type": "string",
|
||||
"pattern": ""
|
||||
},
|
||||
"miles": {
|
||||
"type": "number"
|
||||
},
|
||||
"chains": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"name",
|
||||
"tunnelType",
|
||||
"miles",
|
||||
"chains"
|
||||
],
|
||||
"additionalProperties": false
|
||||
},
|
||||
"signallerChange": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string",
|
||||
"const": "signallerChange"
|
||||
},
|
||||
"from": {
|
||||
"type": "string"
|
||||
},
|
||||
"to": {
|
||||
"type": "string"
|
||||
},
|
||||
"miles": {
|
||||
"type": "number"
|
||||
},
|
||||
"chains": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"from",
|
||||
"to",
|
||||
"miles",
|
||||
"chains"
|
||||
],
|
||||
"additionalProperties": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -2,16 +2,14 @@ import { sveltekit } from '@sveltejs/kit/vite';
|
||||
import { defineConfig } from 'vite';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
sveltekit(),
|
||||
],
|
||||
plugins: [sveltekit()],
|
||||
build: {
|
||||
assetsInlineLimit: 0,
|
||||
cssCodeSplit: true,
|
||||
sourcemap: false,
|
||||
target: 'esnext',
|
||||
modulePreload: {
|
||||
polyfill: false,
|
||||
polyfill: false
|
||||
}
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user