seed_vault.enums package
Submodules
seed_vault.enums.common module
seed_vault.enums.config module
- class seed_vault.enums.config.DownloadType(value)[source]
- Bases: - str,- Enum- The class DownloadType defines an enumeration with two members, EVENT and CONTINUOUS, each associated with a specific string value. - CONTINUOUS = 'continuous'
 - EVENT = 'event'
 
- class seed_vault.enums.config.GeoConstraintType(value)[source]
- Bases: - str,- Enum- The class GeoConstraintType defines an enumeration of geographic constraint types with values for bounding, circle, and neither. - BOUNDING = 'bounding'
 - CIRCLE = 'circle'
 - NONE = 'neither'
 
- class seed_vault.enums.config.Levels(value)[source]
- Bases: - str,- Enum- The class Levels is a Python enumeration with two members, CHANNEL and STATION, each associated with a string value. - CHANNEL = 'channel'
 - STATION = 'station'
 
- class seed_vault.enums.config.WorkflowType(value)[source]
- Bases: - DescribedEnum- The class WorkflowType defines an enumeration with three options, each representing a different type of workflow with a description and explanation. - CONTINUOUS = 'Requesting Continuous Data'
 - EVENT_BASED = 'Event Based - Starting from Selecting Events'
 - STATION_BASED = 'Station Based - Starting from Selecting Stations'