Move to 'updated' and 'checked' dates, rather than 'created' 'checked & updated'
This commit is contained in:
@@ -48,7 +48,7 @@ fs.readdirSync(inputDir).forEach((file) => {
|
|||||||
routeId: content.routeId || null,
|
routeId: content.routeId || null,
|
||||||
routeStart: content.routeStart || null,
|
routeStart: content.routeStart || null,
|
||||||
routeEnd: content.routeEnd || null,
|
routeEnd: content.routeEnd || null,
|
||||||
created: content.created || null,
|
updated: content.updated || null,
|
||||||
checked: content.checked || null,
|
checked: content.checked || null,
|
||||||
contents: Array.from(contentSet)
|
contents: Array.from(contentSet)
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -2,11 +2,12 @@
|
|||||||
export let feature: {
|
export let feature: {
|
||||||
routeName: string;
|
routeName: string;
|
||||||
routeId: string;
|
routeId: string;
|
||||||
|
entryPoint: string;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="link-wrapper">
|
<div class="link-wrapper">
|
||||||
<a href="/map/{feature.routeId}" class="wide-button">
|
<a href="/map/{feature.routeId}#{feature.entryPoint}" class="wide-button">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="header-row">
|
<div class="header-row">
|
||||||
<span class="sub-text">Go to</span>
|
<span class="sub-text">Go to</span>
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ export const components = {
|
|||||||
crossovers: Crossover,
|
crossovers: Crossover,
|
||||||
siteof: SiteOf,
|
siteof: SiteOf,
|
||||||
bridge: Bridge,
|
bridge: Bridge,
|
||||||
|
minorBridge: Bridge,
|
||||||
crossover: Crossover,
|
crossover: Crossover,
|
||||||
crossing: Crossing,
|
crossing: Crossing,
|
||||||
loop: Loop,
|
loop: Loop,
|
||||||
|
|||||||
@@ -84,9 +84,9 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="card-footer">
|
<div class="card-footer">
|
||||||
<span>Created on {formatDate(map.created)}</span>
|
<span>Updated: {formatDate(map.updated)}</span>
|
||||||
{#if map.checked}
|
{#if map.checked}
|
||||||
<span>• Checked & Updated on {formatDate(map.checked)}</span>
|
<span>• Checked: {formatDate(map.checked)}</span>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ export interface RouteMapIndex {
|
|||||||
routeId: string | number;
|
routeId: string | number;
|
||||||
routeStart: string;
|
routeStart: string;
|
||||||
routeEnd: string;
|
routeEnd: string;
|
||||||
created: string;
|
updated: string;
|
||||||
checked: string;
|
checked: string;
|
||||||
contents: string[];
|
contents: string[];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
|
|
||||||
let visibleTypes = {
|
let visibleTypes = {
|
||||||
station: true,
|
station: true,
|
||||||
|
minorBridge: false,
|
||||||
bridge: true,
|
bridge: true,
|
||||||
crossovers: true,
|
crossovers: true,
|
||||||
loop: true,
|
loop: true,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
routeStart: Paddington
|
routeStart: Paddington
|
||||||
routeEnd: Reading
|
routeEnd: Reading
|
||||||
routeId: 0001
|
routeId: 0001
|
||||||
created: 2026-02-04
|
updated: 2026-02-09
|
||||||
checked: 2026-02-09
|
checked: 2026-02-09
|
||||||
signallerStart: TVSC Paddington WS
|
signallerStart: TVSC Paddington WS
|
||||||
signallerEnd: TVSC Reading WS
|
signallerEnd: TVSC Reading WS
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
routeStart: Reading
|
routeStart: Reading
|
||||||
routeEnd: Bristol TM
|
routeEnd: Bristol TM
|
||||||
routeId: 0002
|
routeId: 0002
|
||||||
created: 2026-02-04
|
updated: 2026-02-04
|
||||||
checked:
|
checked:
|
||||||
signallerStart: TVSC Reading WS
|
signallerStart: TVSC Reading WS
|
||||||
signallerEnd: TVSC Temple Meads WS
|
signallerEnd: TVSC Temple Meads WS
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
routeStart: Wootton Bassett Junction
|
routeStart: Wootton Bassett Junction
|
||||||
routeEnd: Stoke Gifford Junction
|
routeEnd: Stoke Gifford Junction
|
||||||
routeId: 0240
|
routeId: 0240
|
||||||
created: 2026-02-10
|
updated: 2026-02-11
|
||||||
checked:
|
checked: 2026-02-11
|
||||||
signallerStart: TVSC Swindon WS
|
signallerStart: TVSC Swindon WS
|
||||||
signallerEnd: TVSC Stoke Gifford WS
|
signallerEnd: TVSC Stoke Gifford WS
|
||||||
elecStart:
|
elecStart:
|
||||||
@@ -17,6 +17,635 @@ routeDetail:
|
|||||||
entryPoint: wootton-bassett-junction
|
entryPoint: wootton-bassett-junction
|
||||||
routeId: '0002'
|
routeId: '0002'
|
||||||
|
|
||||||
|
- type: junction
|
||||||
|
diverges: right
|
||||||
|
direction: down
|
||||||
|
name: Wootton Basset Junction
|
||||||
|
description: to Chippenham & Bristol via Bath
|
||||||
|
miles: 83
|
||||||
|
chains: 7
|
||||||
|
|
||||||
|
- type: loop
|
||||||
|
name: Up Wootton Basset Goods Line
|
||||||
|
description: Loop spans junction
|
||||||
|
position: left
|
||||||
|
miles: 83
|
||||||
|
chains: 10
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
position: over
|
||||||
|
name: Bath Road
|
||||||
|
roadName: A3102
|
||||||
|
category: aroad
|
||||||
|
miles: 83
|
||||||
|
chains: 29
|
||||||
|
|
||||||
|
- type: crossovers
|
||||||
|
name: Wootton Basset West
|
||||||
|
miles: 84
|
||||||
|
chains: 7
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Whitehill Lane
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 84
|
||||||
|
chains: 13
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 84
|
||||||
|
chains: 39
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
position: over
|
||||||
|
name: Motorway
|
||||||
|
roadName: M4
|
||||||
|
category: motorway
|
||||||
|
miles: 84
|
||||||
|
chains: 50
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 85
|
||||||
|
chains: 15
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
position: over
|
||||||
|
name: Callow Hill
|
||||||
|
category: road
|
||||||
|
miles: 85
|
||||||
|
chains: 29
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 85
|
||||||
|
chains: 58
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Brinkworth Brooklands
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 86
|
||||||
|
chains: 75
|
||||||
|
|
||||||
|
- type: crossing
|
||||||
|
kind: foot
|
||||||
|
name: Brinkworth Foot Crossing
|
||||||
|
miles: 87
|
||||||
|
chains: 17
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
category: road
|
||||||
|
position: over
|
||||||
|
miles: 88
|
||||||
|
chains: 12
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 88
|
||||||
|
chains: 46
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: School Hill
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 88
|
||||||
|
chains: 66
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 89
|
||||||
|
chains: 9
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 89
|
||||||
|
chains: 29
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Idover Lane
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 89
|
||||||
|
chains: 46
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: The Street
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 89
|
||||||
|
chains: 70
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: River Avon
|
||||||
|
position: under
|
||||||
|
category: waterway
|
||||||
|
miles: 90
|
||||||
|
chains: 26
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 90
|
||||||
|
chains: 60
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 91
|
||||||
|
chains: 36
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Startley Road
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 91
|
||||||
|
chains: 50
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Rodbourne Lane
|
||||||
|
description: or 'Pound Hill'
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 92
|
||||||
|
chains: 2
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Cabbage Lane
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 92
|
||||||
|
chains: 28
|
||||||
|
|
||||||
|
- type: crossing
|
||||||
|
name: Kingway Barn Foot Crossing
|
||||||
|
kind: foot
|
||||||
|
miles: 93
|
||||||
|
chains: 7
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Kingway
|
||||||
|
position: under
|
||||||
|
category: aroad
|
||||||
|
roadName: A429
|
||||||
|
miles: 93
|
||||||
|
chains: 30
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 93
|
||||||
|
chains: 70
|
||||||
|
|
||||||
|
- type: loop
|
||||||
|
position: right
|
||||||
|
name: Down Hullavington Goods Loop
|
||||||
|
miles: 94
|
||||||
|
chains: 5
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
position: under
|
||||||
|
name: Court Farm
|
||||||
|
category: road
|
||||||
|
miles: 94
|
||||||
|
chains: 9
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
position: under
|
||||||
|
name: Bradfield Cottages
|
||||||
|
category: road
|
||||||
|
miles: 94
|
||||||
|
chains: 27
|
||||||
|
|
||||||
|
- type: loop
|
||||||
|
name: Up Hullavington Goods Loop
|
||||||
|
position: left
|
||||||
|
miles: 94
|
||||||
|
chains: 42
|
||||||
|
|
||||||
|
- type: crossovers
|
||||||
|
name: Hullavington
|
||||||
|
miles: 94
|
||||||
|
chains: 45
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Gills Hunting
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 94
|
||||||
|
chains: 62
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Aqueduct
|
||||||
|
position: over
|
||||||
|
category: stream
|
||||||
|
miles: 95
|
||||||
|
chains: 22
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Happy Lands
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 95
|
||||||
|
chains: 40
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Pig Lane
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 95
|
||||||
|
chains: 69
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Fosse Way
|
||||||
|
category: road
|
||||||
|
position: over
|
||||||
|
miles: 96
|
||||||
|
chains: 47
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Pipeline
|
||||||
|
category: pipeline
|
||||||
|
position: over
|
||||||
|
miles: 96
|
||||||
|
chains: 48
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Footbridge
|
||||||
|
position: over
|
||||||
|
category: foot
|
||||||
|
miles: 96
|
||||||
|
chains: 64
|
||||||
|
|
||||||
|
- type: tunnel
|
||||||
|
name: Alterton Tunnel
|
||||||
|
tunnelType: whole
|
||||||
|
length: 0mi 506yd
|
||||||
|
miles: 97
|
||||||
|
chains: 46
|
||||||
|
|
||||||
|
- type: signallerChange
|
||||||
|
from: TVSC Swindon WS (SW)
|
||||||
|
to: TVSC Stoke Gifford WS (BL)
|
||||||
|
miles: 98
|
||||||
|
chains: 0
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Footbridge
|
||||||
|
category: foot
|
||||||
|
position: over
|
||||||
|
miles: 98
|
||||||
|
chains: 2
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Footbridge
|
||||||
|
category: foot
|
||||||
|
positon: over
|
||||||
|
miles: 98
|
||||||
|
chains: 17
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Alderton Road
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 98
|
||||||
|
chains: 40
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 98
|
||||||
|
chains: 76
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 99
|
||||||
|
chains: 7
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Footbridge
|
||||||
|
category: foot
|
||||||
|
position: over
|
||||||
|
miles: 99
|
||||||
|
chains: 40
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Luckington Road
|
||||||
|
category: road
|
||||||
|
roadName: B4040
|
||||||
|
position: over
|
||||||
|
miles: 99
|
||||||
|
chains: 46
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Footbridge
|
||||||
|
category: foot
|
||||||
|
position: over
|
||||||
|
miles: 99
|
||||||
|
chains: 59
|
||||||
|
|
||||||
|
- type: siteof
|
||||||
|
name: Badminton
|
||||||
|
side: centre
|
||||||
|
miles: 100
|
||||||
|
chains: 1
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Station Road
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 100
|
||||||
|
chains: 4
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Footbridge
|
||||||
|
category: foot
|
||||||
|
position: over
|
||||||
|
miles: 100
|
||||||
|
chains: 33
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Aqueduct
|
||||||
|
position: over
|
||||||
|
category: stream
|
||||||
|
miles: 100
|
||||||
|
chains: 57
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Footbridge
|
||||||
|
category: foot
|
||||||
|
position: over
|
||||||
|
miles: 100
|
||||||
|
chains: 65
|
||||||
|
|
||||||
|
- type: tunnel
|
||||||
|
tunnelType: whole
|
||||||
|
length: 2mi 926yd
|
||||||
|
name: Chipping Sodbury Tunnel
|
||||||
|
miles: 102
|
||||||
|
chains: 21
|
||||||
|
description: 10 telephones on Up side
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
position: over
|
||||||
|
name: Footbridge
|
||||||
|
category: foot
|
||||||
|
miles: 103
|
||||||
|
chains: 63
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Frome Bridge
|
||||||
|
position: over
|
||||||
|
category: stream
|
||||||
|
miles: 103
|
||||||
|
chains: 75
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Colt's Green Bridge
|
||||||
|
category: road
|
||||||
|
position: over
|
||||||
|
miles: 104
|
||||||
|
chains: 19
|
||||||
|
|
||||||
|
- type: loop
|
||||||
|
name: Chipping Sodbury Goods Loop
|
||||||
|
position: left
|
||||||
|
description: Bidirectional with access to Chipping Sodbury Sidings
|
||||||
|
miles: 104
|
||||||
|
chains: 31
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
category: road
|
||||||
|
position: over
|
||||||
|
miles: 104
|
||||||
|
chains: 56
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Kingrove Lane
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 104
|
||||||
|
chains: 77
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Aqueduct
|
||||||
|
position: over
|
||||||
|
category: stream
|
||||||
|
miles: 105
|
||||||
|
chains: 18
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Dodington Road
|
||||||
|
category: road
|
||||||
|
position: over
|
||||||
|
miles: 105
|
||||||
|
chains: 19
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Aqueduct
|
||||||
|
category: stream
|
||||||
|
position: over
|
||||||
|
miles: 105
|
||||||
|
chains: 38
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Footbridge
|
||||||
|
category: foot
|
||||||
|
position: over
|
||||||
|
miles: 106
|
||||||
|
chains: 32
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Westerleigh Road
|
||||||
|
category: road
|
||||||
|
position: under
|
||||||
|
miles: 107
|
||||||
|
chains: 4
|
||||||
|
|
||||||
|
- type: junction
|
||||||
|
diverges: left
|
||||||
|
direction: up
|
||||||
|
name: Westerleigh Junction
|
||||||
|
miles: 107
|
||||||
|
chains: 14
|
||||||
|
description: Up/Dn Charfield towards Gloucester
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Westerleigh Branch
|
||||||
|
category: rail
|
||||||
|
position: under
|
||||||
|
miles: 107
|
||||||
|
chains: 15
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Dodmoor Farm
|
||||||
|
category: road
|
||||||
|
position: under
|
||||||
|
miles: 107
|
||||||
|
chains: 33
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
category: road
|
||||||
|
position: under
|
||||||
|
miles: 107
|
||||||
|
chains: 70
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Boxhenge Farm Lane
|
||||||
|
category: road
|
||||||
|
position: under
|
||||||
|
miles: 108
|
||||||
|
chains: 10
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: The Dramway
|
||||||
|
position: over
|
||||||
|
category: foot
|
||||||
|
miles: 108
|
||||||
|
chains: 25
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Henfield Road
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 107
|
||||||
|
chains: 52
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Bristol Road
|
||||||
|
category: aroad
|
||||||
|
position: under
|
||||||
|
roadName: A432
|
||||||
|
miles: 108
|
||||||
|
chains: 78
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Park Lane
|
||||||
|
position: under
|
||||||
|
category: road
|
||||||
|
miles: 109
|
||||||
|
chains: 27
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Upford Viaduct
|
||||||
|
positon: under
|
||||||
|
category: waterway
|
||||||
|
miles: 109
|
||||||
|
chains: 58
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Hicks Common Lane
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 109
|
||||||
|
chains: 71
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Down Road
|
||||||
|
category: road
|
||||||
|
position: over
|
||||||
|
miles: 110
|
||||||
|
chains: 15
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Mill Lane
|
||||||
|
category: road
|
||||||
|
position: under
|
||||||
|
miles: 110
|
||||||
|
chains: 24
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Winterbourne Viaduct
|
||||||
|
category: road
|
||||||
|
position: under
|
||||||
|
miles: 110
|
||||||
|
chains: 38
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Farm Bridge
|
||||||
|
category: road
|
||||||
|
position: under
|
||||||
|
miles: 110
|
||||||
|
chains: 48
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: M4 Motorway
|
||||||
|
category: motorway
|
||||||
|
roadName: M4
|
||||||
|
position: under
|
||||||
|
miles: 110
|
||||||
|
chains: 63
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Old Gloucester Road
|
||||||
|
category: road
|
||||||
|
roadName: B4427
|
||||||
|
position: under
|
||||||
|
miles: 110
|
||||||
|
chains: 70
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Curtis Lane
|
||||||
|
position: over
|
||||||
|
category: road
|
||||||
|
miles: 111
|
||||||
|
chains: 14
|
||||||
|
|
||||||
|
- type: crossovers
|
||||||
|
name: Stoke Gifford East Junction
|
||||||
|
miles: 111
|
||||||
|
chains: 20
|
||||||
|
|
||||||
|
- type: minorBridge
|
||||||
|
name: Pearson's Brick Yard
|
||||||
|
category: road
|
||||||
|
position: over
|
||||||
|
miles: 111
|
||||||
|
chains: 32
|
||||||
|
|
||||||
|
- type: station
|
||||||
|
name: Bristol Parkway
|
||||||
|
description: Stoke Gifford Dn Sidings on Down side
|
||||||
|
miles: 111
|
||||||
|
chains: 62
|
||||||
|
|
||||||
|
- type: bridge
|
||||||
|
name: Bristol Road
|
||||||
|
category: road
|
||||||
|
position: under
|
||||||
|
miles: 111
|
||||||
|
chains: 77
|
||||||
|
|
||||||
|
- type: junction
|
||||||
|
name: Stoke Gifford No.1 Junction
|
||||||
|
diverges: right
|
||||||
|
direction: down
|
||||||
|
description: Up/Dn Filton & Bristol TM
|
||||||
|
miles: 111
|
||||||
|
chains: 79
|
||||||
|
|
||||||
- type: continues
|
- type: continues
|
||||||
routeName: Bristol TM - Cardiff West Shunt
|
routeName: Bristol TM - Cardiff West Shunt
|
||||||
entryPoint: patchway-junction
|
entryPoint: patchway-junction
|
||||||
|
|||||||
Reference in New Issue
Block a user