We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5b27a0 commit 79198c7Copy full SHA for 79198c7
core/src/main/java/com/graphhopper/routing/ev/OrsSurface.java
@@ -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