OSMServer/OSMDatastructure/highwayType.cs

36 lines
641 B
C#
Raw Normal View History

namespace OSMDatastructure
2023-02-02 22:30:53 +01:00
{
2023-02-03 00:02:04 +01:00
public enum highwayType : byte
2023-02-02 22:30:53 +01:00
{
motorway,
trunk,
primary,
secondary,
tertiary,
unclassified,
residential,
motorway_link,
trunk_link,
primary_link,
secondary_link,
tertiary_link,
living_street,
service,
pedestrian,
track,
bus_guideway,
escape,
raceway,
road,
busway,
footway,
bridleway,
steps,
corridor,
path,
via_ferratsa,
cycleway,
proposed,
construction
}
}