31 Commits

Author SHA1 Message Date
edd0502bd2 Update static/mapFiles/yaml/0220.yaml 2026-07-02 11:27:29 +01:00
d0dbe80e66 Update static/mapFiles/yaml/0220.yaml 2026-07-02 11:25:34 +01:00
437b9e9772 Correct Up/Dn to Up & Dn to signify two tracks 2026-07-01 23:23:38 +01:00
fec6c45247 Update dependencies. Add Didcot-Oxford route & stations 2026-07-01 23:18:10 +01:00
58a7b633dc Fix platform definitions 2026-03-12 20:16:48 +00:00
4be16f44bd Add blank file to ensure directory exists 2026-03-12 15:00:27 +00:00
7480caad6f Remove assets that should not exist in Git 2026-03-12 14:57:57 +00:00
5c81b54ca1 Bring staiton info modal into style with rest of site 2026-03-12 14:57:24 +00:00
1add69b0eb Ignore generate station JSON 2026-03-12 14:38:58 +00:00
0fc2c0177b Add station modal logic and station data for part of route 0210 2026-03-12 00:54:42 +00:00
06861f4037 Run audit fix 2026-03-11 21:34:29 +00:00
11ec2574f0 Add station data and parser for the script.
Need to do:
 - Write the StationIfno modal and enable toggling it's display.
2026-03-11 17:26:57 +00:00
904942e078 Add station details for some stations 2026-03-11 15:07:32 +00:00
368144555f Add Map 0210 (Westbury Line Jn - Cogload Jn) And ensure links from other maps are working 2026-03-05 21:37:05 +00:00
6ac5f9c786 Ensure link exists to Bathampton Jn - map 0002 2026-03-02 00:01:58 +00:00
5b7cc4bf3b Undo fix Westbury South Jn Orientation - it was not incorrect! 2026-03-01 23:59:11 +00:00
5411235adc Fix Westbury South Jn Orientation 2026-03-01 23:58:46 +00:00
f6bdbd0090 Add dilton marsh foot crossing to tail of Westbiury South Jn map 2026-03-01 23:58:24 +00:00
74e1828f8c Add missing signaller change from Bathampton - Westbury Map
Extend Bathampton - Westbury Map to include Westbury South Jn
2026-03-01 23:55:43 +00:00
d52987a3be Add maps for Melksham line and Trowbridge Lines. Complete Reading-Bristol and improve inter-map links 2026-03-01 23:43:50 +00:00
25e2d0f0b2 Minor schema based corrections 2026-03-01 20:10:28 +00:00
756bbbe66f Minor schema corrections 2026-03-01 20:08:20 +00:00
e70b55a5f0 Add schema validation in IDE for route map definition files 2026-03-01 20:05:55 +00:00
bda2e8a0be Fix electrification change feature - display of electrification was incorrect. Fix missing 'kind' from crossing on route 2421 2026-02-28 21:43:43 +00:00
5ce8ca7c0e Add Gloucester to Severn Tunnel Junction 2026-02-28 21:01:42 +00:00
40b4fc94a6 Improve search bar clarity 2026-02-14 21:56:16 +00:00
97703a081a Complete 2420 - Westerleigh - Gloucester and ensure linking is working. 2026-02-14 21:54:59 +00:00
e7530846f2 Improve map loading functions 2026-02-14 21:54:25 +00:00
660b38950f Relocate transpiles maps 2026-02-14 21:54:14 +00:00
437ce6c3e0 Remove map files from build, relocate transpiled map files to $lib for cache improvements. 2026-02-14 21:54:05 +00:00
765923ca0a Complete map 0230 to Standish Jn 2026-02-14 20:14:42 +00:00
51 changed files with 6166 additions and 576 deletions

2
.gitignore vendored
View File

@@ -3,6 +3,8 @@ node_modules
# Transpiled JSON # Transpiled JSON
/static/mapFiles/json/ /static/mapFiles/json/
/static/map-index.json /static/map-index.json
/src/lib/assets/route/*.json
/src/lib/assets/station/*.json
# Output # Output
.output .output

9
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,9 @@
{
"yaml.schemas": {
"./static/mapFiles/yaml/mapFiles.schema.json": "static/mapFiles/yaml/*.yaml",
"./static/stations/stationFiles.schema.json": "static/stations/*.yaml"
},
"yaml.format.enable": true,
"yaml.validate": true,
"yaml.schemaStore.enable": false
}

View File

@@ -6,7 +6,7 @@ RUN npm ci
COPY . . COPY . .
RUN node ./scripts/parse-maps.js RUN node ./scripts/parse-maps.js
RUN rm -r ./static/mapFiles/yaml RUN rm -r ./static/mapFiles
RUN npm run build RUN npm run build
RUN npm prune --production RUN npm prune --production

1076
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,9 @@ import fs from 'fs';
import path from 'path'; import path from 'path';
const inputDir = './static/mapFiles/yaml'; const inputDir = './static/mapFiles/yaml';
const outputDir = './static/mapFiles/json'; const stationInputDir = './static/stations';
const outputDir = './src/lib/assets/route';
const stationOutputDir = './src/lib/assets/station';
const indexFile = './static/map-index.json'; const indexFile = './static/map-index.json';
const noiseRegex = /\s+(single line|junction|jn|junc|jct|gf|north|south|east|west)\.?$/i; const noiseRegex = /\s+(single line|junction|jn|junc|jct|gf|north|south|east|west)\.?$/i;
@@ -11,6 +13,23 @@ const noiseRegex = /\s+(single line|junction|jn|junc|jct|gf|north|south|east|wes
if (!fs.existsSync(outputDir)) fs.mkdirSync(outputDir, { recursive: true }); if (!fs.existsSync(outputDir)) fs.mkdirSync(outputDir, { recursive: true });
const mapList = []; const mapList = [];
const stationList = [];
fs.readdirSync(stationInputDir).forEach((file) => {
if (file.endsWith('.yaml')) {
const fullPath = path.join(stationInputDir, file);
const content = yaml.load(fs.readFileSync(fullPath, 'utf8'));
if (content.crs) {
stationList.push(content.crs);
}
const fileName = file.replace('.yaml', '.json');
fs.writeFileSync(path.join(stationOutputDir, fileName), JSON.stringify(content));
}
});
console.log(`Found station declarations for the following: ${JSON.stringify(stationList)}`);
fs.readdirSync(inputDir).forEach((file) => { fs.readdirSync(inputDir).forEach((file) => {
if (file.endsWith('.yaml')) { if (file.endsWith('.yaml')) {
@@ -18,12 +37,18 @@ fs.readdirSync(inputDir).forEach((file) => {
const content = yaml.load(fs.readFileSync(fullPath, 'utf8')); const content = yaml.load(fs.readFileSync(fullPath, 'utf8'));
const fileName = file.replace('.yaml', '.json'); const fileName = file.replace('.yaml', '.json');
fs.writeFileSync(path.join(outputDir, fileName), JSON.stringify(content));
const contentSet = new Set(); const contentSet = new Set();
// Use this loop to add a 'link' to each station if its CRS exists in 'stationList'
if (Array.isArray(content.routeDetail)) { if (Array.isArray(content.routeDetail)) {
content.routeDetail.forEach((item) => { content.routeDetail.forEach((item) => {
if (item.type === 'station' && item.crs) {
// Edit the item if item.crs exists in 'stationList' - maybe a `linkable: true`?
if (stationList.includes(item.crs)) {
item.stationInfo = true;
}
}
if ((item.type === 'junction' || item.type === 'station') && item.name) { if ((item.type === 'junction' || item.type === 'station') && item.name) {
let cleanName = item.name; let cleanName = item.name;
@@ -44,6 +69,8 @@ fs.readdirSync(inputDir).forEach((file) => {
}); });
} }
fs.writeFileSync(path.join(outputDir, fileName), JSON.stringify(content));
mapList.push({ mapList.push({
routeId: content.routeId || null, routeId: content.routeId || null,
routeStart: content.routeStart || null, routeStart: content.routeStart || null,

View File

@@ -7,8 +7,14 @@
content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"
/> />
<link rel="manifest" href="/manifest.webmanifest" /> <link rel="manifest" href="/manifest.webmanifest" />
<meta name="title" content="OwlBoard Maps | Railway route schematics to assist with learning & refreshing routes" /> <meta
<meta name="description" content="Schematic route diagrams showing stations, junctions, crossings, bridges and more" /> 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" /> <meta name="theme-color" content="#4fd1d1" />
<link rel="canonical" href="https://maps.owlboard.info" /> <link rel="canonical" href="https://maps.owlboard.info" />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />

View File

@@ -16,6 +16,18 @@
font-style: normal; font-style: normal;
} }
[id] { :root {
scroll-margin-top: 100px; /* Brand Colours */
--color-brand: #4fd1d1;
--color-brand-light: #5af5f5;
--color-accent: #3c6f79;
--color-accent-light: #5094a2;
--color-title: #ebebeb;
--color-bg-light: #404c55;
--color-bg-dark: #2b343c;
/* Shadows */
--color-shadow: hsla(210, 20%, 5%, 0.35);
--shadow-std: 0 4px 12px var(--color-shadow);
--shadow-up: 0 -4px 12px var(--color-shadow);
} }

View File

View File

@@ -1,18 +1,53 @@
<script lang="ts"> <script lang="ts">
import { components } from '$lib/mapRegistry'; import { components } from '$lib/mapRegistry';
import type { ElecType } from '$lib/railStyles'; import type { ElecType } from '$lib/railStyles';
import { IconArrowNarrowRight } from '@tabler/icons-svelte'; import { IconArrowNarrowRight, IconInfoCircle } from '@tabler/icons-svelte';
import StationInfo from '$lib/components/StationInfo.svelte';
type featureType = "station" | "junction" | "crossovers" | "siteof" | "bridge" | "minorBridge" | "crossover" | "crossing" | "loop" | "loops" | "signallerChange" | "electrificationChange" | "default" | "tunnel"; type featureType =
export let feature: {name: string; type: featureType; goto?: string; entryPoint?: string; miles: number; chains: number; description?: string}; // Raw Object | 'station'
export let activeElec: ElecType; // Active Electrification Type | 'junction'
export let reversed: boolean = false; | 'crossovers'
| 'siteof'
| 'bridge'
| 'minorBridge'
| 'crossover'
| 'crossing'
| 'loop'
| 'loops'
| 'signallerChange'
| 'electrificationChange'
| 'default'
| 'tunnel';
$: Icon = components[feature.type] || components.default; let {
feature,
activeElec,
reversed = false,
onShowInfo
}: {
feature: {
name: string;
type: featureType;
goto?: string;
entryPoint?: string;
miles: number;
chains: number;
description?: string;
stationInfo?: boolean;
crs?: string;
};
activeElec: ElecType;
reversed?: boolean;
onShowInfo: (crs: string) => void;
} = $props();
let Icon = $derived(components[feature.type] || components.default);
// Linking Logic // Linking Logic
$: isLinkable = !!(feature.goto && feature.entryPoint); let isLinkable = $derived(!!(feature?.goto && feature?.entryPoint));
$: href = `/map/${feature.goto}#${feature.entryPoint}`; let href = $derived(`/map/${feature.goto}#${feature.entryPoint}`);
let stationInfo = $derived(feature.type === 'station' && feature.stationInfo && feature.crs);
const slugify = (str?: string) => const slugify = (str?: string) =>
str?.toLocaleLowerCase().trim().replace(/\s+/g, '-') ?? 'unknown'; str?.toLocaleLowerCase().trim().replace(/\s+/g, '-') ?? 'unknown';
@@ -25,33 +60,42 @@
</div> </div>
<div class="icon-col"> <div class="icon-col">
<svelte:component this={Icon} feature={feature as any} {activeElec} {reversed} /> <svelte:component this={Icon} {feature} {activeElec} {reversed} />
</div> </div>
<svelte:element this={isLinkable ? 'a' : 'div'} {...(isLinkable ? { href } : {})} class="link-wrapper"> <svelte:element
<div class="label-col"> this={isLinkable ? 'a' : 'div'}
{#if feature.name} {...isLinkable ? { href } : {}}
<div class="feature-name">{feature.name}</div> class="link-wrapper"
{/if} >
{#if feature.description} <div class="label-col">
<div class="feature-desc">{feature.description}</div> {#if feature.name}
{/if} <div class="feature-name">{feature.name}</div>
</div> {/if}
{#if isLinkable} {#if feature.description}
<div class="feature-desc">{feature.description}</div>
{/if}
</div>
{#if isLinkable}
<div class="link-indicator"> <div class="link-indicator">
<IconArrowNarrowRight /> <IconArrowNarrowRight />
</div> </div>
{/if} {/if}
{#if stationInfo}
<div class="info-indicator" onclick={() => onShowInfo(feature.crs)}>
<IconInfoCircle />
</div>
{/if}
</svelte:element> </svelte:element>
</div> </div>
<style> <style>
a { a {
cursor: pointer; cursor: pointer;
text-decoration: none; text-decoration: none;
} }
.row-container { .row-container {
display: grid; display: grid;
grid-template-columns: 3.5rem 64px 1fr; grid-template-columns: 3.5rem 64px 1fr;
@@ -62,6 +106,7 @@ a {
margin: 0; margin: 0;
padding: 0; padding: 0;
overflow: hidden; overflow: hidden;
scroll-padding: 80px;
} }
.mileage-col { .mileage-col {
@@ -83,7 +128,6 @@ a {
font-size: 0.7rem; font-size: 0.7rem;
} }
.icon-col { .icon-col {
width: 64px; width: 64px;
height: 64px; height: 64px;
@@ -93,7 +137,6 @@ a {
overflow: visible; overflow: visible;
} }
.link-wrapper { .link-wrapper {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
@@ -125,6 +168,24 @@ a {
transform: rotate(-45deg); transform: rotate(-45deg);
} }
.info-indicator {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.info-indicator::before {
content: '';
position: absolute;
width: 44px;
height: 44px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.label-col { .label-col {
padding-left: 16px; padding-left: 16px;
display: flex; display: flex;

View File

@@ -0,0 +1,409 @@
<script lang="ts">
/*
Loads and displayes a 'Station Info' Modal
*/
import { fade, fly } from 'svelte/transition';
import { quintOut } from 'svelte/easing';
import { IconDisabled, IconDisabledOff, IconUserCheck, IconTrafficLights } from '@tabler/icons-svelte';
let { crs, onclose }: { crs: string; onclose: () => void } = $props();
let dialogRef = $state<HTMLDialogElement>();
$effect(() => {
if (dialogRef) {
dialogRef.showModal();
console.log('Modal Diaplayes');
}
});
const allStations = import.meta.glob('$lib/assets/station/*.json', { query: '?json' });
let stationData = $state<any>(null);
let error = $state<string | null>(null);
$effect(() => {
stationData = null;
error = null;
const path = `/src/lib/assets/station/${crs.toLowerCase()}.json`;
if (path in allStations) {
allStations[path]()
.then((mod: any) => {
stationData = mod.default;
console.log('Modal is present in page...');
})
.catch((err) => {
error = `Could not parse data for ${crs}`;
console.error(err);
});
} else {
error = `Station ${crs.toUpperCase()} not found in database`;
}
});
function parsePlatform(id: string) {
id = String(id || '');
const match = id.match(/^(.*?)(Up|Dn|BiDi)$/);
if (match) {
return { plat: match[1], direction: match[2] };
}
return { plat: id, direction: null };
}
const getTrainLayout = (pattern: any) => {
let coachCount = 0;
if (pattern.kind === 'IET5') coachCount = 5;
else if (pattern.kind === 'IET9') coachCount = 9;
else if (pattern.kind === 'IET10') coachCount = 10;
else if (pattern.kind === 'DMU') coachCount = pattern['max-car'] || 0;
const [startDoor, endDoor] = pattern.doors || [1, coachCount * 2];
return Array.from({ length: coachCount }, (_, i) => {
const coachNum = i + 1;
const doorA = i * 2 + 1;
const doorB = i * 2 + 2;
return {
label: coachNum,
doorAOpen: doorA >= startDoor && doorA <= endDoor,
doorBOpen: doorB >= startDoor && doorB <= endDoor
};
});
};
</script>
<dialog bind:this={dialogRef} {onclose} onclick={(e) => e.target === dialogRef && onclose()}>
{#if stationData || error}
<div class="modal-wrapper">
<header>
<div class="title-group">
<span class="crs-badge">{crs.toUpperCase()}</span>
<h2>{stationData?.name || 'Loading...'}</h2>
</div>
<button class="close-icon" onclick={onclose} aria-label="Close">&times;</button>
</header>
</div>
<div class="content">
{#if error}
<div class="error-box">{error}</div>
{:else if stationData}
<div class="platform-data">
{#each stationData['platforms'] ?? [] as platform}
{@const { plat, direction } = parsePlatform(platform.platformId)}
<div class="platform-card">
<div class="platform-main">
<span class="platform-label">Platform</span>
<span class="platform-number">{plat}</span>
{#if direction}
<span class="platform-direction">({direction})</span>
{/if}
</div>
<span class="length-tag">{platform.platformLength}m</span>
<div class="platform-meta">
<span class="icon-tag" title="Step-free access"
>
{#if platform.stepFree}
<IconDisabled color="#2563eb" />
{:else}
<IconDisabledOff color="#2563eb55" />
{/if}
</span>
{#if platform.dispatch}
<span class="icon-tag" title="Dispatch staff present"
><IconUserCheck color="#ea580c" /></span
>
{/if}
{#if platform.signal}
<span class="icon-tag" title="Starting Signal"
><IconTrafficLights color="#dc2626" /></span
>
{/if}
</div>
{#if platform.dispatchNote}
<span class="platform-note">{platform.dispatchNote}</span>
{/if}
{#if platform.stepFreeNote}
<span class="platform-note">{platform.stepFreeNote}</span>
{/if}
<div class="train-visualiser">
{#each platform.doorPattern as pattern}
<div class="train-row">
<span class="door-pattern-kind">{pattern.kind}</span>
<div class="coach-row">
{#each getTrainLayout(pattern) as coach}
<div class="coach-unit">
<div class="coach-body">{coach.label}</div>
<div class="door-status">
<span class="dot" class:open={coach.doorAOpen}></span>
<span class="dot" class:open={coach.doorBOpen}></span>
</div>
</div>
{/each}
</div>
</div>
{/each}
</div>
</div>
{/each}
</div>
{/if}
</div>
{/if}
</dialog>
<style>
dialog {
border: none;
border-radius: 16px;
padding: 0;
max-width: 500px;
width: 90%;
box-shadow:
0 20px 25px -5px rgba(0, 0, 0, 0.1),
0 10px 10px -5px rgba(0, 0, 0, 0.04);
overflow: hidden;
background: white;
max-height: 80vh;
display: flex;
flex-direction: column;
font-family: 'urwgothic', sans-serif;
}
dialog::backdrop {
background: rgba(15, 23, 42, 0.5);
backdrop-filter: blur(4px);
}
.modal-wrapper {
display: flex;
flex: 1;
flex-direction: column;
min-height: 0;
}
header {
background: var(--color-accent);
padding: 1rem 1.5rem;
margin-bottom: 50px;
border-bottom: 1px solid #e2e8f0;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 500;
}
.title-group {
display: flex;
align-items: center;
gap: 0.75rem;
}
.crs-badge {
background: var(--color-bg-light);
color: var(--color-title);
font-family: monospace;
font-weight: bold;
padding: 0.2rem 0.5rem;
border-radius: 4px;
font-size: 0.85rem;
}
h2 {
margin: 0;
font-size: 1.4rem;
color: var(--color-title);
}
.close-icon {
background: var(--color-brand);
display: flex;
align-items: center;
justify-content: center;
line-height: 0;
border-radius: 50%;
width: 32px;
height: 32px;
padding: 0;
border: none;
font-size: 1.5rem;
cursor: pointer;
color: var(--color-bg-light);
transition: all 0.2s;
}
.close-icon:hover {
background: var(--color-brand-light);
transform: scale(1.05);
transform: rotate(90deg);
}
.content {
padding: 1.5rem;
overflow-y: auto;
overflow-x: hidden;
box-sizing: border-box;
width: 100%;
word-wrap: break-word;
flex: 1;
-webkit-overflow-scrolling: touch;
}
.content::-webkit-scrollbar {
width: 6px;
}
.content::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 10px;
}
.platform-card:first-child {
margin-top: 20px;
}
.platform-card {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 0.75rem 1.25rem;
margin-bottom: 0.75rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
transition: transform 0.15s ease-in-out;
}
.platform-main {
display: flex;
align-items: baseline;
gap: 0.5rem;
}
.platform-label {
font-size: 0.7rem;
text-transform: uppercase;
font-weight: 700;
}
.platform-number {
font-size: 1.5rem;
font-weight: 700;
color: #0f172a;
line-height: 1;
font-family: sans-serif;
}
.platform-direction {
font-size: 1rem;
color: #475569;
font-weight: 500;
}
.platform-meta {
display: flex;
align-items: center;
gap: 1rem;
}
.length-tag {
font-family: 'JetBrains Mono', 'Fira Code', monospace;
font-size: 0.85rem;
font-weight: 800;
background: var(--color-bg-light);
color: var(--color-title);
padding: 0.25rem 0.6rem;
margin: 0.25rem 0.05rem;
border-radius: 4px;
border: 1px solid #e2e8f0;
}
.icon-tag {
display: flex;
align-items: center;
justify-content: center;
}
.train-visualiser {
margin-top: 1.25rem;
width: 100%;
padding: 1rem;
background: #f8fafc;
border-radius: 6px;
border: 1px solid #e2e8f0;
display: flex;
flex-direction: column;
gap: 1rem;
}
.train-row {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.door-pattern-kind {
font-size: 0.82rem;
font-weight: 800;
color: #101316;
text-transform: uppercase;
letter-spacing: 0.12em;
}
.coach-row {
display: flex;
gap: 4px;
overflow-x: auto;
padding-bottom: 4px;
}
.coach-unit {
flex: 0 0 32px;
display: flex;
flex-direction: column;
gap: 4px;
}
.coach-body {
height: 20px;
background: var(--color-accent-light);
color: #f8fafc;
font-size: 1rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
border-radius: 2px;
}
.coach-unit:first-child .coach-body {
border-top-left-radius: 8px;
border-bottom-left-radius: 8px;
background: var(--color-accent);
}
.door-status {
display: flex;
justify-content: space-around;
padding: 0 4px;
}
.dot {
width: 6px;
height: 6px;
background: #b65151;
border-radius: 50%;
transition: all 0.2s ease;
}
.dot.open {
background: #22c55e;
box-shadow: 0 0 5px #22c55e;
}
</style>

View File

@@ -43,7 +43,7 @@
{#if showToEco} {#if showToEco}
<text x="75" y="48" fill="#b91c1c" style="text-transform: uppercase;"> <text x="75" y="48" fill="#b91c1c" style="text-transform: uppercase;">
ECO: {feature.to.eco} | Type: {feature.from.elec} ECO: {feature.to.eco} | Type: {feature.to.elec}
</text> </text>
{/if} {/if}
</g> </g>

View File

@@ -61,14 +61,14 @@
font-weight: 700; font-weight: 700;
text-transform: uppercase; text-transform: uppercase;
letter-spacing: 0.05em; letter-spacing: 0.05em;
font-family: "urwgothic"; font-family: 'urwgothic';
color: #64748b; color: #64748b;
} }
.route-id-chip { .route-id-chip {
font-size: 0.6rem; font-size: 0.6rem;
font-weight: 800; font-weight: 800;
font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
background: #f1f5f9; background: #f1f5f9;
color: #475569; color: #475569;
padding: 2px 6px; padding: 2px 6px;
@@ -77,7 +77,7 @@
} }
.main-text { .main-text {
font-family: "urwgothic"; font-family: 'urwgothic';
font-size: 1rem; font-size: 1rem;
font-weight: 800; font-weight: 800;
color: #0f172a; color: #0f172a;

View File

@@ -13,7 +13,8 @@
const portalColour = '#475569'; // Slate grey const portalColour = '#475569'; // Slate grey
$: effectiveType = (() => { $: effectiveType = (() => {
if (!reversed || feature.tunnelType === 'whole' || feature.tunnelType === 'mid') return feature.tunnelType; if (!reversed || feature.tunnelType === 'whole' || feature.tunnelType === 'mid')
return feature.tunnelType;
return feature.tunnelType === 'start' ? 'end' : 'start'; return feature.tunnelType === 'start' ? 'end' : 'start';
})(); })();
</script> </script>

View File

@@ -57,7 +57,12 @@
<div class="list-container"> <div class="list-container">
<a href="https://owlboard.info" class="button-link">Go to OwlBoard Live Departures & PIS</a> <a href="https://owlboard.info" class="button-link">Go to OwlBoard Live Departures & PIS</a>
<input type="text" bind:value={searchTerm} placeholder="Search" class="search-input" /> <input
type="text"
bind:value={searchTerm}
placeholder="Search Station/Jn"
class="search-input"
/>
{#each filteredMaps as map (map.routeId)} {#each filteredMaps as map (map.routeId)}
<a <a
href={resolve(`/map/${map.routeId.toString().padStart(4, '0')}`)} href={resolve(`/map/${map.routeId.toString().padStart(4, '0')}`)}

View File

@@ -1,18 +1,30 @@
<script lang="ts"> <script lang="ts">
import RouteRow from '$lib/components/RouteRow.svelte'; import RouteRow from '$lib/components/RouteRow.svelte';
import RouteEndLink from '$lib/components/mapIcons/RouteEndLink.svelte'; import RouteEndLink from '$lib/components/mapIcons/RouteEndLink.svelte';
import StationInfo from '$lib/components/StationInfo.svelte';
import { slide } from 'svelte/transition'; import { slide } from 'svelte/transition';
import { resolve } from '$app/paths'; import { resolve } from '$app/paths';
import logo from '$lib/assets/round-logo.svg'; import logo from '$lib/assets/round-logo.svg';
import { IconArrowsExchange, IconSettings } from '@tabler/icons-svelte'; import { IconArrowsExchange, IconSettings } from '@tabler/icons-svelte';
// data.route contains: routeStart, routeEnd, routeId, elecStart, elecEnd, routeDetail[] // data.route contains: routeStart, routeEnd, routeId, elecStart, elecEnd, routeDetail[]
export let data; let { data } = $props();
let reversed = false; // Reverses Array, and passes value down to children let activeCrs = $state<string | null>(null);
let isModalOpen = $derived(activeCrs !== null);
let visibleTypes = { function openStationModal(crs: string) {
activeCrs = crs;
}
function closeStationModal() {
activeCrs = null;
}
let reversed = $state(false); // Reverses Array, and passes value down to children
let visibleTypes = $state({
station: true, station: true,
minorBridge: false, minorBridge: false,
bridge: true, bridge: true,
@@ -23,10 +35,10 @@
siteof: true, siteof: true,
junction: true, junction: true,
tunnel: true, tunnel: true,
crossing: true, crossing: true
}; });
let showFilters = false; let showFilters = $state(false);
// Toggle feature types // Toggle feature types
const toggleFilter = (type: string) => { const toggleFilter = (type: string) => {
@@ -38,31 +50,29 @@
const formatLabel = (str: string) => const formatLabel = (str: string) =>
str.replace(/([A-Z])/g, ' $1').replace(/^./, (s) => s.toUpperCase()); str.replace(/([A-Z])/g, ' $1').replace(/^./, (s) => s.toUpperCase());
$: processedFeatures = (() => { const processedFeatures = $derived.by(() => {
const list = reversed ? [...data.route.routeDetail].reverse() : [...data.route.routeDetail]; const list = reversed ? [...data.route.routeDetail].reverse() : [...data.route.routeDetail];
// Seed currentElec from the YAML header boundary
let currentElec = reversed ? data.route.elecEnd.elec : data.route.elecStart.elec; let currentElec = reversed ? data.route.elecEnd.elec : data.route.elecStart.elec;
return list.map((f) => { return list.map((f) => {
if (f.type === 'electrificationChange') { if (f.type === 'electrificationChange') {
// Transition state: this tile and everything after it
// adopts the new electrification.
currentElec = reversed ? f.from.elec : f.to.elec; currentElec = reversed ? f.from.elec : f.to.elec;
} }
return { return {
...f, ...f,
activeElec: currentElec activeElec: currentElec
}; };
}); });
})();
$: filteredFeatures = processedFeatures.filter((f) => {
return visibleTypes[f.type] ?? true;
}); });
const filteredFeatures = $derived(processedFeatures.filter((f) => visibleTypes[f.type] ?? true));
</script> </script>
{#if isModalOpen && activeCrs}
<StationInfo crs={activeCrs} onclose={closeStationModal} />
{/if}
<div class="map-layout"> <div class="map-layout">
<header class="top-nav"> <header class="top-nav">
<div class="nav-cluster"> <div class="nav-cluster">
@@ -76,8 +86,8 @@
{reversed ? data.route.routeEnd : data.route.routeStart} {reversed ? data.route.routeEnd : data.route.routeStart}
</h1> </h1>
<span class="secondary-station"> <span class="secondary-station">
<span class="route-stack-to"> <span class="route-stack-to"> to</span>
to</span> {reversed ? data.route.routeStart : data.route.routeEnd} {reversed ? data.route.routeStart : data.route.routeEnd}
</span> </span>
{/if} {/if}
</div> </div>
@@ -87,7 +97,9 @@
<button class="icon-btn" onclick={() => (reversed = !reversed)}> <button class="icon-btn" onclick={() => (reversed = !reversed)}>
<IconArrowsExchange /> <IconArrowsExchange />
</button> </button>
<button class="icon-btn" onclick={() => (showFilters = !showFilters)}> <IconSettings /> </button> <button class="icon-btn" onclick={() => (showFilters = !showFilters)}>
<IconSettings />
</button>
</div> </div>
</header> </header>
@@ -139,7 +151,12 @@
{#if f.type === 'continues'} {#if f.type === 'continues'}
<RouteEndLink feature={f} /> <RouteEndLink feature={f} />
{:else} {:else}
<RouteRow feature={f} activeElec={f.activeElec} {reversed} /> <RouteRow
feature={f}
activeElec={f.activeElec}
{reversed}
onShowInfo={openStationModal}
/>
{/if} {/if}
{/each} {/each}
</div> </div>
@@ -212,7 +229,7 @@
.route-stack { .route-stack {
display: flex; display: flex;
font-family: "urwgothic"; font-family: 'urwgothic';
flex-direction: column; flex-direction: column;
min-width: 0; min-width: 0;
margin-left: 0; margin-left: 0;
@@ -250,7 +267,7 @@
} }
@media (min-width: 536px) { @media (min-width: 536px) {
.primary-station { .primary-station {
font-size: 1.5rem; font-size: 1.5rem;
} }
.secondary-station { .secondary-station {

View File

@@ -1,19 +1,22 @@
import type { PageLoad } from '/$types'; import type { PageLoad } from '/$types';
import { error } from '@sveltejs/kit'; 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; const { slug } = params;
const path = `/src/lib/assets/route/${slug}.json`;
console.log(`Finding path: ${path}`);
if (!(path in mapDataFiles)) {
throw error(404, {
message: `Route ${slug} not found`
});
}
try { try {
const res = await fetch(`/mapFiles/json/${slug}.json`); const rawData = await mapDataFiles[path]();
if (!res.ok) {
throw error(404, {
message: `Route ${slug} not found`
});
}
const rawData = await res.json();
return { return {
route: rawData, route: rawData,
@@ -21,7 +24,6 @@ export const load: PageLoad = async ({ params, fetch }) => {
}; };
} catch (err) { } catch (err) {
console.error(`Error loading map ${slug}: `, err); console.error(`Error loading map ${slug}: `, err);
throw error(500, { throw error(500, {
message: `Failed to parse map data for ${slug}` message: `Failed to parse map data for ${slug}`
}); });

View File

@@ -1,6 +1,6 @@
routeStart: Paddington routeStart: Paddington
routeEnd: Reading routeEnd: Reading
routeId: 0001 routeId: '0001'
updated: 2026-02-09 updated: 2026-02-09
checked: 2026-02-09 checked: 2026-02-09
signallerStart: TVSC Paddington WS signallerStart: TVSC Paddington WS
@@ -156,8 +156,6 @@ routeDetail:
- type: siteof - type: siteof
name: Old Oak Common West name: Old Oak Common West
diverges: left
direction: up
description: Junction has been removed description: Junction has been removed
miles: 3 miles: 3
chains: 20 chains: 20
@@ -538,7 +536,7 @@ routeDetail:
- type: bridge - type: bridge
name: Station Road name: Station Road
positon: under position: under
category: minorRoad category: minorRoad
miles: 12 miles: 12
chains: 56 chains: 56

View File

@@ -1,8 +1,8 @@
routeStart: Reading routeStart: Reading
routeEnd: Bristol TM routeEnd: Bristol TM
routeId: 0002 routeId: '0002'
updated: 2026-02-04 updated: 2026-02-04
checked: checked: 2026-03-01
signallerStart: TVSC Reading WS signallerStart: TVSC Reading WS
signallerEnd: TVSC Temple Meads WS signallerEnd: TVSC Temple Meads WS
elecStart: elecStart:
@@ -33,8 +33,8 @@ routeDetail:
direction: down direction: down
name: Westbury Line Jn name: Westbury Line Jn
description: to Oxford Road Jn description: to Oxford Road Jn
goto: "0201" goto: '0210'
entryPoint: "oxford-road-jn" entryPoint: 'westbury-line-jn'
miles: 36 miles: 36
chains: 17 chains: 17
@@ -43,11 +43,17 @@ routeDetail:
direction: down direction: down
name: Caversham Road Jn name: Caversham Road Jn
description: Reading Feeder Main/Relief diverge and pass under Reading Viaduct to Oxford Rd Jn description: Reading Feeder Main/Relief diverge and pass under Reading Viaduct to Oxford Rd Jn
goto: "0201" goto: '0210'
entryPoint: "oxford-road-jn" entryPoint: 'oxford-road-jn'
miles: 36 miles: 36
chains: 22 chains: 22
- type: signallerChange
from: TVSC Reading WS (T)
to: TVSC West Junction WS (T)
miles: 36
chains: 36
- type: crossovers - type: crossovers
name: Reading High Level Jn name: Reading High Level Jn
description: Down Reading Festival Connects to Down Main description: Down Reading Festival Connects to Down Main
@@ -59,7 +65,578 @@ routeDetail:
direction: up direction: up
name: Reading West Jn name: Reading West Jn
description: to Oxford Road Junction (From relief lines only) description: to Oxford Road Junction (From relief lines only)
goto: "0201" goto: '0210'
entryPoint: "oxford-road-jn" entryPoint: 'oxford-road-jn'
miles: 37 miles: 37
chains: 17 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: 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 Oxford
goto: '0220'
entryPoint: didcot-north-jn
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
goto: '0220'
entryPoint: chester-line-jn
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
goto: '0220'
entryPoint: didcot-west-curve-jn
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
goto: '0260'
entryPoint: bathampton-jn
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

View File

@@ -0,0 +1 @@
# Bristol TM - Exeter SD

View File

@@ -0,0 +1,672 @@
routeStart: Westbury Line Jn
routeEnd: Cogload Jn
routeId: '0210'
updated: 2026-03-05
checked: 2026-03-05
signallerStart: TVSC Reading WS
signallerEnd: Exeter PSB
elecStart:
elec: 25kvac
eco: Didcot (TVSC)
elecEnd:
elec: none
routeDetail:
- type: continues
routeName: Reading - Bristol TM
routeId: '0002'
entryPoint: westbury-line-jn
- type: junction
name: Westbury Line Jn
diverges: left
direction: down
description: towards Didcot
goto: '0002'
entryPoint: westbury-line-jn
miles: 36
chains: 17
- type: signallerChange
from: TVSC Reading WS (T)
to: TVSC West Jn WS (T)
miles: 36
chains: 20
- type: junction
name: Oxford Road Jn
diverges: left
direction: up
description: to Caversham Rd Jn & Reading West Jn
goto: '0002'
entryPoint: caversham-road-jn
miles: 36
chains: 67
- type: station
name: Reading West
crs: rdw
miles: 36
chains: 75
- type: junction
name: Southcote Jn
diverges: right
direction: down
description: to Basingstoke
miles: 37
chains: 62
- type: signallerChange
from: TVSC West Jn WS (T)
to: TVSC Newbury WS (T)
miles: 38
chains: 75
- type: crossing
name: Drakes No.2 Crossing
kind: uwc
miles: 40
chains: 63
- type: loop
name: Theale Goods Loop (Up & Dn BiDi)
position: left
miles: 41
chains: 27
- type: station
name: Theale
crs: the
description: Temporary Platform 3 on Theale Goods Loop (OOU)
miles: 41
chains: 22
- type: siteof
name: Theale Sidings
description: Stone & Oil terminals
miles: 41
chains: 62
- type: crossing
name: Wigmore Lane Crossing
kind: foot
miles: 41
chains: 6
- type: loop
position: right
name: Down Towney Loop
miles: 43
chains: 50
- type: crossing
name: Towney Level Crossing
kind: uwc
miles: 44
chains: 11
- type: station
name: Aldermaston
crs: amt
miles: 44
chains: 61
- type: crossing
name: Wickham Knights Level Crossing
kind: omsl
miles: 46
chains: 16
- type: crossing
name: Midgham Level Crossing
kind: CCTV
description: CCTV by Colthrop
miles: 46
chains: 56
- type: station
name: Midgham
crs: mdg
miles: 46
chains: 59
- type: crossing
name: Compeday Level Crossing
kind: uwc
miles: 47
chains: 8
- type: crossing
name: Crannel's Level Crossing
kind: uwc
miles: 47
chains: 47
- type: crossing
name: Colthrop Level Crossing
kind: mcb
miles: 48
chains: 75
- type: station
name: Thatcham
crs: tha
miles: 49
chains: 45
- type: crossing
name: Thatcham Level Crossing
miles: 49
chains: 51
kind: CCTV
description: CCTV by Colthrop
- type: crossing
name: Widemeads Crossing
kind: foot
miles: 51
chains: 1
- type: crossovers
name: Newbury Racecource GF
description: Newbury Loop line & Engineers Sidings
miles: 52
chains: 13
- type: station
name: Newbury Racecourse
crs: nrc
miles: 52
chains: 31
- type: station
name: Newbury
crs: nby
miles: 53
chains: 6
- type: electrificationChange
from:
elec: 25kvac
eco: Didcot
to:
elec: none
miles: 53
chains: 42
- type: crossing
name: Hamstead Level Crossing
kind: CCTV
description: CCTV by Kintbury
miles: 56
chains: 9
- type: crossing
name: Wilderness Crossing
kind: foot
miles: 58
chains: 6
- type: station
name: Kintbury
crs: kit
miles: 58
chains: 38
- type: crossing
name: Kintbury Level Crossing
kind: mcb
miles: 58
chains: 42
- type: crossing
name: Brunsdon Lock Crossing
kind: foot
miles: 59
chains: 39
- type: loop
name: Hungerford Up Loop
position: left
miles: 60
chains: 50
- type: station
name: Hungerford
crs: hgd
miles: 61
chains: 43
- type: crossing
name: Hungerford Level Crossing
kind: CCTV
description: CCTV by Kintbury
miles: 61
chains: 47
- type: crossing
name: Stadlers Crossing
kind: foot
miles: 62
chains: 70
- type: crossing
name: Fairfield Crossing
kind: uwc
miles: 64
chains: 67
- type: crossing
name: Wansdyke Crossing
kind: uwc
miles: 66
chains: 2
- type: crossing
kind: foot
name: Bedwyn Crossing
miles: 66
chains: 2
- type: station
name: Bedwyn
crs: bdw
miles: 66
chains: 22
- type: junction
name: Bedwyn Turnback Siding
diverges: left
direction: down
miles: 66
chains: 40
- type: crossing
name: Church Crossing
miles: 66
chains: 55
kind: foot
- type: crossing
name: Beech Drive Crossing
kind: uwc
miles: 67
chains: 32
- type: crossing
name: Crofton Level Crossing
kind: r/g
miles: 68
chains: 4
- type: crossing
name: Ram Alley Crossing
kind: foot
miles: 71
chains: 25
- type: crossing
name: Milton Lilbourne Crossing
kind: foot
miles: 73
chains: 17
- type: crossing
name: Pewsey Crossing
kind: foot
miles: 75
chains: 0
- type: station
name: Pewsey
crs: pew
miles: 75
chains: 26
- type: crossing
name: Sharcott Crossing
kind: foot
miles: 76
chains: 33
- type: crossing
name: Manningford Crossing
kind: foot
miles: 76
chains: 69
- type: crossing
name: Frith Crossing
kind: foot
miles: 77
chains: 7
- type: crossing
name: Chard's Crossing
kind: foot
miles: 77
chains: 42
- type: crossing
name: Bottesford Crossing
miles: 78
chains: 43
kind: foot
- type: loop
position: both
name: Woodborough Goods Loops
description: Up Loop gives access to Sidings
miles: 79
chains: 0
- type: crossing
name: Beechingstoke Crossing
kind: foot
miles: 80
chains: 5
- type: crossing
name: Stoner Bridleway Crossing
kind: foot
miles: 82
chains: 4
- type: crossing
name: Stert Crossing
kind: foot
miles: 83
chains: 22
- type: crossing
name: Urchfont Crossing
kind: foot
miles: 83
chains: 43
- type: crossing
name: Easterton Crossing
kind: foot
miles: 85
chains: 42
- type: crossing
name: Parham Wood Crossing
kind: foot
miles: 85
chains: 59
- type: siteof
name: Lavington
description: Former station
miles: 86
chains: 50
- type: crossing
name: Edington Crossing
kind: foot
miles: 90
chains: 25
- type: signallerChange
from: TVSC Newbury WS (T)
to: Westbury PSB (W)
miles: 90
chains: 65
- type: crossing
name: Bratton Level Crossing
kind: uwc
miles: 92
chains: 56
- type: crossing
name: Bratton Crossing
kind: foot
miles: 93
chains: 12
- type: junction
name: Heywood Road Jn
diverges: left
direction: down
goto: '0260'
entryPoint: hawkeridge-jn
description: to East Loop Jn/Westbury North Jn/Hawkeridge Jn
miles: 94
chains: 45
- type: crossing
name: Penleigh Park
kind: msl
miles: 95
chains: 49
- type: crossing
name: Eden Vale Crossing
kind: foot
miles: 96
chains: 38
- type: junction
name: Fairwood Jn
description: to Westbury South Jn (Mileage Change)
diverges: left
direction: up
goto: '0260'
entryPoint: westbury-south-jn
miles: 97
chains: 2
- type: crossing
name: Masters Crossing
kind: uwc
miles: 111
chains: 53
- type: junction
name: Clink Road Jn
description: Frome Avoiding Lines to Blatchbridge Jn
miles: 114
chains: 44
diverges: right
direction: down
- type: junction
name: Frome North Jn
description: to Whatley Quarry
diverges: left
direction: down
miles: 115
chains: 19
- type: station
name: Frome
miles: 115
chains: 44
- type: crossing
name: River Frome Crossing
kind: foot
miles: 116
chains: 15
- type: junction
name: Blatchbridge Jn
diverges: right
direction: up
description: Frome Avoiding lines to Clink Road Jn
miles: 116
chains: 52
- type: crossing
name: Palmer's Lane Foot Crossing
kind: foot
miles: 118
chains: 45
- type: crossing
name: Singer's Foot Crossing
kind: foot
miles: 119
chains: 70
- type: junction
name: East Somerset Jn
diverges: left
direction: down
description: To Merehead Qurry & East Somerset Rly
miles: 120
chains: 73
- type: crossing
name: Denning's Crossing
kind: uwc
miles: 122
chains: 1
- type: crossing
name: Brewham Foot Crossing
kind: foot
miles: 123
chains: 60
- type: station
name: Bruton
miles: 126
chains: 9
- type: crossing
name: Ansford Foot Crossing
kind: foot
miles: 128
chains: 62
- type: station
name: Castle Cary
miles: 129
chains: 45
description: Plaftorm 3 to Yeovil Only
- type: junction
name: Castle Cary Jn
description: Up/Dn Weymouth to Yeovil
direction: down
diverges: right
goto: '2150'
entryPoint: castle-cary-jn
miles: 129
chains: 50
- type: crossing
name: Parsonage Farm Crossing
kind: uwc
miles: 117
chains: 10
- type: crossing
name: Lovington Foot Crossing
kind: foot
miles: 117
chains: 67
- type: crossing
name: Wheathill Foot Crossing
kind: foot
miles: 119
chains: 7
- type: crossing
name: Lydford-on-Fosse Foot Crossing
kind: foot
miles: 119
chains: 72
- type: junction
name: Somerton GF
diverges: left
direction: down
description: Siding
miles: 126
chains: 11
- type: crossing
name: Somerton No.1 Foot Crossing
kind: foot
miles: 126
chains: 15
- type: tunnel
name: Somerton Tunnel
tunnelType: whole
length: 0mi 1053yd
miles: 127
chains: 0
- type: signallerChange
from: Westbury PSB (W)
to: Exeter PSB (E)
miles: 127
chains: 27
- type: crossing
name: Windmill Lane Foot Crossing
kind: foot
miles: 128
chains: 50
- type: crossing
name: Somerton No.2 Foot Crossing
kind: foot
miles: 129
chains: 43
- type: crossing
name: Aller 1/1 Foot Crossing
kind: foot
miles: 132
chains: 16
- type: crossing
name: Holly Moor Crossing
kind: uwc
miles: 133
chains: 31
- type: crossing
kind: foot
name: Stanmoor Foot Crossing
miles: 133
chains: 70
- type: crossing
name: Athelney Level Crossing
kind: AHB
miles: 134
chains: 78
- type: crossing
name: Cutts Drove Crossing
kind: uwc
miles: 135
chains: 0
- type: crossing
name: Athelney Foot Crossing
kind: foot
miles: 135
chains: 21
- type: junction
name: Cogload Jn
diverges: left
direction: up
miles: 138
chains: 3
goto: '0003'
entryPoint: cogload-jn
- type: continues
routeName: Bristol TM - Exeter SD
routeId: '0003'
entryPoint: cogload-jn

View File

@@ -0,0 +1,189 @@
routeStart: Chester Line Jn
routeEnd: Oxford Station North Jn
routeId: '0220'
updated: 2026-07-01
checked: 2026-07-01
signallerStart: TVSC Didcot WS
signallerEnd: TVSC Oxford WS
elecStart:
elec: 25kvac
eco: Didcot (TVSC)
elecEnd:
elec: none
routeDetail:
- type: continues
routeName: Reading - Bristol TM
routeId: '0002'
entryPoint: chester-line-jn
- type: junction
miles: 54
chains: 20
name: Chester Line Jn
diverges: right
direction: down
goto: '0002'
entryPoint: chester-line-jn
description: to Foxhall Jn & Swindon
- type: siteof
name: ""
description: Only Dn Oxford electrified
miles: 54
chains: 40
- type: electrificationChange
miles: 53
chains: 42
from:
elec: 25kvac
eco: Didcot (TVSC)
to:
elec: none
- type: junction
miles: 53
chains: 51
name: Didcot West Curve Jn
description: Up & Dn Didcot West Curve to Foxhall Jn
goto: '0002'
entryPoint: foxhall-jn
diverges: right
direction: up
- type: junction
miles: 54
chains: 0
name: Didcot North Jn
description: Up & Dn Didcot Avoiding to Didcot East Jn
goto: '0002'
entryPoint: didcot-east-jn
diverges: left
direction: up
- type: crossing
kind: CCTV
name: Appleford LC
description: CCTV by TVSC Level Crossings WS
miles: 54
chains: 53
- type: junction
name: Appleford Junction
description: to Appleford Sidings
miles: 54
chains: 54
diverges: right
direction: down
- type: station
name: Appleford
miles: 55
chains: 16
crs: apf
- type: bridge
name: Appleford Viaduct
miles: 55
chains: 43
position: under
description: River Thames
category: waterway
- type: signallerChange
from: TVSC Didcot WS
to: TVSC Oxford WS
miles: 55
chains: 50
- type: station
name: Culham
crs: cum
miles: 56
chains: 17
- type: crossing
kind: foot
name: Nuneham Crossing
miles: 56
chains: 72
- type: bridge
name: Nuneham Viaduct
position: under
category: waterway
description: River Thames
miles: 57
chains: 29
- type: station
name: Radley
miles: 58
chains: 35
crs: rad
- type: crossing
kind: uwc
name: Manor Farm LC
miles: 60
chains: 49
- type: crossing
kind: uwc
name: Kennington LC
miles: 61
chains: 4
- type: junction
name: Kennington Jn
miles: 61
chains: 6
diverges: left
direction: up
description: Up/Dn Cowley to Morris Cowley
- type: loop
name: Up & Dn Kennington Goods Loops
position: both
miles: 61
chains: 23
- type: junction
name: Hinksey South
diverges: right
direction: down
miles: 61
chains: 52
description: to Hinksey Yard
- type: siteof
name: Hinskey Yard
miles: 62
chains: 09
- type: junction
name: Hinksey North
diverges: right
direction: up
description: to Hinksey Yard, Up Oxford Relief commences
miles: 62
chains: 64
- type: crossovers
name: Oxford Station South Jn
miles: 63
chains: 28
- type: station
name: Oxford
crs: oxf
miles: 63
chains: 41
- type: junction
name: Oxford Station North Jn
direction: down
diverges: both
description: to Oxford Down & Oxford Up Sidings
miles: 63
chains: 56

View File

@@ -1,8 +1,8 @@
routeStart: Swindon Junction routeStart: Swindon Junction
routeEnd: Standish Junction routeEnd: Standish Junction
routeId: 0230 routeId: '0230'
updated: 2026-02-11 updated: 2026-02-14
checked: checked: 2026-02-14
signallerStart: TVSC Swindon WS signallerStart: TVSC Swindon WS
signallerEnd: Gloucester PSB signallerEnd: Gloucester PSB
elecStart: elecStart:
@@ -20,7 +20,8 @@ routeDetail:
- type: junction - type: junction
name: Swindon Jn name: Swindon Jn
diverges: right diverges: right
goto: "0002" direction: down
goto: '0002'
entryPoint: swindon-jn entryPoint: swindon-jn
miles: 77 miles: 77
chains: 36 chains: 36
@@ -366,3 +367,404 @@ routeDetail:
name: Kemble name: Kemble
miles: 90 miles: 90
chains: 79 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'

View File

@@ -22,7 +22,7 @@ routeDetail:
direction: down direction: down
name: Wootton Basset Jn name: Wootton Basset Jn
description: to Chippenham & Bristol via Bath description: to Chippenham & Bristol via Bath
goto: "0002" goto: '0002'
entryPoint: wootton-bassett-jn entryPoint: wootton-bassett-jn
miles: 83 miles: 83
chains: 7 chains: 7
@@ -489,6 +489,8 @@ routeDetail:
diverges: left diverges: left
direction: up direction: up
name: Westerleigh Jn name: Westerleigh Jn
goto: '2420'
entryPoint: westerleigh-jn
miles: 107 miles: 107
chains: 14 chains: 14
description: Up/Dn Charfield towards Gloucester description: Up/Dn Charfield towards Gloucester

View File

@@ -0,0 +1,125 @@
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

View File

@@ -0,0 +1,259 @@
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
crs: wsb
miles: 109
chains: 64
- type: junction
name: Westbury South Jn
diverges: right
direction: down
description: Up/Dn Salisbury towards Warminster
goto: '0261'
entryPoint: 'westbury-south-jn'
miles: 110
chains: 7
- type: crossing
kind: foot
name: Dilton Marsh Crossing
miles: 110
chains: 50
- type: continues
routeName: to Fairwood Jn (Reading - Taunton)
routeId: '0210'
entryPoint: fairwood-jn

View File

@@ -0,0 +1 @@
# Southampton Ctl - Portsmouth Hbr

View File

@@ -0,0 +1 @@
# Westbury - Southampton Ctl

View File

@@ -0,0 +1 @@
# Bristol TM - Cardiff West Shunt

View File

@@ -0,0 +1 @@
# Castle Cary - Weymouth

View File

@@ -2,7 +2,7 @@ routeStart: Westerleigh Jn
routeEnd: Gloucester routeEnd: Gloucester
routeId: 2420 routeId: 2420
updated: 2026-02-11 updated: 2026-02-11
checked: checked: 2026-02-11
signallerStart: TVSC Swindon WS signallerStart: TVSC Swindon WS
signallerEnd: Gloucester PSB signallerEnd: Gloucester PSB
elecStart: elecStart:
@@ -10,3 +10,671 @@ elecStart:
eco: Didcot (TVSC) eco: Didcot (TVSC)
elecEnd: elecEnd:
elec: none 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'

View File

@@ -0,0 +1,738 @@
# 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

View File

@@ -0,0 +1 @@
# Gloucster - Malvern Wells

View File

@@ -0,0 +1 @@
# Romsey - Southampton Ctl via Easleigh

View File

@@ -0,0 +1 @@
# Easleigh - Fareham

View File

@@ -0,0 +1,446 @@
{
"$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
}
}
}

33
static/stations/amt.yaml Normal file
View File

@@ -0,0 +1,33 @@
name: Aldermaston
crs: amt
updated: 2026-03-11
checked: 2026-03-11
platforms:
- platformId: 1Up
platformLength: 115
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [2, 10]
- kind: IET9
doors: [2, 9]
- kind: IET10
doors: [2, 10]
- kind: DMU
max-car: 5
- platformId: 2Dn
platformLength: 115
signal: true
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 7]
- kind: IET9
doors: [1, 7]
- kind: IET10
doors: [1, 7]
- kind: DMU
max-car: 5

61
static/stations/apf.yaml Normal file
View File

@@ -0,0 +1,61 @@
name: Appleford
crs: apf
updated: 2026-07-01
checked: 2026-07-01
platforms:
- platformId: 1Up
platformLength: 76
signal: false
dispatch: false
stepFree: false
doorPattern:
- kind: IET5
doors: [1, 6]
- kind: IET9
doors: [1, 6]
- kind: IET10
doors: [1, 6]
- kind: DMU
max-car: 5
- platformId: 2Dn
platformLength: 76
signal: false
dispatch: false
stepFree: false
doorPattern:
- kind: IET5
doors: [1, 6]
- kind: IET9
doors: [1, 6]
- kind: IET10
doors: [1, 6]
- kind: DMU
max-car: 5
- platformId: 1Dn
platformLength: 76
signal: false
dispatch: false
stepFree: false
doorPattern:
- kind: IET5
doors: [1, 6]
- kind: IET9
doors: [1, 6]
- kind: IET10
doors: [1, 6]
- kind: DMU
max-car: 5
- platformId: 2Up
platformLength: 76
signal: false
dispatch: false
stepFree: false
doorPattern:
- kind: IET5
doors: [1, 6]
- kind: IET9
doors: [1, 6]
- kind: IET10
doors: [1, 6]
- kind: DMU
max-car: 5

33
static/stations/bdw.yaml Normal file
View File

@@ -0,0 +1,33 @@
name: Bedwyn
crs: bdw
updated: 2026-03-11
checked: 2026-03-11
platforms:
- platformId: 1Dn
platformLength: 121
signal: true
stepFree: true
dispatch: false
doorPattern:
- kind: IET5
doors: [1, 9]
- kind: IET9
doors: [1, 9]
- kind: IET10
doors: [1, 9]
- kind: DMU
max-car: 5
- platformId: 2Up
platformLength: 123
signal: true
stepFree: true
dispatch: false
doorPattern:
- kind: IET5
doors: [2, 10]
- kind: IET9
doors: [2, 10]
- kind: IET10
doors: [2, 10]
- kind: DMU
max-car: 5

61
static/stations/cum.yaml Normal file
View File

@@ -0,0 +1,61 @@
name: Culham
crs: cum
updated: 2026-07-01
checked: 2026-07-01
platforms:
- platformId: 1Up
platformLength: 117
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [4, 6]
- kind: IET9
doors: [4, 6]
- kind: IET10
doors: [4, 6]
- kind: DMU
max-car: 5
- platformId: 2Dn
platformLength: 77
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 6]
- kind: IET9
doors: [1, 6]
- kind: IET10
doors: [1, 6]
- kind: DMU
max-car: 3
- platformId: 1Dn
platformLength: 117
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 4]
- kind: IET9
doors: [1, 4]
- kind: IET10
doors: [1, 4]
- kind: DMU
max-car: 5
- platformId: 2Up
platformLength: 77
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 6]
- kind: IET9
doors: [1, 6]
- kind: IET10
doors: [1, 6]
- kind: DMU
max-car: 3

33
static/stations/hgd.yaml Normal file
View File

@@ -0,0 +1,33 @@
name: Hungerford
crs: hgd
updated: 2026-03-11
checked: 2026-03-11
platforms:
- platformId: 1Up
platformLength: 153
signal: false
stepFree: true
dispatch: false
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [8, 18]
- kind: IET10
doors: [9, 20]
- kind: DMU
max-car: 6
- platformId: 2Dn
platformLength: 150
signal: false
stepFree: true
dispatch: false
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 11]
- kind: IET10
doors: [1, 11]
- kind: DMU
max-car: 6

33
static/stations/kit.yaml Normal file
View File

@@ -0,0 +1,33 @@
name: Kintbury
crs: kit
updated: 2026-03-11
checked: 2026-03-11
platforms:
- platformId: 1Dn
platformLength: 105
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [2, 9]
- kind: IET9
doors: [2, 9]
- kind: IET10
doors: [2, 9]
- kind: DMU
max-car: 4
- platformId: 2Up
platformLength: 106
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [4, 10]
- kind: IET9
doors: [12, 18]
- kind: IET10
doors: [14, 20]
- kind: DMU
max-car: 4

33
static/stations/mdg.yaml Normal file
View File

@@ -0,0 +1,33 @@
name: Midgham
crs: mdg
updated: 2026-03-11
checked: 2026-03-11
platforms:
- platformId: 1Dn
platformLength: 120
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [4, 10]
- kind: IET9
doors: [4, 10]
- kind: IET10
doors: [4, 10]
- kind: DMU
max-car: 5
- platformId: 2Up
platformLength: 117
signal: true
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 7]
- kind: IET9
doors: [1, 7]
- kind: IET10
doors: [1, 7]
- kind: DMU
max-car: 5

80
static/stations/nby.yaml Normal file
View File

@@ -0,0 +1,80 @@
name: Newbury
crs: nby
updated: 2026-03-11
checked: 2026-03-11
platforms:
- platformId: 1Dn
platformLength: 291
signal: true
dispatch: true
dispatchNote: Staffed 06:00-21:00
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 18]
- kind: IET10
doors: [1, 20]
- kind: DMU
max-car: 12
- platformId: 1Up
platformLength: 291
signal: true
dispatch: true
dispatchNote: Staffed 06:00-21:00
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 18]
- kind: IET10
doors: [1, 20]
- kind: DMU
max-car: 12
- platformId: 2Dn
platformLength: 327
signal: true
dispatch: true
dispatchNote: Staffed 06:00-21:00
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 18]
- kind: IET10
doors: [1, 20]
- kind: DMU
max-car: 14
- platformId: 2Up
platformLength: 327
signal: true
dispatch: true
dispatchNote: Staffed 06:00-21:00
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 18]
- kind: IET10
doors: [1, 20]
- kind: DMU
max-car: 14
- platformId: 3
platformLength: 129
signal: true
dispatch: true
dispatchNote: No more than 5-car IET permitted
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [0, 0]
- kind: IET10
doors: [0, 0]
- kind: DMU
max-car: 5

89
static/stations/nrc.yaml Normal file
View File

@@ -0,0 +1,89 @@
name: Newbury Racecourse
crs: nrc
updated: 2026-03-11
checked: 2026-03-11
platforms:
- platformId: 1Up
platformLength: 89
signal: true
dispatch: false
stepFree: false
doorPattern:
- kind: IET5
doors: [1, 6]
- kind: IET9
doors: [1, 6]
- kind: IET10
doors: [1, 6]
- kind: DMU
max-car: 4
- platformId: 1Dn
platformLength: 89
signal: false
dispatch: false
stepFree: false
doorPattern:
- kind: IET5
doors: [1, 6]
- kind: IET9
doors: [1, 6]
- kind: IET10
doors: [1, 6]
- kind: DMU
max-car: 4
- platformId: 2Up
platformLength: 74
signal: true
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [4, 9]
- kind: IET9
doors: [4, 9]
- kind: IET10
doors: [4, 9]
- kind: DMU
max-car: 4
- platformId: 2Dn
platformLength: 74
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [4, 9]
- kind: IET9
doors: [4, 9]
- kind: IET10
doors: [4, 9]
- kind: DMU
max-car: 4
- platformId: 3Up
platformLength: 225
signal: true
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [2, 10]
- kind: IET9
doors: [2, 15]
- kind: IET10
doors: [2, 16]
- kind: DMU
max-car: 9
- platformId: 3Dn
platformLength: 225
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [2, 10]
- kind: IET9
doors: [2, 15]
- kind: IET10
doors: [2, 16]
- kind: DMU
max-car: 9

33
static/stations/pew.yaml Normal file
View File

@@ -0,0 +1,33 @@
name: Pewsey
crs: pew
updated: 2026-03-11
checked: 2026-03-11
platforms:
- platformId: 1Dn
platformLength: 170
signal: false
stepFree: true
dispatch: false
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [2, 15]
- kind: IET10
doors: [2, 15]
- kind: DMU
max-car: 7
- platformId: 2Up
platformLength: 177
signal: true
stepFree: true
dispatch: false
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [2, 15]
- kind: IET10
doors: [2, 15]
- kind: DMU
max-car: 7

61
static/stations/rad.yaml Normal file
View File

@@ -0,0 +1,61 @@
name: Radley
crs: rad
updated: 2026-07-01
checked: 2026-07-01
platforms:
- platformId: 1Up
platformLength: 158
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 11]
- kind: IET10
doors: [1, 11]
- kind: DMU
max-car: 6
- platformId: 2Dn
platformLength: 158
signal: false
dispatch: false
stepFree: false
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 11]
- kind: IET10
doors: [1, 11]
- kind: DMU
max-car: 6
- platformId: 1Dn
platformLength: 158
signal: true
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 11]
- kind: IET10
doors: [1, 11]
- kind: DMU
max-car: 6
- platformId: 2Up
platformLength: 158
signal: true
dispatch: false
stepFree: false
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 11]
- kind: IET10
doors: [1, 11]
- kind: DMU
max-car: 6

47
static/stations/rdw.yaml Normal file
View File

@@ -0,0 +1,47 @@
name: Reading West
crs: rdw
updated: 2026-03-12
checked: 2026-03-12
platforms:
- platformId: 1Dn
platformLength: 278
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 18]
- kind: IET10
doors: [1, 20]
- kind: DMU
max-car: 12
- platformId: 1Up
platformLength: 278
signal: true
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1,10]
- kind: IET9
doors: [1,18]
- kind: IET10
doors: [1,20]
- kind: DMU
max-car: 12
- platformId: 2Up
platformLength: 158
signal: true
dispatch: false
stepFree: false
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 12]
- kind: IET10
doors: [1, 12]
- kind: DMU
max-car: 6

View File

@@ -0,0 +1,101 @@
{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"required": [],
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "The full name of the station"
},
"crs": {
"type": "string",
"description": "The CRS code of the station"
},
"updated": {
"type": "string",
"format": "date",
"description": "Date the data was last updated"
},
"checked": {
"type": "string",
"format": "date",
"description": "Date the data was last checked for accuracy"
},
"platforms": {
"type": "array",
"items": {
"platformInfo": {
"type": "object",
"properties": {
"platformId": {
"type": "string",
"description": "The number or letter of the platform"
},
"platformDescription": {
"type": "string",
"description": "Describe platforms location - Up/Dn line for example"
},
"platformStepFree": {
"type": "boolean",
"description": "Is step free access available to this platform"
},
"platformStepFreeNote": {
"type": "string",
"description": "Notes about step free access to this platform"
},
"platformLength": {
"type": "number",
"description": "Length of the platform in metres"
},
"carStop": {
"type": "array",
"items": {
"carStopDetail": {
"type": "string",
"trainType": {
"type": "string",
"description": "The type of train described in this entry"
},
"platformedCoaches": {
"type": "number",
"description": "The number of coaches fully platformed at the platform"
},
"platformedNotes": {
"type": "string",
"description": "Notes regarding platformed coaches, additional doors, front/rear etc."
}
}
}
},
"departUp": {
"type": "boolean",
"description": "Can a train depart in the Up direction"
},
"departDown": {
"type": "boolean",
"description": "Can a train depart in the down direction"
},
"signalUp": {
"type": "boolean",
"description": "Is there a starting signal in the Up direction"
},
"signalDown": {
"type": "boolean",
"description": "Is there a starting signal in the Down direction"
},
"dispatch": {
"type": "boolean",
"description": "Are dispatch staff present on this platform"
},
"dispatchNote": {
"type": "string",
"description": "Notes about dispatch arrangements"
}
}
}
}
},
"definitions": {}
}
}

33
static/stations/tha.yaml Normal file
View File

@@ -0,0 +1,33 @@
name: Thatcham
crs: tha
updated: 2026-03-11
checked: 2026-03-11
platforms:
- platformId: 1Dn
platformLength: 168
signal: true
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 12]
- kind: IET10
doors: [1, 12]
- kind: DMU
max-car: 7
- platformId: 2Up
platformLength: 168
signal: true
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [7, 18]
- kind: IET10
doors: [9, 20]
- kind: DMU
max-car: 7

46
static/stations/the.yaml Normal file
View File

@@ -0,0 +1,46 @@
name: Theale
crs: the
updated: 2026-03-11
checked: 2026-03-11
platforms:
- platformId: 1Up
platformLength: 168
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 13]
- kind: IET10
doors: [1, 13]
- kind: DMU
max-car: 7
- platformId: 2Dn
platformLength: 168
signal: false
dispatch: false
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 13]
- kind: IET10
doors: [1, 13]
- kind: DMU
max-car: 7
- platformId: 3
platformLength: 153
signal: true
dispatch: false
dispatchNote: Use must be specially authorised
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 11]
- kind: IET10
doors: [1, 11]

64
static/stations/wsb.yaml Normal file
View File

@@ -0,0 +1,64 @@
name: Westbury
crs: wsb
updated: 2026-03-12
checked: 2026-03-12
platforms:
- platformId: 1Up
platformLength: 224
signal: true
dispatch: true
dispatchNote: No dispatch for trains fewer than 5-car
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 17]
- kind: IET10
doors: [1, 17]
- kind: DMU
max-car: 9
- platformId: 1Dn
platformLength: 224
signal: true
dispatch: true
dispatchNote: No dispatch for trains fewer than 5-car
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [2, 18]
- kind: IET10
doors: [2, 18]
- kind: DMU
max-car: 9
- platformId: 2BiDi
platformLength: 315
signal: true
dispatch: true
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 18]
- kind: IET10
doors: [1, 20]
- kind: DMU
max-car: 13
- platformId: 3BiDi
platformLength: 295
signal: true
dispatch: true
stepFree: true
doorPattern:
- kind: IET5
doors: [1, 10]
- kind: IET9
doors: [1, 18]
- kind: IET10
doors: [1, 20]
- kind: DMU
max-car: 12