Skip to content

rs_common/config.md

<< Back to index

Configuration objects and functions.

EAuxipStation

Bases: str, Enum

Auxip stations enumeration.

Source code in docs/rs-client-libraries/rs_common/config.py
56
57
58
59
60
class EAuxipStation(str, Enum):
    """Auxip stations enumeration."""

    ADGS = "ADGS"
    ADGS2 = "ADGS2"

ECadipStation

Bases: str, Enum

Cadip stations enumeration.

Source code in docs/rs-client-libraries/rs_common/config.py
45
46
47
48
49
50
51
52
53
class ECadipStation(str, Enum):
    """Cadip stations enumeration."""

    CADIP = "CADIP"
    INS = "INS"
    MPS = "MPS"
    MTI = "MTI"
    NSG = "NSG"
    SGS = "SGS"

EDownloadStatus

Bases: str, Enum

Download status enumeration.

Source code in docs/rs-client-libraries/rs_common/config.py
63
64
65
66
67
68
69
class EDownloadStatus(str, Enum):
    """Download status enumeration."""

    NOT_STARTED = "NOT_STARTED"
    IN_PROGRESS = "IN_PROGRESS"
    FAILED = "FAILED"
    DONE = "DONE"

EPlatform

Bases: str, Enum

Platform enumeration.

Source code in docs/rs-client-libraries/rs_common/config.py
35
36
37
38
39
40
41
42
class EPlatform(str, Enum):
    """Platform enumeration."""

    S1A = "S1A"
    S2A = "S2A"
    S2B = "S2B"
    S3A = "S3A"
    S3B = "S3B"