Thanks for the shout-out, mindenjohn. My tram tracks were designed for European cities and catenary height -- no idea how that relates to US construction standards.
If you have the fantastic Sacramento Northern route from G-TraX, you can find a wide variety of American trolley related items in there.
You can edit the min. radii for any track rule quite easily if your route/project has its own track rule. In the track rule .bin file, scroll about halways down in RW Tools and look for this block:
- Code: Select all
<MainLineTrackLimits>
<iTrackRulesBlueprint-sCurvatureLimits>
<MaxSpeedTolerance d:type="sUInt32">100</MaxSpeedTolerance>
<MinRadius d:type="sUInt32">196</MinRadius>
</iTrackRulesBlueprint-sCurvatureLimits>
</MainLineTrackLimits>
<YardTrackLimits>
<iTrackRulesBlueprint-sCurvatureLimits>
<MaxSpeedTolerance d:type="sUInt32">40</MaxSpeedTolerance>
<MinRadius d:type="sUInt32">60</MinRadius>
</iTrackRulesBlueprint-sCurvatureLimits>
</YardTrackLimits>
<PassengerTrackLimits>
<iTrackRulesBlueprint-sCurvatureLimits>
<MaxSpeedTolerance d:type="sUInt32">70</MaxSpeedTolerance>
<MinRadius d:type="sUInt32">349</MinRadius>
</iTrackRulesBlueprint-sCurvatureLimits>
</PassengerTrackLimits>
<FreightTrackLimits>
<iTrackRulesBlueprint-sCurvatureLimits>
<MaxSpeedTolerance d:type="sUInt32">50</MaxSpeedTolerance>
<MinRadius d:type="sUInt32">231</MinRadius>
</iTrackRulesBlueprint-sCurvatureLimits>
</FreightTrackLimits>
This represents the four track types which you can assign to the tracks in the editor. The trackrule settings MinRadius determine the smallest radius at which each of the four track types is allowed to be placed in the editor. MaxSpeedTolerance is also very interesting as it determines the length of the transition curve with easements toggled on when placing tracks (higher value = longer, more gradual transitition curve)
The example above is from one of my routes where I've used the MinRadius settings to pre-set a few common turnout radii in US RR design practices.
Cheers,
Michael