DEV Community

Dylan Parker
Dylan Parker

Posted on

When youre riding in the rain, the last thing you want is a jacket that soaks through or restricts movement.

I spent last season testing different setups, and the biggest lesson was that visibility and protection shouldn't be an afterthought. That's why I wanted to break down a simple but effective approach to layering your gear for wet-weather touring—especially if you're using a high-vis armored jacket.

The core of my current setup is the Men's Waterproof High Vis Armored Motorcycle Jacket from Frishay. It's built with Cordura, has CE armor at the shoulders and elbows, and includes a thermal liner. But the real kicker is the high-visibility panels. In low light or heavy rain, being seen is just as critical as being dry.

Here's a quick code-style breakdown of my layering strategy:

# Pseudo-code for wet-weather layering
def ride_in_rain(baselayer, jacket, pants):
    if jacket.is_waterproof and jacket.has_thermal_lining:
        # Remove thermal liner for summer rain
        jacket.liner = "removed"
        # Add a thin merino wool base
        base_layer = "Merino 150"
        # Ensure armor is properly seated
        jacket.check_armor_position()
        # Maximize visibility
        jacket.high_vis_panels = True
        return "Comfortable and visible"
    else:
        return "Consider upgrading your jacket"
Enter fullscreen mode Exit fullscreen mode

The key is the thermal lining. In colder rain, you zip it in and add a moisture-wicking base. In warmer rain, you take it out and rely on the shell. The jacket's waterproof membrane handles the rest. I've found that pairing it with a good pair of waterproof over-pants keeps everything synced.

One tip: always test your jacket's armor placement before a long ride. The Frishay jacket has adjustable pockets, so spend five minutes making sure the pads sit over your joints, not sliding off.

Ride safe, stay visible, and don't compromise on gear. If you're curious, you can check out the jacket here: https://frishay.com/products/frishay-motorcycle-jacket-for-men-high-vis-armored-jacket-protection-cordura-waterproof-touring-thermal-lining-racing-jacket

What's your go-to rain setup? Drop your tips below.

Top comments (2)

Collapse
 
rock-randy profile image
Rock

Interesting perspective! I've noticed that starting with a clear goal really helps me stay focused when learning something new.

Collapse
 
frishay_ltd_a1987ef83aa1f profile image
Amelia

Interesting perspective — I've been experimenting with a similar approach and found that adding a small constraint actually helped my creativity rather than stifling it.