Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
8989f17
update neighbor connection copy
noah-severyn Feb 28, 2026
ef12b73
move capacities and speeds to the tech specs
noah-severyn Feb 28, 2026
96ee47e
update teaser image
noah-severyn Feb 28, 2026
e469174
tweaks to intro + installation + basics section
noah-severyn Mar 1, 2026
7ea3a7a
Add WRC/MRC compatibility
noah-severyn Mar 1, 2026
2548ef6
update diagonals and curves section
noah-severyn Mar 1, 2026
134e50e
update qcx section
noah-severyn Mar 1, 2026
753dbf0
remove `content\images`
noah-severyn Mar 1, 2026
943b9a0
update ramp interface section
noah-severyn Mar 2, 2026
7c2a04d
update quickchange section
noah-severyn Mar 5, 2026
342c50a
update lhd/rhd description
noah-severyn Mar 7, 2026
951048e
update flexheight transitions
noah-severyn Mar 8, 2026
69adcb3
put list of pieces into collapsible details panel
noah-severyn Mar 8, 2026
d6ebb6a
add details shortcode argument for a deprecated or legacy badge
noah-severyn Mar 8, 2026
50a0431
add note explaining shortcode arguments
noah-severyn Mar 8, 2026
d303559
update width transition sections
noah-severyn Mar 8, 2026
af8ed91
update network transition section
noah-severyn Mar 8, 2026
5b0a1fc
update farrhw sections
noah-severyn Mar 11, 2026
b8a7a34
update cosmetic pieces
noah-severyn Mar 11, 2026
867c53b
update tunnels section
noah-severyn Mar 11, 2026
54adb6a
update bridges section
noah-severyn Mar 12, 2026
729b033
added overview and development history section
noah-severyn Mar 12, 2026
d3c32ee
misc updates
noah-severyn Mar 12, 2026
9b4693d
removed unused files
noah-severyn Mar 12, 2026
10643cd
update copyright date
noah-severyn Mar 12, 2026
bfdd6d1
update volleyball section
noah-severyn Mar 14, 2026
a586db4
update flexspui section
noah-severyn Mar 14, 2026
66dd1a5
update diverging diamond section
noah-severyn Mar 14, 2026
4b8d64f
misc fixes to headings
noah-severyn Mar 14, 2026
fbd9e4b
removed images
noah-severyn Mar 14, 2026
62ad781
move neighbor connection images to subfolder
noah-severyn Mar 14, 2026
699c1f8
Changed headings under 'List of Menu Items' from H3 → H4
noah-severyn Mar 14, 2026
94ea7a6
added nos.17 to the nam doc credits
noah-severyn Mar 14, 2026
9129186
update name `realhighway-mod`→`realhighway`
noah-severyn Mar 14, 2026
23c3d12
move rhw bridges section to bridges page
noah-severyn Mar 14, 2026
6605f37
update Italian translation
noah-severyn Mar 14, 2026
a72dc25
update flex turn lanes section
noah-severyn Mar 15, 2026
5d7c09f
Update hugo version
noah-severyn Mar 15, 2026
09f737e
fix link
noah-severyn Mar 18, 2026
93a84ec
remove badges from toc headers
noah-severyn Mar 18, 2026
3493f3c
add r3 draggable instructions
noah-severyn Mar 21, 2026
0411045
remove 'work in progress' label
noah-severyn Mar 21, 2026
f1df142
update r3 draggable images
noah-severyn Mar 21, 2026
99d569f
added mis ramp dri patterns
noah-severyn Mar 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 35 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,31 @@ There are a handful of Hugo shortcodes that can be used to make developing docum

Shortcodes are written in the `{{< SHORTCODE >}}` syntax. However there may be some cases where you need to use a particular shortcode inside an automatically-generated heading. For these, you will need to use the `{{% SHORTCODE %}}` syntax.

Some shortcodes take arguments which can be used to customize their content or appearance.
Depending on how the shortcode is set up, arguments may either be relative (specified one after each other, in order), or named.
Named arguments are useful for clarity, or if you only wish to specify some arguments to the shortcode, not all.
In a single shortcode, you cannot mix and match relative and named arguments.

``` c#
// relative arguments
{{< shortcode "value1" "value2" "value3">}}

// named arguments
{{< shortcode arg1="value1" arg2="value2" arg3="value3">}}
{{< shortcode arg1="value1" arg3="value3">}}

// invalid
{{< shortcode "value1" arg3="value3">}}
```

#### Alert

Shortcode:
```
{{< alert context="CONTEXT" text="This is an example alert." >}}
```
The above shortcode uses a simple string to create the alert.

The following contexts are supported:
The above shortcode uses a simple string to create the alert.
These alerts are styled off of the [Bootstrap Alerts](https://getbootstrap.com/docs/5.3/components/alerts/), and the following contexts are supported:
* primary
* info
* success
Expand Down Expand Up @@ -140,14 +156,27 @@ A carousel is a slideshow for cycling through a series of images. List the image
```

#### Details
This shortcode is simply a wrapper for the HTML [details element](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/details). Specify the summary text and optionally choose whether to have the element open by default instead of closed.
This shortcode is simply a wrapper for the HTML [details element](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/details).
Specify the summary text.
Optionally choose whether to show a badge (currently `deprecated` and `legacy` are supported), and whether to have the element open by default instead of closed.

```
{{< details "Summary text" >}}
Content goes here. This will be hidden until the user clicks to expand.
{{< /details >}}

{{< details "Summary text" "open" >}}
{{< details "Summary text" "deprecated" >}}
Content goes here. This will be hidden until the user clicks to expand.
{{< /details >}}

{{< details summary="Summary text" badge="deprecated" >}}
Content goes here. This will be hidden until the user clicks to expand.
{{< /details >}}
```

To specify the state without a badge, you must use named arguments:
```
{{< details summary="Summary text" state="open" >}}
This content will be visible by default because state is set to "open".
{{< /details >}}
```
Expand Down Expand Up @@ -270,6 +299,7 @@ MARKDOWN_TABLE
* h3ndofry
* jflann
* memo33
* nos.17
* Tarkus
* ulisse99

Expand Down
5 changes: 5 additions & 0 deletions assets/scss/common/_dark.scss
Original file line number Diff line number Diff line change
Expand Up @@ -583,3 +583,8 @@ $navbar-dark-active-color: $link-color-dark;
background: $body-overlay-dark;
border: 1px solid $body-overlay-dark;
}

[data-dark-mode] .img-invert-dark {
// Invert black → white, but keep the red unchanged
filter: invert(1) hue-rotate(180deg) saturate(500%);
}
4 changes: 2 additions & 2 deletions config/_default/params.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ defaultImage = "default-image.png" # put in `./assets/images/`
fillImage = "1270x740 Center" # normalize image size

# Footer
footer = "Copyright (c) 2008-2024 NAM Team"
footer = "Copyright © 2008-2026 NAM Team"

# Feed
copyRight = "Copyright (c) 2008-2024 NAM Team"
copyRight = "Copyright © 2008-2026 NAM Team"

# Alert
alert = false
Expand Down
10 changes: 0 additions & 10 deletions content/contributors/_index.it.md

This file was deleted.

10 changes: 0 additions & 10 deletions content/contributors/_index.md

This file was deleted.

2 changes: 1 addition & 1 deletion content/docs/feature-guides/automata-plugins/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The Automata Plugins are also referred as **Automata Controllers**, in the sense

## Automata Options
The Network Addon Mod provides a variety Automata Controllers to choose from, and each of them made from a combination of options which affect automata in a slightly different way. The two base options are:
* **Standard** - Maintains the default Maxis values for the quantity of automata and speed they visually travel over a network. The only exception is for the [RealHighway](/docs/feature-guides/realhighway-mod) network, which has had its speed increased to give more of an accurate representation of the speed the vehicles traveling at on a highway network.
* **Standard** - Maintains the default Maxis values for the quantity of automata and speed they visually travel over a network. The only exception is for the [RealHighway](/docs/feature-guides/realhighway) network, which has had its speed increased to give more of an accurate representation of the speed the vehicles traveling at on a highway network.

* **Radical** - Increases the speed of automata travel and the maximum amount of automata able to be visible at a given time.

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
73 changes: 70 additions & 3 deletions content/docs/feature-guides/bridges/index.it.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,79 @@
---
title : "Bridges"
description: ""
lead: ""
description: "Il NAM include un'ampia varietà di ponti per tutte le reti di trasporto."
lead: "Il NAM include un'ampia varietà di ponti per tutte le reti di trasporto e presenta decine di modelli e design personalizzati."
date: 2022-09-06T10:09:26+00:00
lastmod: 2022-09-06T10:09:26+00:00
draft: false
images: []
url: "docs/feature-guides/bridges"
---

This documentation has not yet been written.
{{< docstatus status="untranslated" >}}
{{< docstatus status="workinprogress" >}}

## Base Networks

The base networks include Street, Road, Avenue, One Way Road, Maxis Highways, Rail, and Elevated Rail.

## Override Networks

The override networks include High Speed Rail, [RealHighway](/docs/feature-guides/bridges/#rhw), and the Network Widening Mod.

### RealHighway {#rhw}

The NAM includes bridges for various [RealHighway](/docs/feature-guides/realhighway/) networks.
However, a hardcoded restriction in the game's terrain engine prevents bridges from being built without at least a one-tile separation between them, meaning some extra considerations must be taken to properly construct bridges:

* Bridges for RealHighway networks with separate carriageways (MIS Ramps, RHW-4, RHW-6S, RHW-8S, RHW-10S, and DDRHW-4) will have their traffic flow determined by the way in which the base network is dragged. Take note of the preview models to ensure you have built the bridge in the correct direction. These bridges use the **RealHighway** tool as expected.
* Bridges involving the multi tile S-type networks (RHW-8S, RHW-10S, RHW-12S) must be built with the **Maxis Ground Highway** tool instead of the RealHighway tool.
* Bridges for adjacent RHW-4 and RHW-6S networks are also built with the **Maxis Ground Highway** tool.
* Bridges involving the triple tile C-type networks (RHW-6C and RHW-8C) are **not possible**.

For the bridges that use the Maxis Highway as a base, there are overrides in place to seamlessly connect with the otherwise RealHighway-based networks. In order to create this smooth transition, ensure that only the end stub of the Maxis Highway network is showing at each end of the bridge. Then, simply drag each tile of the RealHighway override network into the Maxis Highway stubs. They will convert to match the RealHighway. This process is shown below.

{{< img-simple src="images/bridge-rhw-mhw-guide.jpg" >}}

{{< alert context="info" >}}
Currently the Viaduct style bridges are the only types that support network heights other than L0.
{{< /alert >}}

The following bridges are supported with the RealHighway tool:

{{< table class="table-bordered nam-compat-status align-middle w-auto" >}}
| Bridge Type | Preview | MIS | RHW-2 | RHW-3 | RHW-4 | RHW-6S | DDRHW-4 |
| ----------------------- | :---------------------------------------------------------------- | :---: | :---: | :---: | :----: | :----: | :-----: |
| Viaduct | <img src="images/bridge-rhw-single-viaduct.jpg"> | Yes | Yes | Yes | Yes | Yes | Yes |
| Red Deck Under Truss | <img src="images/bridge-rhw-single-red-deck-under-truss.jpg" > | No | Yes | Yes | Yes | No | No |
| Small Steel Arch | <img src="images/bridge-rhw-single-small-steel-arch.jpg" > | No | Yes | No | Yes | No | No |
| Plain | <img src="images/bridge-rhw-single-plain.jpg" > | No | Yes | No | Yes | No | No |
| Concrete Girder | <img src="images/bridge-rhw-single-concrete-girder.jpg" > | No | Yes | No | No | No | No |
| Steel Girder | <img src="images/bridge-rhw-single-steel-girder.jpg" > | No | No | No | Yes | No | No |
| Concrete Box Girder | <img src="images/bridge-rhw-single-concrete-box-grider.jpg" > | No | No | No | Yes | Yes | No |
| V-Shaped Steel Girder | <img src="images/bridge-rhw-single-v-shaped-steel-grider.jpg" > | No | Yes | No | Yes | No | No |
| Yellow Steel Box Girder | <img src="images/bridge-rhw-single-yellow-steel-box-girder.jpg" > | No | Yes | Yes | Yes | No | No |
| Green Over Deck Truss | <img src="images/bridge-rhw-single-green-over-deck-truss.jpg" > | No | Yes | Yes | Yes | No | No |
| Blue Suspension | <img src="images/bridge-rhw-single-blue-suspension.jpg" > | No | Yes | Yes | Yes | No | No |
{{< /table >}}

The following bridges are supported from the Ground Highway tool:

{{< table class="table-bordered nam-compat-status align-middle w-auto" >}}
| Bridge Type | Preview | RHW-4 | RHW-6S | RHW-8S | RHW-10S | RHW-12S |
| --------------------------- | :------------------------------------------------------------------- | :---: | :----: | :----: | :-----: | :-----: |
| Viaduct | <img src="images/bridge-rhw-double-viaduct.jpg"> | Yes | Yes | Yes | Yes | Yes |
| Cable Stayed | <img src="images/bridge-rhw-double-cable-stayed.jpg"> | No | No | No | Yes | No |
| Maxis Highway Override | <img src="images/bridge-rhw-double-maxis-hwy-override.jpg"> | Yes | No | No | No | No |
| Plain Compact Suspension | <img src="images/bridge-rhw-double-compact-suspension.jpg"> | Yes | No | No | No | No |
| Undertruss | <img src="images/bridge-rhw-double-undertruss.jpg"> | No | No | Yes | No | No |
| Large Concrete Arch | <img src="images/bridge-rhw-double-large-concrete-arch.jpg"> | No | No | No | Yes | No |
| Large Steel Arch | <img src="images/bridge-rhw-double-large-steel-arch.jpg"> | Yes | No | No | No | No |
| Compact Cable Stayed | <img src="images/bridge-rhw-double-compact-cable-stayed.jpg"> | No | Yes | No | No | No |
| Compact Steel Arch | <img src="images/bridge-rhw-double-compact-steel-arch.jpg"> | No | Yes | No | No | No |
| Steel Girder | <img src="images/bridge-rhw-double-steel-girder.jpg"> | Yes | No | No | No | No |
| Dual Steel Girder | <img src="images/bridge-rhw-double-dual-steel-grider.jpg"> | Yes | No | No | No | No |
| Compact Regular | <img src="images/bridge-rhw-double-compact-regular.jpg"> | No | Yes | No | No | No |
| Compact Concrete Box Girder | <img src="images/bridge-rhw-double-compact-concrete-box-girder.jpg"> | No | Yes | No | No | No |
| Red Steel Arch | <img src="images/bridge-rhw-double-red-steel-arch.jpg"> | No | No | No | Yes | Yes |
{{< /table >}}

71 changes: 68 additions & 3 deletions content/docs/feature-guides/bridges/index.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,77 @@
---
title : "Bridges"
description: ""
lead: ""
description: "The NAM includes a wide variety of bridges for all transportation networks."
lead: "The NAM includes a wide variety of bridges for all transportation networks, and features dozens of custom models and designs."
date: 2022-09-06T10:09:26+00:00
lastmod: 2022-09-06T10:09:26+00:00
draft: false
images: []
url: "docs/feature-guides/bridges"
---

This documentation has not yet been written.
{{< docstatus status="workinprogress" >}}

## Base Networks

The base networks include Street, Road, Avenue, One Way Road, Maxis Highways, Rail, and Elevated Rail.

## Override Networks

The override networks include High Speed Rail, [RealHighway](/docs/feature-guides/bridges/#rhw), and the Network Widening Mod.

### RealHighway {#rhw}

The NAM includes bridges for various [RealHighway](/docs/feature-guides/realhighway/) networks.
However, a hardcoded restriction in the game's terrain engine prevents bridges from being built without at least a one-tile separation between them, meaning some extra considerations must be taken to properly construct bridges:

* Bridges for RealHighway networks with separate carriageways (MIS Ramps, RHW-4, RHW-6S, RHW-8S, RHW-10S, and DDRHW-4) will have their traffic flow determined by the way in which the base network is dragged. Take note of the preview models to ensure you have built the bridge in the correct direction. These bridges use the **RealHighway** tool as expected.
* Bridges involving the multi tile S-type networks (RHW-8S, RHW-10S, RHW-12S) must be built with the **Maxis Ground Highway** tool instead of the RealHighway tool.
* Bridges for adjacent RHW-4 and RHW-6S networks are also built with the **Maxis Ground Highway** tool.
* Bridges involving the triple tile C-type networks (RHW-6C and RHW-8C) are **not possible**.

For the bridges that use the Maxis Highway as a base, there are overrides in place to seamlessly connect with the otherwise RealHighway-based networks. In order to create this smooth transition, ensure that only the end stub of the Maxis Highway network is showing at each end of the bridge. Then, simply drag each tile of the RealHighway override network into the Maxis Highway stubs. They will convert to match the RealHighway. This process is shown below.

{{< img-simple src="images/bridge-rhw-mhw-guide.jpg" >}}

{{< alert context="info" >}}
Currently the Viaduct style bridges are the only types that support network heights other than L0.
{{< /alert >}}

The following bridges are supported with the RealHighway tool:

{{< table class="table-bordered nam-compat-status align-middle w-auto" >}}
| Bridge Type | Preview | MIS | RHW-2 | RHW-3 | RHW-4 | RHW-6S | DDRHW-4 |
| ----------------------- | :---------------------------------------------------------------- | :---: | :---: | :---: | :----: | :----: | :-----: |
| Viaduct | <img src="images/bridge-rhw-single-viaduct.jpg"> | Yes | Yes | Yes | Yes | Yes | Yes |
| Red Deck Under Truss | <img src="images/bridge-rhw-single-red-deck-under-truss.jpg" > | No | Yes | Yes | Yes | No | No |
| Small Steel Arch | <img src="images/bridge-rhw-single-small-steel-arch.jpg" > | No | Yes | No | Yes | No | No |
| Plain | <img src="images/bridge-rhw-single-plain.jpg" > | No | Yes | No | Yes | No | No |
| Concrete Girder | <img src="images/bridge-rhw-single-concrete-girder.jpg" > | No | Yes | No | No | No | No |
| Steel Girder | <img src="images/bridge-rhw-single-steel-girder.jpg" > | No | No | No | Yes | No | No |
| Concrete Box Girder | <img src="images/bridge-rhw-single-concrete-box-grider.jpg" > | No | No | No | Yes | Yes | No |
| V-Shaped Steel Girder | <img src="images/bridge-rhw-single-v-shaped-steel-grider.jpg" > | No | Yes | No | Yes | No | No |
| Yellow Steel Box Girder | <img src="images/bridge-rhw-single-yellow-steel-box-girder.jpg" > | No | Yes | Yes | Yes | No | No |
| Green Over Deck Truss | <img src="images/bridge-rhw-single-green-over-deck-truss.jpg" > | No | Yes | Yes | Yes | No | No |
| Blue Suspension | <img src="images/bridge-rhw-single-blue-suspension.jpg" > | No | Yes | Yes | Yes | No | No |
{{< /table >}}

The following bridges are supported from the Ground Highway tool:

{{< table class="table-bordered nam-compat-status align-middle w-auto" >}}
| Bridge Type | Preview | RHW-4 | RHW-6S | RHW-8S | RHW-10S | RHW-12S |
| --------------------------- | :------------------------------------------------------------------- | :---: | :----: | :----: | :-----: | :-----: |
| Viaduct | <img src="images/bridge-rhw-double-viaduct.jpg"> | Yes | Yes | Yes | Yes | Yes |
| Cable Stayed | <img src="images/bridge-rhw-double-cable-stayed.jpg"> | No | No | No | Yes | No |
| Maxis Highway Override | <img src="images/bridge-rhw-double-maxis-hwy-override.jpg"> | Yes | No | No | No | No |
| Plain Compact Suspension | <img src="images/bridge-rhw-double-compact-suspension.jpg"> | Yes | No | No | No | No |
| Undertruss | <img src="images/bridge-rhw-double-undertruss.jpg"> | No | No | Yes | No | No |
| Large Concrete Arch | <img src="images/bridge-rhw-double-large-concrete-arch.jpg"> | No | No | No | Yes | No |
| Large Steel Arch | <img src="images/bridge-rhw-double-large-steel-arch.jpg"> | Yes | No | No | No | No |
| Compact Cable Stayed | <img src="images/bridge-rhw-double-compact-cable-stayed.jpg"> | No | Yes | No | No | No |
| Compact Steel Arch | <img src="images/bridge-rhw-double-compact-steel-arch.jpg"> | No | Yes | No | No | No |
| Steel Girder | <img src="images/bridge-rhw-double-steel-girder.jpg"> | Yes | No | No | No | No |
| Dual Steel Girder | <img src="images/bridge-rhw-double-dual-steel-grider.jpg"> | Yes | No | No | No | No |
| Compact Regular | <img src="images/bridge-rhw-double-compact-regular.jpg"> | No | Yes | No | No | No |
| Compact Concrete Box Girder | <img src="images/bridge-rhw-double-compact-concrete-box-girder.jpg"> | No | Yes | No | No | No |
| Red Steel Arch | <img src="images/bridge-rhw-double-red-steel-arch.jpg"> | No | No | No | Yes | Yes |
{{< /table >}}
Loading