Skip to content

Commit 79198c7

Browse files
author
Sascha Fendrich
committed
feat: add enum for OrsSurface encoded value
1 parent e5b27a0 commit 79198c7

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// ORS-GH MOD: additional class
2+
package com.graphhopper.routing.ev;
3+
4+
public enum OrsSurface {
5+
// Keep in sync with ORS documentation: surface.md
6+
UNKNOWN,
7+
PAVED,
8+
UNPAVED,
9+
ASPHALT,
10+
CONCRETE,
11+
METAL,
12+
WOOD,
13+
COMPACTED_GRAVEL,
14+
GRAVEL,
15+
DIRT,
16+
GROUND,
17+
ICE,
18+
PAVING_STONES,
19+
SAND,
20+
GRASS,
21+
GRASS_PAVER;
22+
23+
public static final String KEY = "ors_surface";
24+
}

0 commit comments

Comments
 (0)