Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 525da4a8 authored by Michael KRISPER's avatar Michael KRISPER
Browse files

Segments: Corrected error in lookup of vehicle height

parent 2c8a8d44
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,7 @@ namespace TUGraz.VectoCore.Models.Declaration
var rigidGVWrow = _segmentTable.AsEnumerable().FirstOrDefault(r => {
var massMin = r.ParseDouble("gvw_min").SI().Ton;
var massMax = r.ParseDouble("gvw_max").SI().Ton;
return new[] { "1", "2", "3", "4" }.Contains(r.Field<string>("vehiclecategory"))
return new[] { "1", "2", "3", "4" }.Contains(r.Field<string>("hdvclass"))
&& massMin <= grossVehicleMassRating && grossVehicleMassRating <= massMax;
});
if (rigidGVWrow != null)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment