pipeline.src.entities.data_exchange_standards ============================================= .. py:module:: pipeline.src.entities.data_exchange_standards Classes ------- .. autoapisummary:: pipeline.src.entities.data_exchange_standards.ZippedFileType pipeline.src.entities.data_exchange_standards.TransmissionFormat pipeline.src.entities.data_exchange_standards.DataDomain Module Contents --------------- .. py:class:: ZippedFileType(*args, **kwds) Bases: :py:obj:`enum.Enum` Create a collection of name/value pairs. Example enumeration: >>> class Color(Enum): ... RED = 1 ... BLUE = 2 ... GREEN = 3 Access them by: - attribute access:: >>> Color.RED - value lookup: >>> Color(1) - name lookup: >>> Color['RED'] Enumerations can be iterated over, and know how many members they have: >>> len(Color) 3 >>> list(Color) [, , ] Methods can be added to enumerations, and members can have their own attributes -- see the documentation for details. .. py:attribute:: ERS3_JBE :value: 'ERS3_JBE' .. py:attribute:: ERS3_ACK_JBE :value: 'ERS3_ACK_JBE' .. py:attribute:: UN_JBE :value: 'UN_JBE' .. py:attribute:: UN_NVE :value: 'UN_NVE' .. py:attribute:: ERS3_NVE :value: 'ERS3_NVE' .. py:class:: TransmissionFormat(*args, **kwds) Bases: :py:obj:`enum.Enum` Create a collection of name/value pairs. Example enumeration: >>> class Color(Enum): ... RED = 1 ... BLUE = 2 ... GREEN = 3 Access them by: - attribute access:: >>> Color.RED - value lookup: >>> Color(1) - name lookup: >>> Color['RED'] Enumerations can be iterated over, and know how many members they have: >>> len(Color) 3 >>> list(Color) [, , ] Methods can be added to enumerations, and members can have their own attributes -- see the documentation for details. .. py:attribute:: ERS :value: 'ERS' .. py:attribute:: FLUX :value: 'FLUX' .. py:method:: from_zipped_file_type(t: ZippedFileType) :staticmethod: .. py:class:: DataDomain(*args, **kwds) Bases: :py:obj:`enum.Enum` Create a collection of name/value pairs. Example enumeration: >>> class Color(Enum): ... RED = 1 ... BLUE = 2 ... GREEN = 3 Access them by: - attribute access:: >>> Color.RED - value lookup: >>> Color(1) - name lookup: >>> Color['RED'] Enumerations can be iterated over, and know how many members they have: >>> len(Color) 3 >>> list(Color) [, , ] Methods can be added to enumerations, and members can have their own attributes -- see the documentation for details. .. py:attribute:: SALES :value: 'SALES' .. py:attribute:: LOGBOOK :value: 'LOGBOOK' .. py:method:: from_zipped_file_type(t: ZippedFileType) :staticmethod: