Skip to main content
May 22, 2026 11 min read Highway Design

ERA 2013 Highway Design Standards: A Guide to Ethiopian Road Classes and Geometric Constraints

An overview of Ethiopian Roads Administration (ERA) design guidelines, detailing functional road classes, terrain classifications, and geometric speed thresholds.

Road design in Ethiopia is governed by the **ERA Highway Design Manual 2013**. This manual defines design speed thresholds, minimum horizontal radii, maximum gradients, and safety clearances based on functional classes and terrain categories.

Understanding these specifications is key to ensuring that geometric designs comply with local road standards.

1. ERA Road Classes (DS1 to DS10)

Roads are classified from DS1 (trunk roads with high traffic) to DS10 (rural roads with low traffic volume):

Road ClassTraffic (AADT)Flat Speed (km/h)Mountain Speed (km/h)Surface Type
DS1 (Expressway)> 15,00012070Asphalt Concrete
DS3 (Trunk Highway)1,000 - 3,00010050Asphalt Concrete
DS5 (Collector Road)300 - 1,0008540Double Bituminous (DBST)
DS8 (Feeder Road)75 - 1506030Gravel Surface

2. Geometric Speed Checker Code

This JavaScript code checks whether a design radius complies with the minimum requirement for the specified road class:

function checkMinRadius(roadClass, designSpeed, radius) {
  // Standard ERA minimum radius lookup table
  const minRadii = {
    "DS1": { 120: 650, 100: 450, 80: 250 },
    "DS3": { 100: 395, 80: 230, 50: 85 },
    "DS5": { 85: 270, 70: 175, 40: 50 }
  };
  
  const classLimits = minRadii[roadClass];
  if (!classLimits) return { pass: true, msg: "Class standard not constrained." };
  
  const minRequired = classLimits[designSpeed];
  if (!minRequired) return { pass: true, msg: "Speed standard not constrained." };
  
  return {
    pass: radius >= minRequired,
    required: minRequired,
    msg: radius >= minRequired ? "Valid Radius" : "Warning: Falls below minimum required radius!"
  };
}

Integrating these standard lookup tables helps check for design compliance during the planning stages.

Yonatan Abrham

Highway Design Engineer | BIM/Civil 3D Specialist | Aspiring Project Manager | Interested in AI & Technology

PhoneLinkedInFacebookInstagramTwitterYouTubeTikTok

© 2026 Highway Design Automation Suite. Built for Civil Engineers.

AdSense Disclosure: Third-party vendors, including Google, use cookies to serve ads based on user visits to this website. You may opt out of personalized advertising by visiting Google Ads Settings.