Skip to content

Commit

Permalink
Parse maxweightrating
Browse files Browse the repository at this point in the history
  • Loading branch information
otbutz committed Apr 26, 2024
1 parent 7879bf3 commit d6b03dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
public class OSMMaxWeightParser implements TagParser {

// do not include OSM tag "height" here as it has completely different meaning (height of peak)
private static final List<String> MAX_WEIGHT_TAGS = Arrays.asList("maxweight", "maxweightrating:hgv", "maxgcweight"/*abandoned*/);
private static final List<String> MAX_WEIGHT_TAGS = Arrays.asList("maxweight", "maxweightrating", "maxweightrating:hgv", "maxgcweight"/*abandoned*/);
private static final List<String> HGV_RESTRICTIONS = OSMRoadAccessParser.toOSMRestrictions(TransportationMode.HGV).stream()
.map(e -> e + ":conditional").collect(Collectors.toList());
private final DecimalEncodedValue weightEncoder;
Expand Down

0 comments on commit d6b03dd

Please sign in to comment.