Source code for nav.feature.feature_type

"""Enum of feature types produced by NavFeatureExtractors.

A NavFeature carries one of these tags identifying which kind of
independently-navigable scene element it represents.

Modules:

    The single canonical list of NavFeatureType values.  New types are added
    by adding an enum value here and providing an extractor that emits it.
"""

from enum import Enum

__all__ = ['NavFeatureType']