Source code for slm.defines.CoordinateMode

from enum_properties import StrEnumProperties, p, s


[docs] class CoordinateMode(StrEnumProperties, s("label", case_fold=True), p("help")): # fmt: off INDEPENDENT = "I", "INDEPENDENT", "User specifies station coordinates in ECEF and LLH seperately." ECEF = "E", "ECEF", "User specifies station coordinates in ECEF, LLH coordinates are calculated by the system." LLH = "L", "LLH", "User specifies station coordinates in LLH, ECEF coordinates are calculated by the system."
# fmt: on