from __future__ import annotations
from enum import Enum

__NAMESPACE__ = "http://www.netex.org.uk/netex"


class CompassBearing16Enumeration(Enum):
    SW = 'SW'
    SE = 'SE'
    NW = 'NW'
    NE = 'NE'
    W = 'W'
    E = 'E'
    S = 'S'
    N = 'N'