EDCS Logo

Environmental Data Coding Specification

9 EDCS application program interface

separator bar

9.1 Introduction

9.1.1 Table of contents

Table 9.1 -- Table of contents

9 EDCS application program interface 9.2.4 Selector EDCS representation types 9.4.1 Introduction
9.1 Introduction 9.2.4.1 Introduction 9.4.2 EC Dictionary
9.1.1 Table of contents 9.2.4.2 Status_Code 9.4.3 EA Dictionary
9.1.2 Overview 9.2.4.3 Attribute_Value_Type 9.4.4 EV Dictionary
9.2 EDCS representation types 9.2.4.4 Numeric_Value_Type 9.4.5 EE Dictionary
9.2.1 Overview 9.2.4.5 Dictionary_Type 9.4.6 EU Dictionary
9.2.2 Base EDCS representation types 9.2.5 Structured EDCS representation types 9.4.7 Constants for unit conversion
9.2.2.1 Numeric EDCS representation types 9.2.5.1 Introduction 9.4.8 ES Dictionary
9.2.2.1.1 Floating point number type 9.2.5.2 Real_Value 9.4.9 EQ Dictionary
9.2.2.1.2 Signed integer type 9.2.5.3 Locale 9.4.10 EO Dictionary
9.2.2.1.3 Unsigned integer type 9.2.5.4 String 9.5 Functions
9.2.2.2 Non-numeric EDCS representation type 9.3 EDCS abstract element representation  
9.2.3 Enumerated EDCS representation types 9.4 Data types for EDCS dictionary entries  

Table 9.2 -- Table of tables

Table 9.1 -- Table of contents Table 9.5 -- EDCS abstract element representation
Table 9.2 -- Table of tables Table 9.6 -- Convert_Quantity_Value
Table 9.3 -- Minimum ranges Table 9.7 -- Get_Highest_Codes_Used
Table 9.4 -- Status_Code values

9.1.2 Overview

This International Standard specifies a set of abstract data types that associate EDCS labels with EDCS codes. This International Standard also specifies an EDCS application program interface consisting of a set of abstract data types and two functions: one function to convert between EDCS attribute values of EDCS attribute value type REAL given with respect to different EUs and/or ESs and another function to determine the highest standardized EDCS code and the highest registered EDCS code in each EDCS dictionary.

The following notation is used:

a.    ::= means metalinguistic equivalence [ECS, "Backus-Naur Form (BNF)"];

b.    an enumerated type is specified by listing the names of the mutually exclusive alternative values in parenthesis separated by commas; and

c.    a structure is specified by listing the elements of the structure in braces ( { } ) separated by semicolons.

9.2 EDCS representation types

9.2.1 Overview

This International Standard specifies a set of EDCS representation types to implement abstract elements including EDCS codes, EDCS labels, and EDCS attribute value types. This International Standard specifies four base EDCS representation types and two enumeration EDCS representation types. This International Standard specifies sets of selector EDCS representation types and structured EDCS representation types that are composed from base EDCS representation types.

9.2.2 Base EDCS representation types

This International Standard specifies three categories of base numeric EDCS representation types:

a.    the floating point number,

b.    the signed integer, and

c.    the unsigned integer. 

In addition, it specifies one non-numeric base EDCS representation type, character.

9.2.2.1 Numeric EDCS representation types

9.2.2.1.1 Floating point number type

The following floating point number type is specified:

Long_Float

Long_Float corresponds to the double precision floating point type defined by the IEEE standard for binary floating-point arithmetic [754]. However, implementations on architectures that support other floating point representations are allowed.

9.2.2.1.2 Signed integer type

The following signed integer type is specified:

Integer

Integer corresponds to the signed integer data type in programming languages representing a 32-bit signed integer.

9.2.2.1.3 Unsigned integer type

The following unsigned integer type is specified:

Count

Count corresponds to the unsigned integer data type in programming languages representing a 32-bit unsigned integer.

9.2.2.2 Non-numeric EDCS representation type

The following non-numeric base representation type is specified:

Character

Character corresponds to the character data type in programming languages. A single character may require one or more octets of data for its representation, depending upon how the character is encoded.  This International Standard does not specify any encoding of character data, although bindings and encodings of this International Standard shall specify the encoding techniques used.

The minimum ranges for each base EDCS representation type are specified in Table 9.3:

Table 9.3 -- Minimum ranges

Data type

Range
Integer
[-2147483647, 2147483647]
Count
[0, 4294967295]
Long_Float
A floating point representation of a double precision real number with the range supported by [754].
Character
Any single character from [I10646].

9.2.3 Enumerated EDCS representation types

The enumerated EDCS representation types shall be capable of representing all numbers in the range: a choice of one from a set of alternative values, where the cardinality of the set of values is an Integer.

This International Standard specifies a fixed enumerated type for a boolean value:

Boolean ::= ( FALSE,
              TRUE )

This International Standard specifies a fixed enumerated type for a null value:

Null ::= ( NULL )

9.2.4 Selector EDCS representation types

9.2.4.1 Introduction

Selector EDCS representation types are EDCS representation types whose values are specified from an ordered list. The items in the list are assigned integer values indicating the position within the ordered list.

9.2.4.2 Status_Code

The Status_Code selector EDCS representation type specifies the success or the nature of the failure of the functions in the EDCS application program interface:

Status_Code ::= ( <= 0 : // implementation dependent and non-conforming
                     1 : SUCCESS,
                     2 : INVALID_INPUT_UNIT,
                     3 : INVALID_OUTPUT_UNIT,
                     4 : INVALID_INPUT_SCALE,
                     5 : INVALID_OUTPUT_SCALE,
                     6 : UNITS_NOT_EQUIVALENT,
                     7 : INVALID_INPUT_ENUMERATED_ATTRIBUTE,
                     8 : INVALID_INPUT_GROUP,
                     9 : INVALID_INPUT_DICTIONARY,
                    10 : OTHER_FAILURE
                 >= 11 : // reserved for future standardization
                )

The meanings are defined in Table 9.4.

Table 9.4 -- Status_Code values

Status_Code value

Definition
SUCCESS

The function call was successful.

INVALID_INPUT_UNIT
The input EUC is not a valid EUC.
INVALID_OUTPUT_UNIT
The output EUC is not a valid EUC.
INVALID_INPUT_SCALE
The input ESC is not a valid ESC.
INVALID_OUTPUT_SCALE
The output ESC is not a valid ESC.
UNITS_NOT_EQUIVALENT
The concepts denoted by the input EUC and the output EUC are not members of the same EQ.
INVALID_INPUT_ENUMERATED_ATTRIBUTE
Either the input EAC is not a valid EAC or the concept denoted by the input EAC is not of EDCS attribute value type ENUMERATION.
INVALID_INPUT_GROUP
The input EGC is not a valid EGC.
INVALID_INPUT_DICTIONARY
The input value of type Dictionary_Type is not a valid EDCS dictionary.
OTHER_FAILURE
The function call failed for a reason not covered by another status code.

9.2.4.3 Attribute_Value_Type

The Attribute_Value_Type selector EDCS representation type specifies the EDCS attribute value type of an EDCS attribute:

Attribute_Value_Type ::= ( < 1 : // implementation dependent and non-conforming
                             1 : REAL,
                             2 : INTEGER,
                             3 : COUNT,
                             4 : INDEX,
                             5 : STRING,
                             6 : CONSTRAINED_STRING,
                             7 : KEY,
                             8 : ENUMERATION,
                             9 : BOOLEAN,
                            10 : NULL,
                          > 10 : // reserved for future standardization
			 )

The meanings are defined in Table 4.3.

9.2.4.4 Numeric_Value_Type

The Numeric_Value_Type selector EDCS representation type specifies the nature of the value of an instance of an EDCS attribute:

Numeric_Value_Type ::= ( < 1 : // implementation dependent and non-conforming
                           1 : SINGLE_VALUE,
                           2 : OPEN_INTERVAL,
                           3 : GE_LT_INTERVAL,
                           4 : GT_LE_INTERVAL,
                           5 : CLOSED_INTERVAL,
                           6 : GT_SEMI_INTERVAL,
                           7 : GE_SEMI_INTERVAL,
                           8 : LT_SEMI_INTERVAL,
                           9 : LE_SEMI_INTERVAL,
                         > 9 : // reserved for future standardization
			)

The meanings are defined in Table 4.4.

9.2.4.5 Dictionary_Type

The Dictionary_Type selector EDCS representation type specifies the name of the EDCS dictionary whose highest EDCS code values are requested in a call to the Get_Highest_Codes_Used function:

Dictionary_Type ::= (  < 1 : // implementation dependent and non-conforming
                         1 : CLASSIFICATION,
                         2 : ATTRIBUTE,
                         3 : ATTRIBUTE_VALUE_CHARACTERISTIC,
                         4 : ATTRIBUTE_ENUMERANT,
                         5 : UNIT,
                         6 : SCALE,
                         7 : UNIT_EQUIVALENCE_CLASS,
                         8 : ORGANIZATIONAL_SCHEMA,
                         9 : GROUP
                      > 10 : // reserved for future standardization
		   )

The meanings are defined in 4.2 EDCS dictionary concepts.

9.2.5 Structured EDCS representation types

9.2.5.1 Introduction

Structured EDCS representation types are specified by combining base EDCS representation types using structure and array construction methods.

9.2.5.2 Real_Value

The Real_Value structured EDCS representation type is a type used for  input and output parameters of the Convert_Quantity_Value function (see 9.5 Functions). This structure represents a completely specified value of an instance of an EA of EDCS attribute value type REAL, where Real_Value.unit shall be the EUC, Real_Value.scale shall be the ESC, and Real_Value.value shall be the value of the EA instance.

Real_Value ::=
	{ unit	  Integer;
          scale   Integer;
	  value	  Long_Float; }

9.2.5.3 Locale

The Locale structured EDCS representation type specifies language and country information related to a String structured EDCS representation type (see 9.2.5.4 String). Locale.language shall be a 2-character code as specified in [I639]. Locale.country shall be a 3-character code as specified in [I3166]. Locale.language and Locale.country can use Basic Latin characters. Therefore, Locale.language and Locale.country can be represented using single byte characters as specified in the UTF-8 encoding [I10646].

Locale ::=
      {language Character[2];
       country Character[3]; }

9.2.5.4 String

The String structured EDCS representation type specifies a string of characters and a Locale structured EDCS representation type to insure that the characters within a string can be properly interpreted.  String.locale shall be the Locale value that specifies how to interpret the information in array String.characters. String.length shall be the length of the array String.characters.  A single character may require one or more octets of data for its representation, depending upon how the character is encoded. Therefore, String.length should not be interpreted as the number of octets of storage necessary for String.characters.

String ::=
      { locale Locale;
        length Count;
        characters Character[length];

9.3 EDCS abstract element representation

When an abstract element specified in this International Standard is represented in either an interchange format or an application program interface, the representation type shall, as a minimum, be able to represent the same information as the EDCS representation type specified in Table 9.5 for that EDCS abstract element.  The purpose of these minimum requirements is to insure complete and consistent information interchange as well as maximum portability of files and applications.

Table 9.5 -- EDCS abstract element representation

EDCS abstract element EDCS representation type(s)
EDCS code denoting an EDCS concept Integer
EDCS label denoting an EDCS concept Either the same Integer value as the EDCS code that 
denotes that EDCS concept or a String
EA value of EDCS attribute value type REAL Long_Float
EA value of EDCS attribute value type INTEGER Integer
EA value of EDCS attribute value type COUNT Count
EA value of EDCS attribute value type INDEX Count
EA value of EDCS attribute value type STRING String
EA value of EDCS attribute value type CONSTRAINED_STRING String
EA value of EDCS attribute value type KEY String
EA value of EDCS attribute value type ENUMERATION Integer
EA value of EDCS attribute value type BOOLEAN Boolean
EA value of EDCS attribute value type NULL Null

9.4 Data types for EDCS dictionary entries

9.4.1 Introduction

This International Standard specifies a set of symbolic constants that specify a correspondence between a String representing an EDCS label and an Integer representing the corresponding EDCS code.  These symbolic constants are provided for use by language bindings where a programming language pre-processor can substitute an integer value for a symbolic constant.  Strings that are not substituted with the specified symbolic constant prior to final use in either an interchange format or an application program interface shall not be used to represent EDCS labels.

9.4.2 EC Dictionary

Classification_Code ::= (<    1 : // implementation dependent and non-conforming
                              1 : ABATIS,  // ABATIS is the ECL denoting the concept also denoted by ECC 1 in the EC Dictionary,
                                // additional entries of the form i : L, for 2 <= i <= 1395, where L is the ECL denoting the concept also denoted by ECC i in the EC Dictionary,
                           1396 : ZOO,  // ZOO is the ECL denoting the concept also denoted by ECC 1396 in the EC Dictionary
                         > 1396 : // reserved for registration and future standardization
                        )

9.4.3 EA Dictionary

Attribute_Code ::= (<    1 : // implementation dependent and non-conforming
                         1 : ABSOLUTE_ELEVATION_ACCURACY,  // ABSOLUTE_ELEVATION_ACCURACY is the EAL denoting the concept also denoted by EAC 1 in the EA Dictionary,
                           // additional entries of the form i : L, for 2 <= i <= 1658, where L is the EAL denoting the concept also denoted by EAC i in the EA Dictionary,
                      1659 : ZOROASTRIANISM_DENOMINATIONAL_FAMILY,  // ZOROASTRIANISM_DENOMINATIONAL_FAMILY is the EAL denoting the concept also denoted by EAC 1659 in the EA Dictionary
                    > 1659 : // reserved for registration and future standardization
                   )

9.4.4 EV Dictionary

Attribute_Value_Characteristic_Code ::= (<  1 : // implementation dependent and non-conforming
                                            1 : POSITIVE_INFINITY,  // POSITIVE_INFINITY is the EVL denoting the concept also denoted by EVC 1 in the EV Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 19, where L is the EVL denoting the concept also denoted by EVC i in the EV Dictionary,
                                           20 : MEASUREMENT_ERROR,  // MEASUREMENT_ERROR is the EVL denoting the concept also denoted by EVC 20 in the EV Dictionary
                                         > 20 : // reserved for registration and future standardization
                                        )

9.4.5 EE Dictionary

ACCUMULATION_PERIOD_CATEGORY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                             1 : ONE_SECOND,  // ONE_SECOND is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 22, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            23 : STORM_DURATION,  // STORM_DURATION is the EEL denoting the concept also denoted by EEC 23 in the EE Dictionary,
                                          > 23 : // reserved for registration and future standardization
                                         )

ACOUSTIC_CENTRE_FREQUENCY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                          1 : BAND_1_HZ,  // BAND_1_HZ is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 59, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         60 : BAND_800_KHZ,  // BAND_800_KHZ is the EEL denoting the concept also denoted by EEC 60 in the EE Dictionary,
                                       > 60 : // reserved for registration and future standardization
                                      )

ACOUSTIC_REFLECTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : BOTTOM_HYPERBOLIC,  // BOTTOM_HYPERBOLIC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        2 : SUB_BOTTOM_HYPERBOLIC,  // SUB_BOTTOM_HYPERBOLIC is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                      > 2 : // reserved for registration and future standardization
                                     )

AERIAL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                           1 : DIPOLE,  // DIPOLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                           6 : YAGI,  // YAGI is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                         > 6 : // reserved for registration and future standardization
                        )

AERIAL_USE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : AIR_TRAFFIC_CONTROL,  // AIR_TRAFFIC_CONTROL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          7 : TELEVISION_BROADCAST,  // TELEVISION_BROADCAST is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                        > 7 : // reserved for registration and future standardization
                       )

AERODROME_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : AERODROME,  // AERODROME is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 20, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              21 : WINCH_LAUNCHED_HANG_GLIDER,  // WINCH_LAUNCHED_HANG_GLIDER is the EEL denoting the concept also denoted by EEC 21 in the EE Dictionary,
                            > 21 : // reserved for registration and future standardization
                           )

AERONAUTICAL_LIGHT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                        1 : AERODROME_TERMINAL,  // AERODROME_TERMINAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 91, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       92 : WIND_INDICATOR,  // WIND_INDICATOR is the EEL denoting the concept also denoted by EEC 92 in the EE Dictionary,
                                     > 92 : // reserved for registration and future standardization
                                    )

AEROSOL_PARTICLE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                      1 : DUST,  // DUST is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 13, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     14 : VOLCANIC_DUST,  // VOLCANIC_DUST is the EEL denoting the concept also denoted by EEC 14 in the EE Dictionary,
                                   > 14 : // reserved for registration and future standardization
                                  )

AID_TO_NAVIGATION_COLOUR_PATTERN_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                1 : BORDER_STRIPE,  // BORDER_STRIPE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                     // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                9 : VERTICAL_STRIPES,  // VERTICAL_STRIPES is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                              > 9 : // reserved for registration and future standardization
                                             )

AID_TO_NAVIGATION_MARK_COLOUR_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                              1 : BLACK,  // BLACK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  // additional entries of the form i : L, for 2 <= i <= 17, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                             18 : YELLOW_RED_YELLOW,  // YELLOW_RED_YELLOW is the EEL denoting the concept also denoted by EEC 18 in the EE Dictionary,
                                           > 18 : // reserved for registration and future standardization
                                          )

AID_TO_NAVIGATION_MARK_SYSTEM_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                             1 : IALA_A,  // IALA_A is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                             9 : US_WESTERN_RIVER,  // US_WESTERN_RIVER is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                           > 9 : // reserved for registration and future standardization
                                          )

AID_TO_NAVIGATION_MARKER_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                             1 : ELEC_BEACON,  // ELEC_BEACON is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                             5 : VIS_DAYMARK,  // VIS_DAYMARK is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                           > 5 : // reserved for registration and future standardization
                                          )

AID_TO_NAVIGATION_STATUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : LIT,  // LIT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        4 : UNMARKED,  // UNMARKED is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                      > 4 : // reserved for registration and future standardization
                                     )

AID_TO_NAVIGATION_SYSTEM_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                              1 : IALA,  // IALA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                             11 : US_WESTERN_RIVER,  // US_WESTERN_RIVER is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                           > 11 : // reserved for registration and future standardization
                                          )

AIRCRAFT_CARRIER_CLASS_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                       1 : ASTURIAS,  // ASTURIAS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      13 : VIRAAT,  // VIRAAT is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                                    > 13 : // reserved for registration and future standardization
                                   )

AIRCRAFT_FUNCTION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                  1 : AGRICULTURE,  // AGRICULTURE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 28, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 29 : UTILITY,  // UTILITY is the EEL denoting the concept also denoted by EEC 29 in the EE Dictionary,
                               > 29 : // reserved for registration and future standardization
                              )

AIRCRAFT_ICING_INTENSITY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                         1 : NO_ICING,  // NO_ICING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        13 : SEVERE_IN_PRECIP,  // SEVERE_IN_PRECIP is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                                      > 13 : // reserved for registration and future standardization
                                     )

AIRCRAFT_ICING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : CLEAR,  // CLEAR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   5 : RIME,  // RIME is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                 > 5 : // reserved for registration and future standardization
                                )

AIRCRAFT_PROPULSION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : ELECTRIC,  // ELECTRIC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        5 : TURBOPROP,  // TURBOPROP is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                      > 5 : // reserved for registration and future standardization
                                     )

AIRCRAFT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                              1 : AIRSHIP,  // AIRSHIP is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             15 : VTOL,  // VTOL is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                           > 15 : // reserved for registration and future standardization
                          )

AIRSPACE_LIMITATION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                    1 : AIR_EXERCISE,  // AIR_EXERCISE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 34, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   35 : WARNING,  // WARNING is the EEL denoting the concept also denoted by EEC 35 in the EE Dictionary,
                                 > 35 : // reserved for registration and future standardization
                                )

AIRSPACE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                              1 : ACC,  // ACC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 68, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             69 : ZONE_OF_INTERIOR,  // ZONE_OF_INTERIOR is the EEL denoting the concept also denoted by EEC 69 in the EE Dictionary,
                           > 69 : // reserved for registration and future standardization
                          )

APERTURE_COVER_POSITION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : CLOSED,  // CLOSED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       5 : POPPED_OCCUPANT_VISIBLE,  // POPPED_OCCUPANT_VISIBLE is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                     > 5 : // reserved for registration and future standardization
                                    )

APERTURE_STATE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : CLOSED_LOCKED,  // CLOSED_LOCKED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              4 : OPEN,  // OPEN is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                            > 4 : // reserved for registration and future standardization
                           )

AQUEDUCT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                             1 : CANAL,  // CANAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             9 : UNDERGROUND,  // UNDERGROUND is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                           > 9 : // reserved for registration and future standardization
                          )

ARRESTING_GEAR_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : CABLE,  // CABLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   2 : JET_BARRIER,  // JET_BARRIER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                   3 : NET,  // NET is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                 > 3 : // reserved for registration and future standardization
                                )

ASSAULT_LANDING_CRAFT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                           1 : CHAHO_CLASS,  // CHAHO_CLASS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          11 : WASP_CLASS,  // WASP_CLASS is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                        > 11 : // reserved for registration and future standardization
                                       )

ASW_WINGED_AIRCRAFT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                         1 : B_17G,  // B_17G is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 23, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        24 : XP_5Y_1,  // XP_5Y_1 is the EEL denoting the concept also denoted by EEC 24 in the EE Dictionary,
                                      > 24 : // reserved for registration and future standardization
                                     )

ATM_CEILING_METHOD_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                   1 : AIRCRAFT,  // AIRCRAFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  11 : STATISTICALLY_DERIVED,  // STATISTICALLY_DERIVED is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                > 11 : // reserved for registration and future standardization
                               )

ATM_PRESSURE_CHANGE_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : GOOD,  // GOOD is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           9 : MISS,  // MISS is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                         > 9 : // reserved for registration and future standardization
                                        )

ATM_PRESSURE_CHANGE_TENDENCY_CATEGORY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                     1 : INC_THEN_DEC,  // INC_THEN_DEC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                          // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                     9 : CHANGE_TO_DEC,  // CHANGE_TO_DEC is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                                   > 9 : // reserved for registration and future standardization
                                                  )

ATM_PRESSURE_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : GOOD,  // GOOD is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    9 : MISS,  // MISS is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                  > 9 : // reserved for registration and future standardization
                                 )

ATM_PROFILE_MEASUREMENT_TECHNIQUE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                 1 : AIRCRAFT,  // AIRCRAFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 7 : WIND_PROFILER,  // WIND_PROFILER is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                               > 7 : // reserved for registration and future standardization
                                              )

ATM_TURBULENCE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : CLEAR_AIR,  // CLEAR_AIR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   4 : NOT_SPECIFIED,  // NOT_SPECIFIED is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                 > 4 : // reserved for registration and future standardization
                                )

ATM_VERTICAL_REFERENCE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : ICAO_STD_ATM,  // ICAO_STD_ATM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      5 : TRUE_ALTITUDE,  // TRUE_ALTITUDE is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                    > 5 : // reserved for registration and future standardization
                                   )

ATS_AIRSPACE_CLASS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : A,  // A is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  8 : SPECIAL_USE,  // SPECIAL_USE is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                > 8 : // reserved for registration and future standardization
                               )

ATS_ROUTE_COMPONENT_LEVEL_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : ABOVE_195,  // ABOVE_195 is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         7 : NIGHT_LOW_FLYING,  // NIGHT_LOW_FLYING is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                       > 7 : // reserved for registration and future standardization
                                      )

ATS_ROUTE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : ADVISORY,  // ADVISORY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 20, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              21 : TACAN,  // TACAN is the EEL denoting the concept also denoted by EEC 21 in the EE Dictionary,
                            > 21 : // reserved for registration and future standardization
                           )

ATS_USE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                             1 : AERODROME_CZ,  // AERODROME_CZ is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 // additional entries of the form i : L, for 2 <= i <= 58, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                            59 : ZONE_OF_INTERIOR,  // ZONE_OF_INTERIOR is the EEL denoting the concept also denoted by EEC 59 in the EE Dictionary,
                          > 59 : // reserved for registration and future standardization
                         )

ATTACK_WINGED_AIRCRAFT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                            1 : A_1,  // A_1 is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 17, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           18 : AV_8,  // AV_8 is the EEL denoting the concept also denoted by EEC 18 in the EE Dictionary,
                                         > 18 : // reserved for registration and future standardization
                                        )

AUXILIARY_VESSEL_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                      1 : APPLELEAF_CLASS_TANKER,  // APPLELEAF_CLASS_TANKER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     11 : TORNADO_CLASS_TORPEDO_RECOVERY,  // TORNADO_CLASS_TORPEDO_RECOVERY is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                   > 11 : // reserved for registration and future standardization
                                  )

AVAILABLE_FACILITIES_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                          1 : BOAT_LIFT,  // BOAT_LIFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 38, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         39 : VISITORS_MOORING,  // VISITORS_MOORING is the EEL denoting the concept also denoted by EEC 39 in the EE Dictionary,
                                       > 39 : // reserved for registration and future standardization
                                      )

AVERAGING_PERIOD_CATEGORY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                          1 : ONE_SECOND,  // ONE_SECOND is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 19, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         20 : TWENTY_FOUR_HOURS,  // TWENTY_FOUR_HOURS is the EEL denoting the concept also denoted by EEC 20 in the EE Dictionary,
                                       > 20 : // reserved for registration and future standardization
                                      )

AVIATION_LOCATION_ID_VALUE_SET_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : ICAO,  // ICAO is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              2 : US_FAA,  // US_FAA is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                            > 2 : // reserved for registration and future standardization
                                           )

BALCONY_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                            1 : CHOIR_LOFT,  // CHOIR_LOFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                            2 : EXTERIOR,  // EXTERIOR is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                            3 : INTERIOR,  // INTERIOR is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                          > 3 : // reserved for registration and future standardization
                         )

BASEMENT_CONSTRUCTION_MATERIAL_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : MASONRY,  // MASONRY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              4 : SOIL,  // SOIL is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                            > 4 : // reserved for registration and future standardization
                                           )

BEACH_PORTION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                             1 : BACKSHORE,  // BACKSHORE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                             2 : FORESHORE,  // FORESHORE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                             3 : NEARSHORE,  // NEARSHORE is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                           > 3 : // reserved for registration and future standardization
                          )

BEACON_SHAPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                             1 : ARTICULATED,  // ARTICULATED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                            13 : WITHY,  // WITHY is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                          > 13 : // reserved for registration and future standardization
                         )

BEAUFORT_WIND_SCALE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                    1 : CALM,  // CALM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   13 : HURRICANE,  // HURRICANE is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                                 > 13 : // reserved for registration and future standardization
                                )

BELOW_STATION_CLOUD_COVERAGE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                             1 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            15 : INDISCERNABLE,  // INDISCERNABLE is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                                          > 15 : // reserved for registration and future standardization
                                         )

BELOW_STATION_CLOUD_TOP_CHARACTERISTICS_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                        1 : FRAGMENTED,  // FRAGMENTED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                            // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                       11 : CLOUD_NOT_VISIBLE,  // CLOUD_NOT_VISIBLE is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                                     > 11 : // reserved for registration and future standardization
                                                    )

BELOW_STATION_CLOUD_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                         1 : CIRRUS,  // CIRRUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 11, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        12 : NO_CLOUDS,  // NO_CLOUDS is the EEL denoting the concept also denoted by EEC 12 in the EE Dictionary,
                                      > 12 : // reserved for registration and future standardization
                                     )

BENCHMARK_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : PRIMARY_ACS,  // PRIMARY_ACS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              2 : SECONDARY_ACS,  // SECONDARY_ACS is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                            > 2 : // reserved for registration and future standardization
                           )

BERTH_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : PIER,  // PIER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                          2 : QUAY,  // QUAY is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                          3 : WHARF,  // WHARF is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                        > 3 : // reserved for registration and future standardization
                       )

BIOLOGIC_AGENT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                    1 : ABRIN,  // ABRIN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 96, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   97 : VOMATOXIN,  // VOMATOXIN is the EEL denoting the concept also denoted by EEC 97 in the EE Dictionary,
                                 > 97 : // reserved for registration and future standardization
                                )

BOMBER_WINGED_AIRCRAFT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : B1A_LANCER_SERIES,  // B1A_LANCER_SERIES is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           7 : TU95_OR_TU142_BEAR_SERIES,  // TU95_OR_TU142_BEAR_SERIES is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                         > 7 : // reserved for registration and future standardization
                                        )

BOTTOM_RETURN_ALLEGIANCE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : FRIEND,  // FRIEND is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        2 : HOSTILE,  // HOSTILE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                        3 : NEUTRAL,  // NEUTRAL is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                      > 3 : // reserved for registration and future standardization
                                     )

BOTTOM_RETURN_OBSTACLE_STATUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                             1 : DETECTED,  // DETECTED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             2 : CLASSIFIED,  // CLASSIFIED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                             3 : IDENTIFIED,  // IDENTIFIED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                           > 3 : // reserved for registration and future standardization
                                          )

BOTTOM_RETURN_ROCK_STATUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : DETECTED,  // DETECTED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         2 : CLASSIFIED,  // CLASSIFIED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                         3 : IDENTIFIED,  // IDENTIFIED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                       > 3 : // reserved for registration and future standardization
                                      )

BOTTOM_RETURN_SEABED_STATUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : DETECTED,  // DETECTED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           2 : CLASSIFIED,  // CLASSIFIED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                           3 : IDENTIFIED,  // IDENTIFIED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                         > 3 : // reserved for registration and future standardization
                                        )

BOTTOM_RETURN_STATUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : DETECTED,  // DETECTED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    2 : CLASSIFIED,  // CLASSIFIED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                    3 : IDENTIFIED,  // IDENTIFIED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                  > 3 : // reserved for registration and future standardization
                                 )

BOTTOM_RETURN_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : IDENTITY,  // IDENTITY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  6 : WRECK,  // WRECK is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                > 6 : // reserved for registration and future standardization
                               )

BOTTOM_RETURN_WRECK_STATUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                          1 : DETECTED,  // DETECTED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          2 : CLASSIFIED,  // CLASSIFIED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                          3 : IDENTIFIED,  // IDENTIFIED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                        > 3 : // reserved for registration and future standardization
                                       )

BOUNDARY_STATUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                               1 : DEFINITE,  // DEFINITE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               6 : RECOG_BY_DATA_PROVIDER,  // RECOG_BY_DATA_PROVIDER is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                             > 6 : // reserved for registration and future standardization
                            )

BOUNDARY_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                              1 : ACCESS_ZONE,  // ACCESS_ZONE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 38, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             39 : WEAPONS_RANGE,  // WEAPONS_RANGE is the EEL denoting the concept also denoted by EEC 39 in the EE Dictionary,
                           > 39 : // reserved for registration and future standardization
                          )

BRANCH_RAILWAY_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : ANY,  // ANY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   4 : SPUR,  // SPUR is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                 > 4 : // reserved for registration and future standardization
                                )

BREAKER_FLANK_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                             1 : LEFT,  // LEFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                             2 : RIGHT,  // RIGHT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                           > 2 : // reserved for registration and future standardization
                          )

BRIDGE_COMPONENT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : ABUTMENT,  // ABUTMENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     5 : RAMP,  // RAMP is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                   > 5 : // reserved for registration and future standardization
                                  )

BRIDGE_DESIGN_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                              1 : ARCH,  // ARCH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 22, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             23 : TRUSS,  // TRUSS is the EEL denoting the concept also denoted by EEC 23 in the EE Dictionary,
                           > 23 : // reserved for registration and future standardization
                          )

BRIDGE_FUNCTION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                1 : BUILDING,  // BUILDING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               13 : WATER_CONTAINMENT,  // WATER_CONTAINMENT is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                             > 13 : // reserved for registration and future standardization
                            )

BRIDGE_INFORMATION_RELIABILITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : ESTIMATED,  // ESTIMATED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              2 : KNOWN,  // KNOWN is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                            > 2 : // reserved for registration and future standardization
                                           )

BRIDGE_OPENING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : DRAW_OR_BASCULE,  // DRAW_OR_BASCULE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   4 : SWING,  // SWING is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                 > 4 : // reserved for registration and future standardization
                                )

BRIDGE_SPAN_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                 1 : ARCH_CLOSED_SPANDREL,  // ARCH_CLOSED_SPANDREL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     // additional entries of the form i : L, for 2 <= i <= 17, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                18 : VAULT,  // VAULT is the EEL denoting the concept also denoted by EEC 18 in the EE Dictionary,
                              > 18 : // reserved for registration and future standardization
                             )

BRIDGE_STRUCTURE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                      1 : ARCH_CLOSED_SPANDREL,  // ARCH_CLOSED_SPANDREL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 26, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     27 : UNSPECIFIED_FIXED,  // UNSPECIFIED_FIXED is the EEL denoting the concept also denoted by EEC 27 in the EE Dictionary,
                                   > 27 : // reserved for registration and future standardization
                                  )

BUDDHISM_DENOMINATIONAL_FAMILY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : BUZAN_HA,  // BUZAN_HA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              5 : THERAVADA,  // THERAVADA is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                            > 5 : // reserved for registration and future standardization
                                           )

BUILDING_COMPONENT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                        1 : ANTE_ROOM,  // ANTE_ROOM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 40, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       41 : WINDOW,  // WINDOW is the EEL denoting the concept also denoted by EEC 41 in the EE Dictionary,
                                     > 41 : // reserved for registration and future standardization
                                    )

BUILDING_CONSTRUCTION_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                           1 : AGGREGATE_CLAD_STEEL_FRAME,  // AGGREGATE_CLAD_STEEL_FRAME is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 26, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          27 : WOOD_CLAD_WOOD_FRAME,  // WOOD_CLAD_WOOD_FRAME is the EEL denoting the concept also denoted by EEC 27 in the EE Dictionary,
                                        > 27 : // reserved for registration and future standardization
                                       )

BUILDING_FOUNDATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : BEAM_ON_GRADE,  // BEAM_ON_GRADE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        8 : WALL,  // WALL is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                      > 8 : // reserved for registration and future standardization
                                     )

BUILDING_FUNCTION_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                                   1 : ADMINISTRATION,  // ADMINISTRATION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 193, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 194 : WORSHIP_PLACE,  // WORSHIP_PLACE is the EEL denoting the concept also denoted by EEC 194 in the EE Dictionary,
                               > 194 : // reserved for registration and future standardization
                              )

BUILT_UP_REGION_DENSITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : SPARSE,  // SPARSE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       2 : MODERATE,  // MODERATE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                       3 : DENSE,  // DENSE is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                     > 3 : // reserved for registration and future standardization
                                    )

BUOY_SHAPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : BARREL,  // BARREL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          8 : SUPER,  // SUPER is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                        > 8 : // reserved for registration and future standardization
                       )

BUOY_TYPE_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                           1 : ANCHORAGE,  // ANCHORAGE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              // additional entries of the form i : L, for 2 <= i <= 101, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                         102 : YACHTING,  // YACHTING is the EEL denoting the concept also denoted by EEC 102 in the EE Dictionary,
                       > 102 : // reserved for registration and future standardization
                      )

BYPASS_CONDITION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : EASY,  // EASY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                2 : DIFFICULT,  // DIFFICULT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                3 : IMPOSSIBLE,  // IMPOSSIBLE is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                              > 3 : // reserved for registration and future standardization
                             )

CABLE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : MOORING,  // MOORING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          6 : TELEPHONE,  // TELEPHONE is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                        > 6 : // reserved for registration and future standardization
                       )

CAMOUFLAGE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                1 : DEAD_VEGETATION,  // DEAD_VEGETATION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               11 : WINTER_PAINT,  // WINTER_PAINT is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                             > 11 : // reserved for registration and future standardization
                            )

CHANGE_POINT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : BOUNDARY,  // BOUNDARY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 7 : ROAD_WIDTH_CHANGE,  // ROAD_WIDTH_CHANGE is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                               > 7 : // reserved for registration and future standardization
                              )

CHARGED_PARTICLE_SPECIES_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : ALPHA,  // ALPHA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        5 : PROTON,  // PROTON is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                      > 5 : // reserved for registration and future standardization
                                     )

CHEMICAL_AGENT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                    1 : CA,  // CA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 44, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   45 : WHITE_PHOSPHORUS,  // WHITE_PHOSPHORUS is the EEL denoting the concept also denoted by EEC 45 in the EE Dictionary,
                                 > 45 : // reserved for registration and future standardization
                                )

CHRISTIANITY_DENOMINATIONAL_FAMILY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                   1 : ADVENTIST,  // ADVENTIST is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                       // additional entries of the form i : L, for 2 <= i <= 18, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                  19 : UNAFFILIATED,  // UNAFFILIATED is the EEL denoting the concept also denoted by EEC 19 in the EE Dictionary,
                                                > 19 : // reserved for registration and future standardization
                                               )

CLOUD_PHASE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                           1 : LIQUID,  // LIQUID is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                           2 : MIXED,  // MIXED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                           3 : SOLID,  // SOLID is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                         > 3 : // reserved for registration and future standardization
                        )

CLOUD_SKY_COVER_LAYER_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                           1 : CIRRUS,  // CIRRUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          11 : NOT_VISIBLE,  // NOT_VISIBLE is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                        > 11 : // reserved for registration and future standardization
                                       )

COLOUR_INTENSITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : DARK,  // DARK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                2 : LIGHT,  // LIGHT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                              > 2 : // reserved for registration and future standardization
                             )

COLOURATION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                            1 : AMBER,  // AMBER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                // additional entries of the form i : L, for 2 <= i <= 83, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                           84 : YELLOW,  // YELLOW is the EEL denoting the concept also denoted by EEC 84 in the EE Dictionary,
                         > 84 : // reserved for registration and future standardization
                        )

COMBAT_SUPPORT_VESSEL_FUNCTION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : COMBAT_STORES,  // COMBAT_STORES is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              7 : TENDER,  // TENDER is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                            > 7 : // reserved for registration and future standardization
                                           )

COMBATANT_VESSEL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : AIRCRAFT_CARRIER,  // AIRCRAFT_CARRIER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     8 : MINE_COUNTERMEASURE,  // MINE_COUNTERMEASURE is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                   > 8 : // reserved for registration and future standardization
                                  )

COMBUSTION_STATE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : NOT_BURNING,  // NOT_BURNING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                5 : LARGE_FIRE,  // LARGE_FIRE is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                              > 5 : // reserved for registration and future standardization
                             )

COMMERCIAL_WINGED_AIRCRAFT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                1 : AIRBUS_A300_SERIES,  // AIRBUS_A300_SERIES is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                    // additional entries of the form i : L, for 2 <= i <= 17, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                               18 : MD88_SERIES,  // MD88_SERIES is the EEL denoting the concept also denoted by EEC 18 in the EE Dictionary,
                                             > 18 : // reserved for registration and future standardization
                                            )

COMMUNICATION_STRUCTURE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                             1 : BEACON,  // BEACON is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            13 : TELEVISION_STATION,  // TELEVISION_STATION is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                                          > 13 : // reserved for registration and future standardization
                                         )

CONSPICUOUSNESS_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                1 : FROM_AIR,  // FROM_AIR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               10 : VISIBLE_FROM_SEA,  // VISIBLE_FROM_SEA is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                             > 10 : // reserved for registration and future standardization
                            )

CONTOUR_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                            1 : BATHYMETRY,  // BATHYMETRY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                            2 : DEPRESSION,  // DEPRESSION is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                            3 : ELEVATION,  // ELEVATION is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                          > 3 : // reserved for registration and future standardization
                         )

CONTRAIL_PERSISTENCE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    2 : NOT_PERSISTENT,  // NOT_PERSISTENT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                    3 : PERSISTENT,  // PERSISTENT is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                  > 3 : // reserved for registration and future standardization
                                 )

CONTROL_PANEL_STATE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : POWER_OFF,  // POWER_OFF is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   2 : POWER_ON,  // POWER_ON is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                   3 : STANDBY,  // STANDBY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                 > 3 : // reserved for registration and future standardization
                                )

CONTROL_PANEL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : ELECTRICAL_SERVICE,  // ELECTRICAL_SERVICE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  4 : LIFT,  // LIFT is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                > 4 : // reserved for registration and future standardization
                               )

COUNTRY_ID_VALUE_SET_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : ISO_2_CHAR_CTRY_CODE,  // ISO_2_CHAR_CTRY_CODE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    8 : US_FIPS_CTRY_NAME,  // US_FIPS_CTRY_NAME is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                  > 8 : // reserved for registration and future standardization
                                 )

CRANE_MOBILITY_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : FIXED,  // FIXED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   2 : FLOATING,  // FLOATING is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                   3 : TRAVELING,  // TRAVELING is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                 > 3 : // reserved for registration and future standardization
                                )

CRANE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : BRIDGE,  // BRIDGE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          6 : TRAVELING,  // TRAVELING is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                        > 6 : // reserved for registration and future standardization
                       )

CROSSING_CONTROL_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : NO_CONTROL,  // NO_CONTROL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                4 : YIELD_SIGN,  // YIELD_SIGN is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                              > 4 : // reserved for registration and future standardization
                             )

CULVERT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                            1 : BOX_LOAD_BEARING,  // BOX_LOAD_BEARING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                            2 : BOX_SOIL_BACK_FILLED,  // BOX_SOIL_BACK_FILLED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                            3 : REG_SOIL_BACK_FILLED,  // REG_SOIL_BACK_FILLED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                          > 3 : // reserved for registration and future standardization
                         )

DAM_FACE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                             1 : SLOPED,  // SLOPED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                             2 : VERTICAL,  // VERTICAL is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                           > 2 : // reserved for registration and future standardization
                          )

DATA_COLLECTION_REASON_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                       1 : COLLECTED,  // COLLECTED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      11 : TOO_ROUGH_TO_COLLECT,  // TOO_ROUGH_TO_COLLECT is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                    > 11 : // reserved for registration and future standardization
                                   )

DATE_FORMAT_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                            1 : CALENDAR_DATE,  // CALENDAR_DATE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                // additional entries of the form i : L, for 2 <= i <= 45, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                           46 : YYYYYMMDD,  // YYYYYMMDD is the EEL denoting the concept also denoted by EEC 46 in the EE Dictionary,
                         > 46 : // reserved for registration and future standardization
                        )

DATE_TIME_FORMAT_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : ISO,  // ISO is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                8 : REDUCED,  // REDUCED is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                              > 8 : // reserved for registration and future standardization
                             )

DEFENSIVE_POSITION_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                        1 : DELIB_FULL_HIDE_ARMOURED_TRACKED_VEHICLE,  // DELIB_FULL_HIDE_ARMOURED_TRACKED_VEHICLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       11 : MACHINE_GUN_BUNKER,  // MACHINE_GUN_BUNKER is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                     > 11 : // reserved for registration and future standardization
                                    )

DEW_POINT_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : GOOD,  // GOOD is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 9 : MISS,  // MISS is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                               > 9 : // reserved for registration and future standardization
                              )

DOMINANT_BREAKER_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : PLUNGING,  // PLUNGING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     2 : SPILLING,  // SPILLING is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                     3 : SURGING,  // SURGING is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                   > 3 : // reserved for registration and future standardization
                                  )

DOOR_CONSTRUCTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : FIRE,  // FIRE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      7 : WOOD_HOLLOW_CORE,  // WOOD_HOLLOW_CORE is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                    > 7 : // reserved for registration and future standardization
                                   )

DOOR_OPENING_METHOD_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : DOUBLE_SWINGING,  // DOUBLE_SWINGING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   5 : UP,  // UP is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                 > 5 : // reserved for registration and future standardization
                                )

DOOR_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                          1 : AUTOMATIC_HINGED,  // AUTOMATIC_HINGED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                         15 : TURNSTILE,  // TURNSTILE is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                       > 15 : // reserved for registration and future standardization
                      )

DRAGON_TEETH_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : CONCRETE_BLOCK,  // CONCRETE_BLOCK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 5 : STEEL_TETRAHEDRON,  // STEEL_TETRAHEDRON is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                               > 5 : // reserved for registration and future standardization
                              )

DROP_GATE_METHOD_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : OVERHEAD,  // OVERHEAD is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                2 : SIDE,  // SIDE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                              > 2 : // reserved for registration and future standardization
                             )

ECOSYSTEM_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : BAMBOO,  // BAMBOO is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 95, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              96 : WOODY_SAVANNA,  // WOODY_SAVANNA is the EEL denoting the concept also denoted by EEC 96 in the EE Dictionary,
                            > 96 : // reserved for registration and future standardization
                           )

EDUCATIONAL_BUILDING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : ACADEMY,  // ACADEMY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         6 : UNIVERSITY,  // UNIVERSITY is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                       > 6 : // reserved for registration and future standardization
                                      )

ELEV_ELECTRICAL_CABLE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                          1 : MOUNTAIN_CATENARY,  // MOUNTAIN_CATENARY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          2 : NORMAL_SUSPENSION,  // NORMAL_SUSPENSION is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                          3 : OVERWATER_CATENARY,  // OVERWATER_CATENARY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                        > 3 : // reserved for registration and future standardization
                                       )

ELEVATION_ACCURACY_STATEMENT_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                            1 : ACCURATE,  // ACCURATE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            2 : APPROXIMATE,  // APPROXIMATE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                          > 2 : // reserved for registration and future standardization
                                         )

EM_BAND_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                        1 : RF,  // RF is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                            // additional entries of the form i : L, for 2 <= i <= 43, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                       44 : GAMMA_RAY,  // GAMMA_RAY is the EEL denoting the concept also denoted by EEC 44 in the EE Dictionary,
                     > 44 : // reserved for registration and future standardization
                    )

EM_EVAPORATIVE_DUCT_STRENGTH_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                            1 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            5 : EXTREME,  // EXTREME is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                          > 5 : // reserved for registration and future standardization
                                         )

EM_POLARIZATION_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                     1 : ALL,  // ALL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    10 : RANDOM,  // RANDOM is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                                  > 10 : // reserved for registration and future standardization
                                 )

EM_PROPAGATION_CONDITION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : NORMAL,  // NORMAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        4 : TRAPPING,  // TRAPPING is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                      > 4 : // reserved for registration and future standardization
                                     )

ENGINEER_TRENCH_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : INFANTRY_TRENCH,  // INFANTRY_TRENCH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    2 : SOVIET_ANTI_TANK_DITCH,  // SOVIET_ANTI_TANK_DITCH is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                    3 : US_ANTI_TANK_DITCH,  // US_ANTI_TANK_DITCH is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                  > 3 : // reserved for registration and future standardization
                                 )

EXISTENCE_CERTAINTY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : DEFINITE,  // DEFINITE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   2 : DOUBTFUL,  // DOUBTFUL is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                   3 : REPORTED,  // REPORTED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                 > 3 : // reserved for registration and future standardization
                                )

EXISTENCE_STATUS_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                 1 : ABANDONED,  // ABANDONED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     // additional entries of the form i : L, for 2 <= i <= 64, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                65 : WATCHED,  // WATCHED is the EEL denoting the concept also denoted by EEC 65 in the EE Dictionary,
                              > 65 : // reserved for registration and future standardization
                             )

EXPLOSIVE_MINE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                    1 : ANTIPERSONNEL,  // ANTIPERSONNEL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 15, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   16 : WIDE_AREA,  // WIDE_AREA is the EEL denoting the concept also denoted by EEC 16 in the EE Dictionary,
                                 > 16 : // reserved for registration and future standardization
                                )

EXTERIOR_WALL_CONSTRUCTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                               1 : BRICK,  // BRICK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                    // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                               8 : WOOD_PRODUCT,  // WOOD_PRODUCT is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                             > 8 : // reserved for registration and future standardization
                                            )

EXTERIOR_WALL_FORTIFICATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           4 : TWO_ROWS_SANDBAGS,  // TWO_ROWS_SANDBAGS is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                         > 4 : // reserved for registration and future standardization
                                        )

EXTERNAL_PAINT_SCHEME_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : DESERT_CAMOUFLAGE,  // DESERT_CAMOUFLAGE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     5 : WINTER_CAMOUFLAGE,  // WINTER_CAMOUFLAGE is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                   > 5 : // reserved for registration and future standardization
                                  )

EXTERNAL_WINDOW_COVERING_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : BARS,  // BARS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        4 : WINDOW_SCREEN,  // WINDOW_SCREEN is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                      > 4 : // reserved for registration and future standardization
                                     )

EXTRACTION_MINE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : BELOW_SURFACE,  // BELOW_SURFACE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    9 : VERTICAL_SHAFT,  // VERTICAL_SHAFT is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                  > 9 : // reserved for registration and future standardization
                                 )

FABRICATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : HEAVY,  // HEAVY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                2 : LIGHT,  // LIGHT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                              > 2 : // reserved for registration and future standardization
                             )

FACET_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : BUILDING,  // BUILDING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          6 : WATER_BODY_SURFACE,  // WATER_BODY_SURFACE is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                        > 6 : // reserved for registration and future standardization
                       )

FARMING_METHOD_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : CROP_ROTATION,  // CROP_ROTATION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              4 : SLASH_AND_BURN,  // SLASH_AND_BURN is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                            > 4 : // reserved for registration and future standardization
                           )

FENCE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                           1 : BARBED_WIRE,  // BARBED_WIRE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          10 : WOOD,  // WOOD is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                        > 10 : // reserved for registration and future standardization
                       )

FERRY_ROUTE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : CABLE,  // CABLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                2 : FREE_MOVING,  // FREE_MOVING is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                3 : ICE,  // ICE is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                              > 3 : // reserved for registration and future standardization
                             )

FIELD_PATTERN_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                             1 : LINEAR,  // LINEAR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                             2 : REGULAR,  // REGULAR is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                             3 : TERRACED,  // TERRACED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                           > 3 : // reserved for registration and future standardization
                          )

FIGHTER_WINGED_AIRCRAFT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                             1 : F_1,  // F_1 is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 32, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            33 : F_117,  // F_117 is the EEL denoting the concept also denoted by EEC 33 in the EE Dictionary,
                                          > 33 : // reserved for registration and future standardization
                                         )

FISHING_FACILITY_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : STAKE,  // STAKE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     4 : WEIR,  // WEIR is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                   > 4 : // reserved for registration and future standardization
                                  )

FLOOR_CONSTRUCTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : BRICK,  // BRICK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       8 : STEEL,  // STEEL is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                     > 8 : // reserved for registration and future standardization
                                    )

FLOOR_COVERING_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                    1 : CARPET,  // CARPET is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   10 : WOOD,  // WOOD is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                                 > 10 : // reserved for registration and future standardization
                                )

FOG_SIGNAL_GENERATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                          1 : AUTOMATIC,  // AUTOMATIC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          4 : WIND,  // WIND is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                        > 4 : // reserved for registration and future standardization
                                       )

FOLIAGE_STATE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                             1 : LOW_DENSITY_LOW_CHLOROPHYLL,  // LOW_DENSITY_LOW_CHLOROPHYLL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             4 : HIGH_DENSITY_HIGH_CHLOROPHYLL,  // HIGH_DENSITY_HIGH_CHLOROPHYLL is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                           > 4 : // reserved for registration and future standardization
                          )

FRIGATE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                            1 : GRISHA_I_CLASS_ASW_CORVETTE,  // GRISHA_I_CLASS_ASW_CORVETTE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                            5 : THETIS_CLASS,  // THETIS_CLASS is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                          > 5 : // reserved for registration and future standardization
                         )

FRONT_AND_AXIS_REFERENCE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : NEGATIVE_X,  // NEGATIVE_X is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        7 : POSITIVE_Z,  // POSITIVE_Z is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                      > 7 : // reserved for registration and future standardization
                                     )

FROZEN_SURFACE_COVER_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : ICE,  // ICE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         6 : SNOW_OVER_ICE,  // SNOW_OVER_ICE is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                       > 6 : // reserved for registration and future standardization
                                      )

FUEL_FACILITIES_AVAILABLE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                          1 : AVIATION_FUEL,  // AVIATION_FUEL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         15 : WATER,  // WATER is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                                       > 15 : // reserved for registration and future standardization
                                      )

FURNITURE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : BOX,  // BOX is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              7 : TABLE,  // TABLE is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                            > 7 : // reserved for registration and future standardization
                           )

GATE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                         1 : CROSSING,  // CROSSING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                         2 : RESTRICTED_ACCESS,  // RESTRICTED_ACCESS is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                         3 : TOLL,  // TOLL is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                       > 3 : // reserved for registration and future standardization
                      )

GEOGRAPHIC_REGION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : AFRICA,  // AFRICA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 9 : SOUTH_AMERICA,  // SOUTH_AMERICA is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                               > 9 : // reserved for registration and future standardization
                              )

GRADING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                            1 : NO_SIDES,  // NO_SIDES is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                            4 : MORE_THAN_TWO_SIDES,  // MORE_THAN_TWO_SIDES is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                          > 4 : // reserved for registration and future standardization
                         )

GRID_DIAGONALIZATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : LOWERLEFT_UPPERRIGHT,  // LOWERLEFT_UPPERRIGHT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    2 : UPPERLEFT_LOWERRIGHT,  // UPPERLEFT_LOWERRIGHT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                  > 2 : // reserved for registration and future standardization
                                 )

GROUND_VEHICLE_FUNCTION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                        1 : AIR_DEFENCE_ARTILLERY,  // AIR_DEFENCE_ARTILLERY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 19, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       20 : TRUCK,  // TRUCK is the EEL denoting the concept also denoted by EEC 20 in the EE Dictionary,
                                     > 20 : // reserved for registration and future standardization
                                    )

GROUND_VEHICLE_PROPULSION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : AIR_CUSHION,  // AIR_CUSHION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              5 : WHEELED,  // WHEELED is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                            > 5 : // reserved for registration and future standardization
                                           )

GUIDED_MISSILE_DESTROYER_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                             1 : MANCHESTER_CLASS_TYPE_42,  // MANCHESTER_CLASS_TYPE_42 is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             2 : SHEFFIELD_CLASS_TYPE_42_BATCH_1,  // SHEFFIELD_CLASS_TYPE_42_BATCH_1 is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                           > 2 : // reserved for registration and future standardization
                                          )

GUIDED_MISSILE_FRIGATE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : BROADSWORD_BOXER_TYPE_22_CLASS,  // BROADSWORD_BOXER_TYPE_22_CLASS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           6 : NANUCHKA_IV_CLASS_CORVETTE,  // NANUCHKA_IV_CLASS_CORVETTE is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                         > 6 : // reserved for registration and future standardization
                                        )

HALLWAY_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                            1 : CIRCULATING,  // CIRCULATING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                            2 : LINEAR,  // LINEAR is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                          > 2 : // reserved for registration and future standardization
                         )

HARBOUR_FACILITY_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                      1 : BULK,  // BULK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     11 : TIMBER_YARD,  // TIMBER_YARD is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                   > 11 : // reserved for registration and future standardization
                                  )

HAZARD_MARKER_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                   1 : BIOLOGICAL,  // BIOLOGICAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  13 : WORKMEN,  // WORKMEN is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                                > 13 : // reserved for registration and future standardization
                               )

HAZARD_SEVERITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                               1 : DANGEROUS,  // DANGEROUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               4 : OBSTRUCTION,  // OBSTRUCTION is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                             > 4 : // reserved for registration and future standardization
                            )

HAZARDOUS_GAS_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : CHEMICAL_AGENT,  // CHEMICAL_AGENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  4 : NONFLAMMABLE_SEWAGE,  // NONFLAMMABLE_SEWAGE is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                > 4 : // reserved for registration and future standardization
                               )

HIGH_CLOUD_GENUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : CIRROCUMULUS,  // CIRROCUMULUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                4 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                              > 4 : // reserved for registration and future standardization
                             )

HIGH_CLOUD_TYPE_OBSERVED_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                         1 : NO_HIGH_CLOUDS,  // NO_HIGH_CLOUDS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        11 : HIGH_CLOUDS_INVISIBLE,  // HIGH_CLOUDS_INVISIBLE is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                      > 11 : // reserved for registration and future standardization
                                     )

HINDUISM_DENOMINATIONAL_FAMILY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : ARYA_SAMAJ,  // ARYA_SAMAJ is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              4 : VAISHNAVITE,  // VAISHNAVITE is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                            > 4 : // reserved for registration and future standardization
                                           )

HORIZONTAL_DATUM_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                                  1 : ADINDAN,  // ADINDAN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     // additional entries of the form i : L, for 2 <= i <= 300, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                301 : ZANDERIJ_SURINAME,  // ZANDERIJ_SURINAME is the EEL denoting the concept also denoted by EEC 301 in the EE Dictionary,
                              > 301 : // reserved for registration and future standardization
                             )

HULK_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                         1 : ACCOMMODATION,  // ACCOMMODATION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                         5 : RESTAURANT,  // RESTAURANT is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                       > 5 : // reserved for registration and future standardization
                      )

HUMAN_FUNCTION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : ASTRONAUT,  // ASTRONAUT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              13 : SWIMMER,  // SWIMMER is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                            > 13 : // reserved for registration and future standardization
                           )

HUMAN_ROLE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                           1 : ASTRONAUT,  // ASTRONAUT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          13 : SWIMMER,  // SWIMMER is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                        > 13 : // reserved for registration and future standardization
                       )

HYDROGRAPHIC_BARRIER_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : BARRAGE,  // BARRAGE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         7 : WEIR,  // WEIR is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                       > 7 : // reserved for registration and future standardization
                                      )

HYDROGRAPHIC_DEPTH_CATEGORY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : ABOVE_SURFACE,  // ABOVE_SURFACE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           4 : SUBMERGED,  // SUBMERGED is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                         > 4 : // reserved for registration and future standardization
                                        )

HYDROGRAPHIC_DEPTH_INFORMATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : KNOWN_OTHER,  // KNOWN_OTHER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              4 : UNKNOWN_BUT_SAFE,  // UNKNOWN_BUT_SAFE is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                            > 4 : // reserved for registration and future standardization
                                           )

HYDROGRAPHIC_OBJECT_ORIGIN_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                          1 : CONTROLLED,  // CONTROLLED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          2 : MAN_MADE,  // MAN_MADE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                          3 : NATURAL,  // NATURAL is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                        > 3 : // reserved for registration and future standardization
                                       )

HYDROGRAPHIC_SURVEY_CONTACT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                1 : NOT_SUBMERSIBLE_VESSEL,  // NOT_SUBMERSIBLE_VESSEL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                2 : SUBMERSIBLE_VESSEL,  // SUBMERSIBLE_VESSEL is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                              > 2 : // reserved for registration and future standardization
                                             )

HYDROLOGIC_PERMANENCE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : DRY,  // DRY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     5 : PERMANENT,  // PERMANENT is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                   > 5 : // reserved for registration and future standardization
                                  )

HYPSOGRAPHIC_PORTRAYAL_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                            1 : APPROX_DEPR,  // APPROX_DEPR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 23, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           24 : TRANSITION_OR_ERRONEOUS,  // TRANSITION_OR_ERRONEOUS is the EEL denoting the concept also denoted by EEC 24 in the EE Dictionary,
                                         > 24 : // reserved for registration and future standardization
                                        )

ICING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : CLEAR_ICE,  // CLEAR_ICE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          6 : SOFT_RIME,  // SOFT_RIME is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                        > 6 : // reserved for registration and future standardization
                       )

INLAND_HYDROGRAPHIC_PERMANENCE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : EPHEMERAL,  // EPHEMERAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              2 : INTERMITTENT,  // INTERMITTENT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                              3 : PERENNIAL,  // PERENNIAL is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                            > 3 : // reserved for registration and future standardization
                                           )

INSTALLATION_BUOY_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : CATENARY_ANCHOR,  // CATENARY_ANCHOR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      2 : SINGLE,  // SINGLE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                    > 2 : // reserved for registration and future standardization
                                   )

INTEREST_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                             1 : FAMOUS_RESIDENCE,  // FAMOUS_RESIDENCE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                             2 : HISTORIC_BATTLEFIELD,  // HISTORIC_BATTLEFIELD is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                             3 : HISTORIC_MONUMENT,  // HISTORIC_MONUMENT is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                           > 3 : // reserved for registration and future standardization
                          )

INTERIOR_WALL_CONSTRUCTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                               1 : CONCRETE,  // CONCRETE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                    // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                               8 : REINFORCED_CONCRETE,  // REINFORCED_CONCRETE is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                             > 8 : // reserved for registration and future standardization
                                            )

IRRIGATION_METHOD_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : DITCH,  // DITCH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 2 : SPRINKLER,  // SPRINKLER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                               > 2 : // reserved for registration and future standardization
                              )

ISLAMIC_DENOMINATIONAL_FAMILY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                              1 : AHMADIYA,  // AHMADIYA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  // additional entries of the form i : L, for 2 <= i <= 16, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                             17 : ZAYDI,  // ZAYDI is the EEL denoting the concept also denoted by EEC 17 in the EE Dictionary,
                                           > 17 : // reserved for registration and future standardization
                                          )

JAINISM_DENOMINATIONAL_FAMILY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                             1 : DIGAMBARA,  // DIGAMBARA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             2 : SVETAMBARA,  // SVETAMBARA is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                           > 2 : // reserved for registration and future standardization
                                          )

JUDAISM_DENOMINATIONAL_FAMILY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                             1 : ASHKENHAZI,  // ASHKENHAZI is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                             7 : UNAFFILIATED,  // UNAFFILIATED is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                           > 7 : // reserved for registration and future standardization
                                          )

LANDING_CRAFT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : ASSAULT,  // ASSAULT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  5 : TANK_LANDING,  // TANK_LANDING is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                > 5 : // reserved for registration and future standardization
                               )

LANE_MARKING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : CENTRE_DASH,  // CENTRE_DASH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 5 : SIDES_SOLID_CTR_SOLID,  // SIDES_SOLID_CTR_SOLID is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                               > 5 : // reserved for registration and future standardization
                              )

LIFT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                         1 : FREIGHT,  // FREIGHT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                         2 : PERSONNEL,  // PERSONNEL is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                       > 2 : // reserved for registration and future standardization
                      )

LIGHT_COLOUR_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                            1 : AMBER,  // AMBER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                            8 : YELLOW,  // YELLOW is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                          > 8 : // reserved for registration and future standardization
                         )

LIGHT_EXHIBITION_CONDITION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                          1 : CONSTANT,  // CONSTANT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          4 : REDUCED_VISIBILITY,  // REDUCED_VISIBILITY is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                        > 4 : // reserved for registration and future standardization
                                       )

LIGHT_FUNCTION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : AEROLIGHT,  // AEROLIGHT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 17, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              18 : UPPER,  // UPPER is the EEL denoting the concept also denoted by EEC 18 in the EE Dictionary,
                            > 18 : // reserved for registration and future standardization
                           )

LIGHT_PATTERN_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                              1 : ALTERNATING,  // ALTERNATING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 40, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             41 : VERY_QUICK_PLUS_LONG_FLASH,  // VERY_QUICK_PLUS_LONG_FLASH is the EEL denoting the concept also denoted by EEC 41 in the EE Dictionary,
                           > 41 : // reserved for registration and future standardization
                          )

LIGHT_RELATIVE_LOCATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : FRONT,  // FRONT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       4 : SHARED,  // SHARED is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                     > 4 : // reserved for registration and future standardization
                                    )

LIGHT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : DISPLAY,  // DISPLAY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                          2 : SPOTLIGHT,  // SPOTLIGHT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                          3 : STREET_LAMP,  // STREET_LAMP is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                        > 3 : // reserved for registration and future standardization
                       )

LIGHT_VISIBILITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : DELIBERATELY_RESTRICTED,  // DELIBERATELY_RESTRICTED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                8 : UNINTENSIFIED,  // UNINTENSIFIED is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                              > 8 : // reserved for registration and future standardization
                             )

LIGHTING_CHARACTERIZATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : BRIGHTLY_LIT,  // BRIGHTLY_LIT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         2 : DIMLY_LIT,  // DIMLY_LIT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                         3 : LIGHTS_OFF,  // LIGHTS_OFF is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                       > 3 : // reserved for registration and future standardization
                                      )

LIGHTNING_POLARITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : NEGATIVE,  // NEGATIVE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  2 : POSITIVE,  // POSITIVE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                > 2 : // reserved for registration and future standardization
                               )

LOCATION_ACCURACY_METHOD_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : APPROXIMATED,  // APPROXIMATED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        9 : SURVEYED,  // SURVEYED is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                      > 9 : // reserved for registration and future standardization
                                     )

LOCATION_ACCURACY_STATEMENT_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : ACCURATE,  // ACCURATE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           7 : UNDISPUTED,  // UNDISPUTED is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                         > 7 : // reserved for registration and future standardization
                                        )

LOW_CLOUD_GENUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                               1 : CUMULONIMBUS,  // CUMULONIMBUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               5 : STRATUS,  // STRATUS is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                             > 5 : // reserved for registration and future standardization
                            )

LOW_CLOUD_TYPE_OBSERVED_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                        1 : NO_LOW_CLOUDS,  // NO_LOW_CLOUDS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       11 : LOW_CLOUDS_INVISIBLE,  // LOW_CLOUDS_INVISIBLE is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                     > 11 : // reserved for registration and future standardization
                                    )

LOWEST_CLOUD_COVER_CATEGORY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                            1 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           11 : SKY_OBSCURED,  // SKY_OBSCURED is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                         > 11 : // reserved for registration and future standardization
                                        )

MARINE_BOUNDARY_LIMIT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                           1 : APPROXIMATE_BATHYMETRY,  // APPROXIMATE_BATHYMETRY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 19, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          20 : TSS_SEPARATION,  // TSS_SEPARATION is the EEL denoting the concept also denoted by EEC 20 in the EE Dictionary,
                                        > 20 : // reserved for registration and future standardization
                                       )

MARINE_CONSTRUCTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : BOULDER_AND_FILL,  // BOULDER_AND_FILL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        4 : OPEN_PILINGS,  // OPEN_PILINGS is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                      > 4 : // reserved for registration and future standardization
                                     )

MARINE_LIGHT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : DIRECTIONAL,  // DIRECTIONAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 8 : VERTICALLY_DISPOSED,  // VERTICALLY_DISPOSED is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                               > 8 : // reserved for registration and future standardization
                              )

MARINE_LINE_ASSOCIATED_ATNAV_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                            1 : DIRECTIONAL_LIGHT,  // DIRECTIONAL_LIGHT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            9 : ONE_OBJECT,  // ONE_OBJECT is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                          > 9 : // reserved for registration and future standardization
                                         )

MARINE_NAVIGATION_LINE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : CLEARING_LINE,  // CLEARING_LINE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           2 : TRANSIT_LINE,  // TRANSIT_LINE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                           3 : UNDEFINED,  // UNDEFINED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                         > 3 : // reserved for registration and future standardization
                                        )

MARINE_PILOT_BOARDING_METHOD_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                            1 : COMES_FROM_SHORE_ON_VESSEL,  // COMES_FROM_SHORE_ON_VESSEL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            2 : HELICOPTER,  // HELICOPTER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                            3 : PILOT_CRUISING_VESSEL,  // PILOT_CRUISING_VESSEL is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                          > 3 : // reserved for registration and future standardization
                                         )

MARINE_PILOT_BOARDING_VEHICLE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                             1 : BOAT,  // BOAT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             2 : HELICOPTER,  // HELICOPTER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                           > 2 : // reserved for registration and future standardization
                                          )

MARINE_REGION_TYPE_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                                    1 : ABANDONED_DRILL_MINEFIELD,  // ABANDONED_DRILL_MINEFIELD is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 153, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  154 : WORKS_IN_PROGRESS,  // WORKS_IN_PROGRESS is the EEL denoting the concept also denoted by EEC 154 in the EE Dictionary,
                                > 154 : // reserved for registration and future standardization
                               )

MARINE_RESCUE_STATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                          1 : EMERGENCY_RADIO,  // EMERGENCY_RADIO is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          8 : SHIPWRECK_REFUGE,  // SHIPWRECK_REFUGE is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                        > 8 : // reserved for registration and future standardization
                                       )

MARINE_ROUTE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                  1 : CENTRE_LINE,  // CENTRE_LINE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 21, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 22 : TWO_WAY,  // TWO_WAY is the EEL denoting the concept also denoted by EEC 22 in the EE Dictionary,
                               > 22 : // reserved for registration and future standardization
                              )

MARINE_STATION_ACTIVITY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                        1 : BARRAGE_SIGNAL,  // BARRAGE_SIGNAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 25, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       26 : WEATHER_SIGNAL,  // WEATHER_SIGNAL is the EEL denoting the concept also denoted by EEC 26 in the EE Dictionary,
                                     > 26 : // reserved for registration and future standardization
                                    )

MARINE_STATION_EQUIPMENT_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                         1 : BOMIS,  // BOMIS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 20, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        21 : UNDERWATER_TELEPHONE,  // UNDERWATER_TELEPHONE is the EEL denoting the concept also denoted by EEC 21 in the EE Dictionary,
                                      > 21 : // reserved for registration and future standardization
                                     )

MARINE_SURVEY_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : CONTROLLED,  // CONTROLLED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  6 : SKETCH,  // SKETCH is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                > 6 : // reserved for registration and future standardization
                               )

MARINE_TRACK_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : BASED_ON_FIXED_MARKS,  // BASED_ON_FIXED_MARKS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 5 : RECOMMENDED_DIRECTION,  // RECOMMENDED_DIRECTION is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                               > 5 : // reserved for registration and future standardization
                              )

MARINE_TRAFFIC_SIGNAL_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                           1 : BERTHING,  // BERTHING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          10 : TRAFFIC_CONTROL_LIGHT,  // TRAFFIC_CONTROL_LIGHT is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                                        > 10 : // reserved for registration and future standardization
                                       )

MARINE_TSS_COMPONENT_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : ARROW,  // ARROW is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    7 : SEP_ZONE_POINT,  // SEP_ZONE_POINT is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                  > 7 : // reserved for registration and future standardization
                                 )

MARINE_WARNING_SIGNAL_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                           1 : CABLE,  // CABLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          15 : WEATHER,  // WEATHER is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                                        > 15 : // reserved for registration and future standardization
                                       )

MARINE_WRECK_STATUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : DANGEROUS,  // DANGEROUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   5 : SHOWING_MAST,  // SHOWING_MAST is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                 > 5 : // reserved for registration and future standardization
                                )

MARINE_WRECK_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                  1 : AIRCRAFT,  // AIRCRAFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 53, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 54 : YACHT,  // YACHT is the EEL denoting the concept also denoted by EEC 54 in the EE Dictionary,
                               > 54 : // reserved for registration and future standardization
                              )

MARK_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                          1 : ANCHORAGE,  // ANCHORAGE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              // additional entries of the form i : L, for 2 <= i <= 77, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                         78 : YACHTING,  // YACHTING is the EEL denoting the concept also denoted by EEC 78 in the EE Dictionary,
                       > 78 : // reserved for registration and future standardization
                      )

MAST_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                         1 : COMMUNICATIONS,  // COMMUNICATIONS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                         5 : TELEVISION,  // TELEVISION is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                       > 5 : // reserved for registration and future standardization
                      )

MATERIAL_HANDLING_FACILITIES_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                             1 : BULK_FUEL,  // BULK_FUEL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            15 : SYNCROLIFT,  // SYNCROLIFT is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                                          > 15 : // reserved for registration and future standardization
                                         )

MERCHANT_MARINE_VESSEL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : ADEPT_CLASS_TUGBOAT,  // ADEPT_CLASS_TUGBOAT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           2 : DOG_CLASS_TUGBOAT,  // DOG_CLASS_TUGBOAT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                         > 2 : // reserved for registration and future standardization
                                        )

MIDDLE_CLOUD_GENUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : ALTOCUMULUS,  // ALTOCUMULUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  4 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                > 4 : // reserved for registration and future standardization
                               )

MIDDLE_CLOUD_TYPE_OBSERVED_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                           1 : NO_MIDDLE_CLOUDS,  // NO_MIDDLE_CLOUDS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          11 : MIDDLE_CLOUDS_INVISIBLE,  // MIDDLE_CLOUDS_INVISIBLE is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                        > 11 : // reserved for registration and future standardization
                                       )

MILITARY_ASSET_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                    1 : AIR_DEFENCE_ARTILLERY,  // AIR_DEFENCE_ARTILLERY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 18, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   19 : TRAILER,  // TRAILER is the EEL denoting the concept also denoted by EEC 19 in the EE Dictionary,
                                 > 19 : // reserved for registration and future standardization
                                )

MILITARY_FORCE_ALLEGIANCE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                          1 : FRIEND,  // FRIEND is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 11, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         12 : ALTERNATE_9,  // ALTERNATE_9 is the EEL denoting the concept also denoted by EEC 12 in the EE Dictionary,
                                       > 12 : // reserved for registration and future standardization
                                      )

MILITARY_USE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                            1 : AMMUNITION_STORAGE,  // AMMUNITION_STORAGE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                            7 : STORAGE,  // STORAGE is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                          > 7 : // reserved for registration and future standardization
                         )

MINE_ACOUSTIC_ACTUATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : AUDIO_FREQUENCY,  // AUDIO_FREQUENCY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       4 : MULTIPLE_FREQUENCY,  // MULTIPLE_FREQUENCY is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                     > 4 : // reserved for registration and future standardization
                                    )

MINE_ACTUATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : CONTROLLED,  // CONTROLLED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              2 : INDEPENDENT,  // INDEPENDENT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                            > 2 : // reserved for registration and future standardization
                           )

MINE_ALLEGIANCE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                1 : FRIEND,  // FRIEND is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 11, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               12 : ALTERNATE_9,  // ALTERNATE_9 is the EEL denoting the concept also denoted by EEC 12 in the EE Dictionary,
                             > 12 : // reserved for registration and future standardization
                            )

MINE_ANTI_HUNTING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : ACOUSTIC_IMPEDANCE,  // ACOUSTIC_IMPEDANCE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      7 : SONAR_DECOYS,  // SONAR_DECOYS is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                    > 7 : // reserved for registration and future standardization
                                   )

MINE_ANTI_RECOVERY_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : MOORING_LEVEL_SWITCH,  // MOORING_LEVEL_SWITCH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       2 : STRIPPING_EQUIPMENT,  // STRIPPING_EQUIPMENT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                       3 : SWITCH,  // SWITCH is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                     > 3 : // reserved for registration and future standardization
                                    )

MINE_ANTI_SWEEP_WIRE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : CHAIN_MOORING,  // CHAIN_MOORING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         5 : SPROCKET,  // SPROCKET is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                       > 5 : // reserved for registration and future standardization
                                      )

MINE_CABLELESS_ACTUATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : ALTERNATING_CURRENT,  // ALTERNATING_CURRENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        2 : EXPLICIT,  // EXPLICIT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                        3 : FREQUENCY,  // FREQUENCY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                      > 3 : // reserved for registration and future standardization
                                     )

MINE_CAPABILITY_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : ACTIVE,  // ACTIVE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    8 : RISING,  // RISING is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                  > 8 : // reserved for registration and future standardization
                                 )

MINE_CONTACT_ACTUATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : CONTACT,  // CONTACT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      2 : ROD,  // ROD is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                      3 : SNAGLINE,  // SNAGLINE is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                    > 3 : // reserved for registration and future standardization
                                   )

MINE_CONTROL_METHOD_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : CABLE,  // CABLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   2 : CABLELESS,  // CABLELESS is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                 > 2 : // reserved for registration and future standardization
                                )

MINE_COUNTERMEASURE_VESSEL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                               1 : HUNT_CLASS_PATROL_CRAFT,  // HUNT_CLASS_PATROL_CRAFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               2 : SANDOWN_CLASS_MINEHUNTER,  // SANDOWN_CLASS_MINEHUNTER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                             > 2 : // reserved for registration and future standardization
                                            )

MINE_INDEPENDENT_ACTUATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                          1 : CONTACT,  // CONTACT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          2 : INFLUENCE,  // INFLUENCE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                        > 2 : // reserved for registration and future standardization
                                       )

MINE_INFLUENCE_ACTUATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : ACOUSTIC,  // ACOUSTIC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        4 : PRESSURE,  // PRESSURE is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                      > 4 : // reserved for registration and future standardization
                                     )

MINE_INFORMATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : DEVICE,  // DEVICE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     2 : SUBTYPE,  // SUBTYPE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                     3 : USE,  // USE is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                   > 3 : // reserved for registration and future standardization
                                  )

MINE_MAGNETIC_SENSITIVITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : COARSE,  // COARSE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         2 : MIDSENSITIVE,  // MIDSENSITIVE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                         3 : SENSITIVE,  // SENSITIVE is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                       > 3 : // reserved for registration and future standardization
                                      )

MINE_MOORED_POSITION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : DEEP_MOORED,  // DEEP_MOORED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         2 : SHORT_TETHERED,  // SHORT_TETHERED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                       > 2 : // reserved for registration and future standardization
                                      )

MINE_OPERATIONAL_USE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : ANTISURFACE_EFFECT_VEHICLE,  // ANTISURFACE_EFFECT_VEHICLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    6 : MEDIUM_DEPTH_ANTISUBMARINE,  // MEDIUM_DEPTH_ANTISUBMARINE is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                  > 6 : // reserved for registration and future standardization
                                 )

MINE_OTHER_ACTUATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : COSMIC_RAY,  // COSMIC_RAY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         7 : VELOCITY_FIELD,  // VELOCITY_FIELD is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                       > 7 : // reserved for registration and future standardization
                                      )

MINE_OTHER_INFORMATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : IDENTITY,  // IDENTITY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           5 : TYPE,  // TYPE is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                         > 5 : // reserved for registration and future standardization
                                        )

MINE_POSITION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : GROUND,  // GROUND is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  2 : MOORED,  // MOORED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                > 2 : // reserved for registration and future standardization
                               )

MINE_SPECIAL_CAPABILITY_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                             1 : ANTICOUNTERMINING,  // ANTICOUNTERMINING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 13, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            14 : VESSEL_COUNT,  // VESSEL_COUNT is the EEL denoting the concept also denoted by EEC 14 in the EE Dictionary,
                                          > 14 : // reserved for registration and future standardization
                                         )

MINE_STATUS_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                            1 : AFLOAT,  // AFLOAT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                           10 : SUNK,  // SUNK is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                         > 10 : // reserved for registration and future standardization
                        )

MINE_TACTICAL_USE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : ANTIHOVERCRAFT,  // ANTIHOVERCRAFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 9 : PRACTICE,  // PRACTICE is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                               > 9 : // reserved for registration and future standardization
                              )

MINEFIELD_DELIVERY_METHOD_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : AERIAL_AND_ARTILLERY_DELIVERED,  // AERIAL_AND_ARTILLERY_DELIVERED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         4 : MECHANICAL,  // MECHANICAL is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                       > 4 : // reserved for registration and future standardization
                                      )

MINEFIELD_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : DELIBERATE_PROTECTIVE_CONVENTIONAL,  // DELIBERATE_PROTECTIVE_CONVENTIONAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              7 : TACTICAL,  // TACTICAL is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                            > 7 : // reserved for registration and future standardization
                           )

MISSILE_SITE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                  1 : ANTIBALLISTIC,  // ANTIBALLISTIC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 15 : SURFACE_TO_SURFACE,  // SURFACE_TO_SURFACE is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                               > 15 : // reserved for registration and future standardization
                              )

MISSING_INFORMATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : TERRAIN_RELIEF,  // TERRAIN_RELIEF is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      > 1 : // reserved for registration and future standardization
                                     )

MONTH_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                      1 : JANUARY,  // JANUARY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                          // additional entries of the form i : L, for 2 <= i <= 11, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                     12 : DECEMBER,  // DECEMBER is the EEL denoting the concept also denoted by EEC 12 in the EE Dictionary,
                   > 12 : // reserved for registration and future standardization
                  )

MOON_PHASE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : NEW_MOON,  // NEW_MOON is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          8 : WANING_CRESCENT,  // WANING_CRESCENT is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                        > 8 : // reserved for registration and future standardization
                       )

MOORING_CONNECTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : FLEXIBLE_RESTRAINT,  // FLEXIBLE_RESTRAINT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       2 : MOORING_BUOY,  // MOORING_BUOY is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                     > 2 : // reserved for registration and future standardization
                                    )

MOORING_FACILITY_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : BOLLARD,  // BOLLARD is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     6 : TIE_UP_WALL,  // TIE_UP_WALL is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                   > 6 : // reserved for registration and future standardization
                                  )

MULTIPASS_SURFACE_DEGRADATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                             1 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             2 : MODERATE,  // MODERATE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                             3 : HEAVY,  // HEAVY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                           > 3 : // reserved for registration and future standardization
                                          )

MUNITION_FUSE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : INFRARED,  // INFRARED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  6 : TRIP_WIRE,  // TRIP_WIRE is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                > 6 : // reserved for registration and future standardization
                               )

MUNITION_PROTECTION_LEVEL_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : NO_PROTECTION,  // NO_PROTECTION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         4 : HARDENED,  // HARDENED is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                       > 4 : // reserved for registration and future standardization
                                      )

NATIONAL_PAINT_SCHEME_VALUE_SET_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                               1 : HISTORICAL_OR_OTHER,  // HISTORICAL_OR_OTHER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               2 : ISO_ENGLISH_CTRY_NAME,  // ISO_ENGLISH_CTRY_NAME is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                               3 : UNCONSTRAINED,  // UNCONSTRAINED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                             > 3 : // reserved for registration and future standardization
                                            )

NATIVE_SETTLEMENT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : CENTRALIZED,  // CENTRALIZED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      2 : CONTINUOUS,  // CONTINUOUS is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                    > 2 : // reserved for registration and future standardization
                                   )

NAUTICAL_GATE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : CAISSON,  // CAISSON is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  7 : TIDAL,  // TIDAL is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                > 7 : // reserved for registration and future standardization
                               )

NAVIGATION_PATH_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : GEODESIC,  // GEODESIC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    2 : LOXODROME,  // LOXODROME is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                  > 2 : // reserved for registration and future standardization
                                 )

NAVIGATION_SYSTEM_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                       1 : AERO_RADIO,  // AERO_RADIO is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 68, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      69 : VORTAC,  // VORTAC is the EEL denoting the concept also denoted by EEC 69 in the EE Dictionary,
                                    > 69 : // reserved for registration and future standardization
                                   )

NON_SUB_CONTACT_SOURCE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                       1 : ABSTRACTS_1914_18,  // ABSTRACTS_1914_18 is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 54, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      55 : US_NAVY_SONAR,  // US_NAVY_SONAR is the EEL denoting the concept also denoted by EEC 55 in the EE Dictionary,
                                    > 55 : // reserved for registration and future standardization
                                   )

NON_SUB_CONTACT_SOURCE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                            1 : ACTION,  // ACTION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 19, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           20 : US_WRECK_LIST,  // US_WRECK_LIST is the EEL denoting the concept also denoted by EEC 20 in the EE Dictionary,
                                         > 20 : // reserved for registration and future standardization
                                        )

OBJECT_ASPECT_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                              1 : BODY,  // BODY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 18, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             19 : SHOULDER,  // SHOULDER is the EEL denoting the concept also denoted by EEC 19 in the EE Dictionary,
                           > 19 : // reserved for registration and future standardization
                          )

OBJECT_CONFIGURATION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                     1 : DISPERSED,  // DISPERSED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    11 : WELL_DEFINED,  // WELL_DEFINED is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                  > 11 : // reserved for registration and future standardization
                                 )

OBJECT_FACET_SHAPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : EQUILATERAL_TRIANGLE,  // EQUILATERAL_TRIANGLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  9 : TRIANGLE,  // TRIANGLE is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                > 9 : // reserved for registration and future standardization
                               )

OBJECT_ORDINAL_RANK_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : FIRST,  // FIRST is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   5 : FIFTH,  // FIFTH is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                 > 5 : // reserved for registration and future standardization
                                )

OBJECT_ORIENTATION_WRT_VERTICAL_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                               1 : HORIZONTAL,  // HORIZONTAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                    // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                               5 : UPRIGHT,  // UPRIGHT is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                             > 5 : // reserved for registration and future standardization
                                            )

OBJECT_SET_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                1 : AERONAUTICAL,  // AERONAUTICAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 52, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               53 : WATER_BODY_BATHYMETRY,  // WATER_BODY_BATHYMETRY is the EEL denoting the concept also denoted by EEC 53 in the EE Dictionary,
                             > 53 : // reserved for registration and future standardization
                            )

OBSCURANT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : ADVECTION_FOG,  // ADVECTION_FOG is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 15, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              16 : URBAN_HAZE,  // URBAN_HAZE is the EEL denoting the concept also denoted by EEC 16 in the EE Dictionary,
                            > 16 : // reserved for registration and future standardization
                           )

OBSERVATION_PLATFORM_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : AIRCRAFT,  // AIRCRAFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         8 : VESSEL,  // VESSEL is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                       > 8 : // reserved for registration and future standardization
                                      )

OBSERVED_VISIBILITY_REPORT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                               1 : MINIMUM,  // MINIMUM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                    // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                               8 : TOWER_VAR_LOW,  // TOWER_VAR_LOW is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                             > 8 : // reserved for registration and future standardization
                                            )

OCEAN_FLOOR_REGION_NAME_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                             1 : ABYSSAL_HILLS,  // ABYSSAL_HILLS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 64, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            65 : ZONE,  // ZONE is the EEL denoting the concept also denoted by EEC 65 in the EE Dictionary,
                                          > 65 : // reserved for registration and future standardization
                                         )

OCEAN_NAME_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : ANTARCTIC,  // ANTARCTIC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          9 : SOUTH_PACIFIC,  // SOUTH_PACIFIC is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                        > 9 : // reserved for registration and future standardization
                       )

OFFSHORE_PLATFORM_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                       1 : ACCOMMODATION,  // ACCOMMODATION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 11, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      12 : SINGLE_ANCHOR_LEG_MOORING,  // SINGLE_ANCHOR_LEG_MOORING is the EEL denoting the concept also denoted by EEC 12 in the EE Dictionary,
                                    > 12 : // reserved for registration and future standardization
                                   )

OIL_BARRIER_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : FLOATING,  // FLOATING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                2 : OIL_RETENTION_PIPE,  // OIL_RETENTION_PIPE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                              > 2 : // reserved for registration and future standardization
                             )

OMNI_DIR_SHIP_NOISE_CONFIDENCE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : LOW,  // LOW is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              2 : MEDIUM,  // MEDIUM is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                              3 : HIGH,  // HIGH is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                            > 3 : // reserved for registration and future standardization
                                           )

OPERATING_RESTRICTIONS_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : DAYTIME_ONLY,  // DAYTIME_ONLY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           7 : SPECIAL_RESTRICTIONS,  // SPECIAL_RESTRICTIONS is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                         > 7 : // reserved for registration and future standardization
                                        )

OPERATING_TIME_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : CONTINUOUS,  // CONTINUOUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              5 : WINTER_TIME_NOVEMBER_MARCH,  // WINTER_TIME_NOVEMBER_MARCH is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                            > 5 : // reserved for registration and future standardization
                           )

OVERHEAD_OBSTRUCTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : BRIDGE_SUPERSTRUCTURE,  // BRIDGE_SUPERSTRUCTURE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         6 : VIADUCT_FRAME_CONSTRUCTION,  // VIADUCT_FRAME_CONSTRUCTION is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                       > 6 : // reserved for registration and future standardization
                                      )

PARAPET_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                            1 : EARTHEN_WALL,  // EARTHEN_WALL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                          > 1 : // reserved for registration and future standardization
                         )

PASQUILL_ATMOSPHERE_STABILITY_INDEX_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                    1 : CATEGORY_A,  // CATEGORY_A is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                        // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                   10 : CATEGORY_G,  // CATEGORY_G is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                                                 > 10 : // reserved for registration and future standardization
                                                )

PATROL_CRAFT_TYPE_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                                   1 : AB_21_CLASS,  // AB_21_CLASS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 362, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 363 : ZIYAD_CLASS,  // ZIYAD_CLASS is the EEL denoting the concept also denoted by EEC 363 in the EE Dictionary,
                               > 363 : // reserved for registration and future standardization
                              )

PEAK_TIDE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : LOW,  // LOW is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              2 : HIGH,  // HIGH is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                            > 2 : // reserved for registration and future standardization
                           )

PEDESTRIAN_TRAVERSABILITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : POLYGON,  // POLYGON is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         5 : WATER_BODY_WADABLE,  // WATER_BODY_WADABLE is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                       > 5 : // reserved for registration and future standardization
                                      )

PERIODIC_RESTRICTION_END_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                         1 : JANUARY,  // JANUARY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 11, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        12 : DECEMBER,  // DECEMBER is the EEL denoting the concept also denoted by EEC 12 in the EE Dictionary,
                                      > 12 : // reserved for registration and future standardization
                                     )

PERIODIC_RESTRICTION_START_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                           1 : JANUARY,  // JANUARY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 11, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          12 : DECEMBER,  // DECEMBER is the EEL denoting the concept also denoted by EEC 12 in the EE Dictionary,
                                        > 12 : // reserved for registration and future standardization
                                       )

PERIODIC_RESTRICTION_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                          1 : CLOSED,  // CLOSED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 16, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         17 : DECEMBER_SEASONAL_LIMIT,  // DECEMBER_SEASONAL_LIMIT is the EEL denoting the concept also denoted by EEC 17 in the EE Dictionary,
                                       > 17 : // reserved for registration and future standardization
                                      )

PHYSICAL_STATE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : BOSE_EINSTEIN_CONDENSATE,  // BOSE_EINSTEIN_CONDENSATE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              5 : SOLID,  // SOLID is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                            > 5 : // reserved for registration and future standardization
                           )

PIPELINE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                             1 : BUBBLER_SYSTEM,  // BUBBLER_SYSTEM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             8 : WATER_INTAKE,  // WATER_INTAKE is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                           > 8 : // reserved for registration and future standardization
                          )

PLANT_COMPONENT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : FOLIAGE,  // FOLIAGE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    2 : STEM,  // STEM is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                  > 2 : // reserved for registration and future standardization
                                 )

POINT_OBJECT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : AGGREGATE,  // AGGREGATE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 8 : VERTICAL_STRUCTURE,  // VERTICAL_STRUCTURE is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                               > 8 : // reserved for registration and future standardization
                              )

POND_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                         1 : FISH,  // FISH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                         2 : RESERVOIR,  // RESERVOIR is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                         3 : WASTE,  // WASTE is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                       > 3 : // reserved for registration and future standardization
                      )

POPULATED_PLACE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : CITY,  // CITY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    8 : VILLAGE,  // VILLAGE is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                  > 8 : // reserved for registration and future standardization
                                 )

POSTURE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                        1 : CRAWLING,  // CRAWLING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                            // additional entries of the form i : L, for 2 <= i <= 18, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                       19 : WADING,  // WADING is the EEL denoting the concept also denoted by EEC 19 in the EE Dictionary,
                     > 19 : // reserved for registration and future standardization
                    )

POWER_PLANT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : HYDRO_ELECTRIC,  // HYDRO_ELECTRIC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                7 : WIND,  // WIND is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                              > 7 : // reserved for registration and future standardization
                             )

PRECIPITATION_INTENSITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : NO_PRECIPITATION_PRESENT,  // NO_PRECIPITATION_PRESENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       4 : HEAVY,  // HEAVY is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                     > 4 : // reserved for registration and future standardization
                                    )

PRECIPITATION_PHASE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : LIQUID,  // LIQUID is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   2 : MIXED,  // MIXED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                   3 : SOLID,  // SOLID is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                 > 3 : // reserved for registration and future standardization
                                )

PRECIPITATION_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                   1 : DIAMOND_DUST,  // DIAMOND_DUST is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 21, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  22 : SOLID_PRECIP,  // SOLID_PRECIP is the EEL denoting the concept also denoted by EEC 22 in the EE Dictionary,
                                > 22 : // reserved for registration and future standardization
                               )

PREDOMINANT_SURROUND_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : OPEN_TERRAIN,  // OPEN_TERRAIN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         2 : STRUCTURES,  // STRUCTURES is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                         3 : TREES,  // TREES is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                       > 3 : // reserved for registration and future standardization
                                      )

PRESENT_WEATHER_TYPE_AUTOMATED_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                               1 : BLOWING_DRFT_SNOW_SAND,  // BLOWING_DRFT_SNOW_SAND is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 75, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              76 : VISIB_gt_1r0_KM_BLOWING_DRFT_SNOW_SAND,  // VISIB_gt_1r0_KM_BLOWING_DRFT_SNOW_SAND is the EEL denoting the concept also denoted by EEC 76 in the EE Dictionary,
                                            > 76 : // reserved for registration and future standardization
                                           )

PRESENT_WEATHER_TYPE_MANUAL_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                                             1 : BLOWING_SNOW_HVY,  // BLOWING_SNOW_HVY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 99, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           100 : VIS_REDUCED_BY_SMOKE_NO_PRECIP,  // VIS_REDUCED_BY_SMOKE_NO_PRECIP is the EEL denoting the concept also denoted by EEC 100 in the EE Dictionary,
                                         > 100 : // reserved for registration and future standardization
                                        )

PRESENT_WEATHER_TYPE_SPECIAL_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                             1 : ARCTIC_ANTARCTIC_SEA_SMOKE,  // ARCTIC_ANTARCTIC_SEA_SMOKE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 73, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            74 : WHITEOUT,  // WHITEOUT is the EEL denoting the concept also denoted by EEC 74 in the EE Dictionary,
                                          > 74 : // reserved for registration and future standardization
                                         )

PRESSURE_ALTIMETER_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                          1 : GOOD,  // GOOD is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          9 : MISS,  // MISS is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                        > 9 : // reserved for registration and future standardization
                                       )

PRI_WEAPON_DEPLOYED_POS_CATEGORY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                1 : DEPLOYED,  // DEPLOYED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                     // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                4 : STOWED,  // STOWED is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                              > 4 : // reserved for registration and future standardization
                                             )

PRIMARY_BYPRODUCT_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                  1 : ASH,  // ASH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 18, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 19 : WOODCHIP,  // WOODCHIP is the EEL denoting the concept also denoted by EEC 19 in the EE Dictionary,
                               > 19 : // reserved for registration and future standardization
                              )

PRIMARY_ENTRANCE_LOCATION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                          1 : BACK_CENTRE_ABOVE_GRADE,  // BACK_CENTRE_ABOVE_GRADE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 24, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         25 : UNKNOWN_LOCATION,  // UNKNOWN_LOCATION is the EEL denoting the concept also denoted by EEC 25 in the EE Dictionary,
                                       > 25 : // reserved for registration and future standardization
                                      )

PRIMARY_MATERIAL_TYPE_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                                       1 : AIRCRAFT,  // AIRCRAFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 146, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     147 : ZINC,  // ZINC is the EEL denoting the concept also denoted by EEC 147 in the EE Dictionary,
                                   > 147 : // reserved for registration and future standardization
                                  )

PRIMARY_PRODUCT_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                                 1 : AIRCRAFT,  // AIRCRAFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 130, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               131 : ZINC,  // ZINC is the EEL denoting the concept also denoted by EEC 131 in the EE Dictionary,
                             > 131 : // reserved for registration and future standardization
                            )

PRIMARY_RAW_MATERIAL_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                     1 : ALUMINUM,  // ALUMINUM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 96, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    97 : ZINC,  // ZINC is the EEL denoting the concept also denoted by EEC 97 in the EE Dictionary,
                                  > 97 : // reserved for registration and future standardization
                                 )

PRIMARY_SURFACE_THERMAL_CONDITION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                  1 : AERODYNAMICALLY_HEATED,  // AERODYNAMICALLY_HEATED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 13 : WARMED_PASSIVELY,  // WARMED_PASSIVELY is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                                               > 13 : // reserved for registration and future standardization
                                              )

PROPERTY_SET_DATA_SOURCE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : ANALYSIS,  // ANALYSIS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        4 : OBSERVATION,  // OBSERVATION is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                      > 4 : // reserved for registration and future standardization
                                     )

PROPERTY_SET_SPATIAL_DOMAIN_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : LAYER,  // LAYER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           8 : WATER_BODY_FLOOR,  // WATER_BODY_FLOOR is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                         > 8 : // reserved for registration and future standardization
                                        )

RADAR_SIGNIFICANCE_FACTOR_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                          1 : ASPHALT,  // ASPHALT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         15 : WATER,  // WATER is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                                       > 15 : // reserved for registration and future standardization
                                      )

RADAR_STATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : AERODROME,  // AERODROME is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  4 : MARINE_TRAFFIC_SURVEILLANCE,  // MARINE_TRAFFIC_SURVEILLANCE is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                > 4 : // reserved for registration and future standardization
                               )

RADAR_TRANSPONDER_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : LEADING_LINE_RACON,  // LEADING_LINE_RACON is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      2 : RACON_TRANSPONDER,  // RACON_TRANSPONDER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                      3 : RAMARK_BEACON,  // RAMARK_BEACON is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                    > 3 : // reserved for registration and future standardization
                                   )

RADIO_STATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : AERONAUTICAL_BEACON,  // AERONAUTICAL_BEACON is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  7 : ROTATING_PATTERN_BEACON,  // ROTATING_PATTERN_BEACON is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                > 7 : // reserved for registration and future standardization
                               )

RADIOLOGIC_AGENT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                      1 : ALKALI_METAL,  // ALKALI_METAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 16, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     17 : WATER,  // WATER is the EEL denoting the concept also denoted by EEC 17 in the EE Dictionary,
                                   > 17 : // reserved for registration and future standardization
                                  )

RAILING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                            1 : BALUSTRADE,  // BALUSTRADE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                            4 : WALL_HANDRAIL,  // WALL_HANDRAIL is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                          > 4 : // reserved for registration and future standardization
                         )

RAILWAY_GAUGE_CATEGORY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : ANY,  // ANY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      5 : STANDARD,  // STANDARD is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                    > 5 : // reserved for registration and future standardization
                                   )

RAILWAY_POWER_SOURCE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : ELECTRIFIED_TRACK,  // ELECTRIFIED_TRACK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    2 : NON_ELECTRIFIED,  // NON_ELECTRIFIED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                    3 : OVERHEAD_ELECTRIFIED,  // OVERHEAD_ELECTRIFIED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                  > 3 : // reserved for registration and future standardization
                                 )

RAILWAY_TRACK_ARRANGEMENT_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : DOUBLE,  // DOUBLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         4 : SINGLE,  // SINGLE is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                       > 4 : // reserved for registration and future standardization
                                      )

RAILWAY_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                             1 : ABANDONED,  // ABANDONED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 // additional entries of the form i : L, for 2 <= i <= 24, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                            25 : TRAMWAY,  // TRAMWAY is the EEL denoting the concept also denoted by EEC 25 in the EE Dictionary,
                          > 25 : // reserved for registration and future standardization
                         )

RAPID_CLASS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                           1 : I,  // I is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                           6 : VI,  // VI is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                         > 6 : // reserved for registration and future standardization
                        )

RECOMMENDED_TRACK_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : FIXED_MARKS,  // FIXED_MARKS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      2 : NOT_FIXED_MARKS,  // NOT_FIXED_MARKS is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                    > 2 : // reserved for registration and future standardization
                                   )

RECORDING_DATE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                    1 : AERIAL_PHOTOGRAPHY,  // AERIAL_PHOTOGRAPHY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 30, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   31 : SURVEY,  // SURVEY is the EEL denoting the concept also denoted by EEC 31 in the EE Dictionary,
                                 > 31 : // reserved for registration and future standardization
                                )

REGIONAL_STYLE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : AFRICA,  // AFRICA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 18, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              19 : WESTERN_EUROPE,  // WESTERN_EUROPE is the EEL denoting the concept also denoted by EEC 19 in the EE Dictionary,
                            > 19 : // reserved for registration and future standardization
                           )

RELATIVE_LOCATION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                  1 : ABOVE_SRF,  // ABOVE_SRF is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 37, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 38 : UNDERGROUND,  // UNDERGROUND is the EEL denoting the concept also denoted by EEC 38 in the EE Dictionary,
                               > 38 : // reserved for registration and future standardization
                              )

RELIGIOUS_DESIGNATION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                      1 : AGNOSTICISM,  // AGNOSTICISM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 26, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     27 : ZOROASTRIANISM,  // ZOROASTRIANISM is the EEL denoting the concept also denoted by EEC 27 in the EE Dictionary,
                                   > 27 : // reserved for registration and future standardization
                                  )

RESERVOIR_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : CONSTRUCTED_BASIN,  // CONSTRUCTED_BASIN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              2 : DAM_IMPOUND,  // DAM_IMPOUND is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                            > 2 : // reserved for registration and future standardization
                           )

RF_DIRECTIVITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : UNIDIRECTIONAL,  // UNIDIRECTIONAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              2 : BIDIRECTIONAL,  // BIDIRECTIONAL is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                              3 : OMNI_DIRECTIONAL,  // OMNI_DIRECTIONAL is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                            > 3 : // reserved for registration and future standardization
                           )

ROAD_INTERCHANGE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                      1 : CLOVERLEAF,  // CLOVERLEAF is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     10 : WYE,  // WYE is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                                   > 10 : // reserved for registration and future standardization
                                  )

ROAD_JUNCTION_CONNECTIVITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                          1 : FULL,  // FULL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          2 : RESTRICTED,  // RESTRICTED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                        > 2 : // reserved for registration and future standardization
                                       )

ROAD_LANE_ADJACENCY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : BOTH,  // BOTH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   4 : RIGHT,  // RIGHT is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                 > 4 : // reserved for registration and future standardization
                                )

ROAD_LANE_CONTROL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : STOP_SIGN,  // STOP_SIGN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      2 : TRAFFIC_LIGHT,  // TRAFFIC_LIGHT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                      3 : YIELD_SIGN,  // YIELD_SIGN is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                    > 3 : // reserved for registration and future standardization
                                   )

ROAD_LANE_LIGHT_STATE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : FLASHING_RED,  // FLASHING_RED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     7 : YELLOW,  // YELLOW is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                   > 7 : // reserved for registration and future standardization
                                  )

ROAD_LANE_PASSING_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : BOTH,  // BOTH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 4 : RIGHT,  // RIGHT is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                               > 4 : // reserved for registration and future standardization
                              )

ROAD_LANE_TURN_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : LEFT_U_TURN_THROUGH,  // LEFT_U_TURN_THROUGH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              11 : U_TURN_THROUGH,  // U_TURN_THROUGH is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                            > 11 : // reserved for registration and future standardization
                           )

ROAD_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                         1 : LANEWAY,  // LANEWAY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                         4 : STREET,  // STREET is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                       > 4 : // reserved for registration and future standardization
                      )

ROCK_FORMATION_STRUCTURE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : COLUMNAR,  // COLUMNAR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        2 : NEEDLE,  // NEEDLE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                        3 : PINNACLE,  // PINNACLE is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                      > 3 : // reserved for registration and future standardization
                                     )

ROLLING_STOCK_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                   1 : BOLSTER,  // BOLSTER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 26, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  27 : WELL,  // WELL is the EEL denoting the concept also denoted by EEC 27 in the EE Dictionary,
                                > 27 : // reserved for registration and future standardization
                               )

ROOF_ASSEMBLY_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                   1 : ASPHALT_SHINGLE,  // ASPHALT_SHINGLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 18, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  19 : WOOD_SHINGLE,  // WOOD_SHINGLE is the EEL denoting the concept also denoted by EEC 19 in the EE Dictionary,
                                > 19 : // reserved for registration and future standardization
                               )

ROOF_FRAMING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : CONCRETE_OVER_STEEL_DECK,  // CONCRETE_OVER_STEEL_DECK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 5 : WOOD_TRUSS,  // WOOD_TRUSS is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                               > 5 : // reserved for registration and future standardization
                              )

ROOF_PREDOMINANT_PATTERN_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                         1 : BAMBOO,  // BAMBOO is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 16, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        17 : THATCH,  // THATCH is the EEL denoting the concept also denoted by EEC 17 in the EE Dictionary,
                                      > 17 : // reserved for registration and future standardization
                                     )

ROOF_PREDOMINANT_SURFACE_MATERIAL_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                  1 : ALUMINUM,  // ALUMINUM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 26, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 27 : WOOD,  // WOOD is the EEL denoting the concept also denoted by EEC 27 in the EE Dictionary,
                                               > 27 : // reserved for registration and future standardization
                                              )

ROOF_SHAPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                           1 : CONICAL_OR_PEAKED_OR_NUN,  // CONICAL_OR_PEAKED_OR_NUN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 23, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          24 : WITH_TURRET,  // WITH_TURRET is the EEL denoting the concept also denoted by EEC 24 in the EE Dictionary,
                        > 24 : // reserved for registration and future standardization
                       )

ROOF_SHEATHING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : DIMENSION_LUMBER,  // DIMENSION_LUMBER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   4 : REINFORCED_CONCRETE,  // REINFORCED_CONCRETE is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                 > 4 : // reserved for registration and future standardization
                                )

ROOF_STYLE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                           1 : CONICAL,  // CONICAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 13, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          14 : SHED,  // SHED is the EEL denoting the concept also denoted by EEC 14 in the EE Dictionary,
                        > 14 : // reserved for registration and future standardization
                       )

ROOM_CEILING_CONSTRUCTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                              1 : DIMENSION_LUMBER,  // DIMENSION_LUMBER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              6 : REINFORCED_CONCRETE,  // REINFORCED_CONCRETE is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                            > 6 : // reserved for registration and future standardization
                                           )

ROUTE_CONSTRICTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : BUILDING_PASSAGE,  // BUILDING_PASSAGE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       4 : UNDERPASS,  // UNDERPASS is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                     > 4 : // reserved for registration and future standardization
                                    )

ROUTE_CROSSING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : INTERSECTION,  // INTERSECTION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   2 : STAR_SHAPED_BRANCHING,  // STAR_SHAPED_BRANCHING is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                   3 : T_JUNCTION,  // T_JUNCTION is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                 > 3 : // reserved for registration and future standardization
                                )

ROUTE_EXPANSION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : ROAD_SIDING,  // ROAD_SIDING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  > 1 : // reserved for registration and future standardization
                                 )

ROUTE_WEATHER_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : ALL_WEATHER,  // ALL_WEATHER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  2 : FAIR_WEATHER,  // FAIR_WEATHER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                  3 : LIMITED_ALL_WEATHER,  // LIMITED_ALL_WEATHER is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                > 3 : // reserved for registration and future standardization
                               )

RUBBLE_STABILITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : LOOSE,  // LOOSE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                2 : CONSOLIDATED,  // CONSOLIDATED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                              > 2 : // reserved for registration and future standardization
                             )

RUNWAY_END_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : HIGH,  // HIGH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                          2 : LOW,  // LOW is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                        > 2 : // reserved for registration and future standardization
                       )

RUNWAY_POINT_ABEAM_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : GLIDE_SLOPE,  // GLIDE_SLOPE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       8 : PAR_TOUCHDOWN_REFLECTOR,  // PAR_TOUCHDOWN_REFLECTOR is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                     > 8 : // reserved for registration and future standardization
                                    )

RUNWAY_RELATIVE_POSITION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : CENTRAL,  // CENTRAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        5 : RIGHT_RIGHT,  // RIGHT_RIGHT is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                      > 5 : // reserved for registration and future standardization
                                     )

RUNWAY_SURFACE_CONDITION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : CLEAR,  // CLEAR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        7 : WET_RUBBER,  // WET_RUBBER is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                      > 7 : // reserved for registration and future standardization
                                     )

RUNWAY_VISIBILITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : DISPATCH_VIS_RNG_HIGH,  // DISPATCH_VIS_RNG_HIGH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 5 : RUNWAY_VIS_RNG_LOW,  // RUNWAY_VIS_RNG_LOW is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                               > 5 : // reserved for registration and future standardization
                              )

SATELLITE_NAME_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : ADRASTEA,  // ADRASTEA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 65, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              66 : UMBRIEL,  // UMBRIEL is the EEL denoting the concept also denoted by EEC 66 in the EE Dictionary,
                            > 66 : // reserved for registration and future standardization
                           )

SCND_WEAPON_DEPLOYED_POS_CATEGORY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                 1 : DEPLOYED,  // DEPLOYED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 4 : STOWED,  // STOWED is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                               > 4 : // reserved for registration and future standardization
                                              )

SCRAP_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : MOTOR_VEHICLE,  // MOTOR_VEHICLE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                        > 1 : // reserved for registration and future standardization
                       )

SEA_ICE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                             1 : DEBRIS_COVERED,  // DEBRIS_COVERED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                            10 : SEA,  // SEA is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                          > 10 : // reserved for registration and future standardization
                         )

SEA_NAME_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                          1 : ADRIATIC_SEA,  // ADRIATIC_SEA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                             // additional entries of the form i : L, for 2 <= i <= 148, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                        149 : YELLOW_SEA,  // YELLOW_SEA is the EEL denoting the concept also denoted by EEC 149 in the EE Dictionary,
                      > 149 : // reserved for registration and future standardization
                     )

SEA_STATE_CATEGORY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                   1 : CALM_GLASSY,  // CALM_GLASSY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  10 : PHENOMENAL,  // PHENOMENAL is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                                > 10 : // reserved for registration and future standardization
                               )

SEASON_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                      1 : SPRING,  // SPRING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                           // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                      4 : WINTER,  // WINTER is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                    > 4 : // reserved for registration and future standardization
                   )

SEASONAL_TENT_LOCATION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : SUMMER,  // SUMMER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      2 : WINTER,  // WINTER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                    > 2 : // reserved for registration and future standardization
                                   )

SECONDARY_MATERIAL_CHARACTERISTIC_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                  1 : BROKEN,  // BROKEN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 23, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 24 : VOLCANIC,  // VOLCANIC is the EEL denoting the concept also denoted by EEC 24 in the EE Dictionary,
                                               > 24 : // reserved for registration and future standardization
                                              )

SECONDARY_MATERIAL_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                        1 : ASH,  // ASH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 64, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       65 : ZINC,  // ZINC is the EEL denoting the concept also denoted by EEC 65 in the EE Dictionary,
                                     > 65 : // reserved for registration and future standardization
                                    )

SECONDARY_SURFACE_THERMAL_CONDITION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                    1 : AERODYNAMICALLY_HEATED,  // AERODYNAMICALLY_HEATED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                        // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                   13 : WARMED_PASSIVELY,  // WARMED_PASSIVELY is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                                                 > 13 : // reserved for registration and future standardization
                                                )

SECURITY_LEVEL_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : US_UNCLASSIFIED,  // US_UNCLASSIFIED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              5 : US_TOP_SECRET,  // US_TOP_SECRET is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                            > 5 : // reserved for registration and future standardization
                           )

SECURITY_LOCK_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                   1 : CYPHER,  // CYPHER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  10 : SINGLE_CYLINDER_CYLINDRICAL,  // SINGLE_CYLINDER_CYLINDRICAL is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                                > 10 : // reserved for registration and future standardization
                               )

SERVICE_BRANCH_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : AIR_FORCE,  // AIR_FORCE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              6 : NAVY,  // NAVY is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                            > 6 : // reserved for registration and future standardization
                           )

SHIPPING_NOISE_MEASUREMENT_STATUS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                 1 : MEASURED,  // MEASURED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 2 : NOT_MEASURED,  // NOT_MEASURED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                               > 2 : // reserved for registration and future standardization
                                              )

SHIPPING_NOISE_SEASON_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                           1 : JANUARY_SUMMER,  // JANUARY_SUMMER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 23, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          24 : DECEMBER_WINTER,  // DECEMBER_WINTER is the EEL denoting the concept also denoted by EEC 24 in the EE Dictionary,
                                        > 24 : // reserved for registration and future standardization
                                       )

SHORELINE_PHYSIOGRAPHY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                       1 : ARTIFICIAL,  // ARTIFICIAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      11 : STONY_SHINGLY_MIX,  // STONY_SHINGLY_MIX is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                                    > 11 : // reserved for registration and future standardization
                                   )

SHORELINE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : CORAL,  // CORAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              11 : STONY_SHINGLY_MIX,  // STONY_SHINGLY_MIX is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                            > 11 : // reserved for registration and future standardization
                           )

SIDES_VISIBLE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                             1 : BOTH_SIDES,  // BOTH_SIDES is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                             2 : LEFT,  // LEFT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                             3 : RIGHT,  // RIGHT is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                           > 3 : // reserved for registration and future standardization
                          )

SNOW_DEPTH_CATEGORY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   8 : HEAVY,  // HEAVY is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                 > 8 : // reserved for registration and future standardization
                                )

SOIL_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                          1 : CLAYEY_GRAVEL,  // CLAYEY_GRAVEL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              // additional entries of the form i : L, for 2 <= i <= 18, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                         19 : WELL_GRADED_SAND,  // WELL_GRADED_SAND is the EEL denoting the concept also denoted by EEC 19 in the EE Dictionary,
                       > 19 : // reserved for registration and future standardization
                      )

SOIL_WETNESS_CATEGORY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : FROZEN,  // FROZEN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     8 : WET,  // WET is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                   > 8 : // reserved for registration and future standardization
                                  )

SOUND_SIGNAL_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                  1 : BELL,  // BELL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 16, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 17 : WHISTLE,  // WHISTLE is the EEL denoting the concept also denoted by EEC 17 in the EE Dictionary,
                               > 17 : // reserved for registration and future standardization
                              )

SOUNDING_DATUM_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                               1 : APPROX_LOWEST_ASTRONOMICAL_TIDE,  // APPROX_LOWEST_ASTRONOMICAL_TIDE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 42, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              43 : SPRING_TIDE,  // SPRING_TIDE is the EEL denoting the concept also denoted by EEC 43 in the EE Dictionary,
                            > 43 : // reserved for registration and future standardization
                           )

SOUNDING_EXPOSITION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : DEEPER,  // DEEPER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   2 : SHALLOWER,  // SHALLOWER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                   3 : WITHIN_RANGE,  // WITHIN_RANGE is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                 > 3 : // reserved for registration and future standardization
                                )

SOUNDING_INFORMATION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                     1 : ADEQUATE,  // ADEQUATE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 18, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    19 : UNRELIABLE,  // UNRELIABLE is the EEL denoting the concept also denoted by EEC 19 in the EE Dictionary,
                                  > 19 : // reserved for registration and future standardization
                                 )

SOUNDING_MEASUREMENT_TECHNIQUE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                               1 : COMPUTER_GENERATED,  // COMPUTER_GENERATED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 13, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              14 : WIRE_DRAG,  // WIRE_DRAG is the EEL denoting the concept also denoted by EEC 14 in the EE Dictionary,
                                            > 14 : // reserved for registration and future standardization
                                           )

SOUNDING_VELOCITY_CORRECTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                 1 : CORRECTED_BY_OTHER_MEANS,  // CORRECTED_BY_OTHER_MEANS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 5 : SOUNDER_4800_CALIBRATED,  // SOUNDER_4800_CALIBRATED is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                               > 5 : // reserved for registration and future standardization
                                              )

SOURCE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                       1 : BATHYMETRY_0r1_ARC_MINUTE_DIGITAL_DATA_BASE,  // BATHYMETRY_0r1_ARC_MINUTE_DIGITAL_DATA_BASE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                           // additional entries of the form i : L, for 2 <= i <= 60, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                      61 : WORLD_VECTOR_SHORELINE,  // WORLD_VECTOR_SHORELINE is the EEL denoting the concept also denoted by EEC 61 in the EE Dictionary,
                    > 61 : // reserved for registration and future standardization
                   )

SPATIAL_ALIGNMENT_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                 1 : APPROXIMATE,  // APPROXIMATE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                 4 : REPORTED,  // REPORTED is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                               > 4 : // reserved for registration and future standardization
                              )

SPORT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : AMERICAN_FOOTBALL,  // AMERICAN_FOOTBALL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          6 : TROTTING,  // TROTTING is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                        > 6 : // reserved for registration and future standardization
                       )

SPOT_ELEVATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : OUT_OF_POSITION,  // OUT_OF_POSITION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   2 : SUMMIT,  // SUMMIT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                   3 : TOP_OF_TREES,  // TOP_OF_TREES is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                 > 3 : // reserved for registration and future standardization
                                )

SPRING_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                           1 : ARTESIAN,  // ARTESIAN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                           5 : WALLED_IN,  // WALLED_IN is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                         > 5 : // reserved for registration and future standardization
                        )

STAIR_CONSTRUCTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : ENGINEERED_LUMBER,  // ENGINEERED_LUMBER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       5 : STEEL_WITH_CONCRETE_FILL,  // STEEL_WITH_CONCRETE_FILL is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                     > 5 : // reserved for registration and future standardization
                                    )

STAIR_STYLE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                           1 : CIRCULAR,  // CIRCULAR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                           4 : INTERIOR_OPEN,  // INTERIOR_OPEN is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                         > 4 : // reserved for registration and future standardization
                        )

STELLAR_RF_NB_MAXIMUM_TIME_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                  1 : BEGAN_BEFORE,  // BEGAN_BEFORE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  2 : LASTED_LONGER,  // LASTED_LONGER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                                  3 : MEASUREMENT_UNCERTAINTY,  // MEASUREMENT_UNCERTAINTY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                                > 3 : // reserved for registration and future standardization
                                               )

STELLAR_RF_NB_MEAN_FLUX_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                               1 : BEGAN_BEFORE,  // BEGAN_BEFORE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               2 : LASTED_LONGER,  // LASTED_LONGER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                               3 : MEASUREMENT_UNCERTAINTY,  // MEASUREMENT_UNCERTAINTY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                             > 3 : // reserved for registration and future standardization
                                            )

STELLAR_RF_NB_PEAK_FLUX_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                               1 : BEGAN_BEFORE,  // BEGAN_BEFORE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               2 : LASTED_LONGER,  // LASTED_LONGER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                               3 : MEASUREMENT_UNCERTAINTY,  // MEASUREMENT_UNCERTAINTY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                             > 3 : // reserved for registration and future standardization
                                            )

STELLAR_RF_NB_PERIOD_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                            1 : BEGAN_BEFORE,  // BEGAN_BEFORE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            2 : LASTED_LONGER,  // LASTED_LONGER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                            3 : MEASUREMENT_UNCERTAINTY,  // MEASUREMENT_UNCERTAINTY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                          > 3 : // reserved for registration and future standardization
                                         )

STELLAR_RF_NB_START_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : BEGAN_BEFORE,  // BEGAN_BEFORE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           2 : LASTED_LONGER,  // LASTED_LONGER is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                           3 : MEASUREMENT_UNCERTAINTY,  // MEASUREMENT_UNCERTAINTY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                         > 3 : // reserved for registration and future standardization
                                        )

STORAGE_FACILITY_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                      1 : AMMUNITION,  // AMMUNITION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 19, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     20 : WATER,  // WATER is the EEL denoting the concept also denoted by EEC 20 in the EE Dictionary,
                                   > 20 : // reserved for registration and future standardization
                                  )

STRUCTURAL_PILE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : POST,  // POST is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    4 : TRIPODAL,  // TRIPODAL is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                  > 4 : // reserved for registration and future standardization
                                 )

STRUCTURE_PROTECTION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : NO_PROTECTION,  // NO_PROTECTION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         4 : HARDENED,  // HARDENED is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                       > 4 : // reserved for registration and future standardization
                                      )

STRUCTURE_SHAPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                1 : A_FRAME,  // A_FRAME is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 68, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               69 : Y_FRAME,  // Y_FRAME is the EEL denoting the concept also denoted by EEC 69 in the EE Dictionary,
                             > 69 : // reserved for registration and future standardization
                            )

SURFACE_CATEGORY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : EXTERIOR,  // EXTERIOR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                2 : INTERIOR,  // INTERIOR is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                              > 2 : // reserved for registration and future standardization
                             )

SURFACE_CHARACTERISTIC_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                            1 : BARE,  // BARE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 29, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           30 : VOLCANIC,  // VOLCANIC is the EEL denoting the concept also denoted by EEC 30 in the EE Dictionary,
                                         > 30 : // reserved for registration and future standardization
                                        )

SURFACE_EM_DUCT_STRENGTH_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        5 : EXTREME,  // EXTREME is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                      > 5 : // reserved for registration and future standardization
                                     )

SURFACE_MATERIAL_TYPE_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                                       1 : AIRCRAFT,  // AIRCRAFT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 154, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     155 : ZINC,  // ZINC is the EEL denoting the concept also denoted by EEC 155 in the EE Dictionary,
                                   > 155 : // reserved for registration and future standardization
                                  )

SURFACE_THERMAL_MODEL_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : E_S_CCTT,  // E_S_CCTT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     4 : LMIS_KAM20,  // LMIS_KAM20 is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                   > 4 : // reserved for registration and future standardization
                                  )

SURVEILLANCE_WINGED_AIRCRAFT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                 1 : AN74_MADCAP_SERIES,  // AN74_MADCAP_SERIES is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 4 : TU126_MOSS_SERIES,  // TU126_MOSS_SERIES is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                               > 4 : // reserved for registration and future standardization
                                              )

SURVEY_CONTROL_POINT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                          1 : ASTRONOMIC_OBS_STATION,  // ASTRONOMIC_OBS_STATION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 13, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         14 : VERT_SECONDARY_STATION,  // VERT_SECONDARY_STATION is the EEL denoting the concept also denoted by EEC 14 in the EE Dictionary,
                                       > 14 : // reserved for registration and future standardization
                                      )

TELESCOPE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : OPTICAL,  // OPTICAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              2 : PARABOLIC_RADIO_AERIAL,  // PARABOLIC_RADIO_AERIAL is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                              3 : RADIO_AERIAL_ARRAY,  // RADIO_AERIAL_ARRAY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                            > 3 : // reserved for registration and future standardization
                           )

TEMPERATURE_EXTREME_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : MAXIMUM,  // MAXIMUM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   2 : MINIMUM,  // MINIMUM is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                 > 2 : // reserved for registration and future standardization
                                )

TEMPERATURE_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : ERRONEOUS,  // ERRONEOUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   7 : UK_STANDARD_CORRECTION,  // UK_STANDARD_CORRECTION is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                 > 7 : // reserved for registration and future standardization
                                )

TERRAIN_MORPHOLOGY_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                        1 : ACTIVE_SAND_DUNES,  // ACTIVE_SAND_DUNES is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 65, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       66 : WEATHERED_LAVA,  // WEATHERED_LAVA is the EEL denoting the concept also denoted by EEC 66 in the EE Dictionary,
                                     > 66 : // reserved for registration and future standardization
                                    )

TERRAIN_OBSTACLE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                      1 : ABATIS,  // ABATIS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 28, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     29 : WIRE_ROAD_BLOCK,  // WIRE_ROAD_BLOCK is the EEL denoting the concept also denoted by EEC 29 in the EE Dictionary,
                                   > 29 : // reserved for registration and future standardization
                                  )

TERRAIN_ROUTE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : TRAIL,  // TRAIL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  4 : SUPER_HIGHWAY,  // SUPER_HIGHWAY is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                > 4 : // reserved for registration and future standardization
                               )

TERRAIN_ROUTE_USABLE_WEATHER_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                 1 : ALL,  // ALL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 4 : WINTER_ONLY,  // WINTER_ONLY is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                               > 4 : // reserved for registration and future standardization
                                              )

TERRAIN_SURFACE_MARK_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : BURNT,  // BURNT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         9 : WHEELED_VEHICLE,  // WHEELED_VEHICLE is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                       > 9 : // reserved for registration and future standardization
                                      )

TERRAIN_TRAFFICABILITY_COARSE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                              1 : BATHYMETRIC_WATER_SURFACE,  // BATHYMETRIC_WATER_SURFACE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  // additional entries of the form i : L, for 2 <= i <= 11, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                             12 : WATER_BODY_FLOOR,  // WATER_BODY_FLOOR is the EEL denoting the concept also denoted by EEC 12 in the EE Dictionary,
                                           > 12 : // reserved for registration and future standardization
                                          )

TERRAIN_TRAFFICABILITY_FINE_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                                             1 : TYPE_0,  // TYPE_0 is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 813, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           814 : TYPE_813,  // TYPE_813 is the EEL denoting the concept also denoted by EEC 814 in the EE Dictionary,
                                         > 814 : // reserved for registration and future standardization
                                        )

TERRAIN_TRAFFICABILITY_MEDIUM_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                              1 : TYPE_0,  // TYPE_0 is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  // additional entries of the form i : L, for 2 <= i <= 30, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                             31 : TYPE_30,  // TYPE_30 is the EEL denoting the concept also denoted by EEC 31 in the EE Dictionary,
                                           > 31 : // reserved for registration and future standardization
                                          )

TERRAIN_TRANSPORTATION_ROUTE_SURFACE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                          1 : ASPHALT,  // ASPHALT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                              // additional entries of the form i : L, for 2 <= i <= 29, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                         30 : WOOD,  // WOOD is the EEL denoting the concept also denoted by EEC 30 in the EE Dictionary,
                                                       > 30 : // reserved for registration and future standardization
                                                      )

THUNDERSTORM_INTENSITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : LIGHT,  // LIGHT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                      2 : MODERATE,  // MODERATE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                      3 : HEAVY,  // HEAVY is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                    > 3 : // reserved for registration and future standardization
                                   )

TIME_DIVISION_WITHIN_DAY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : SUNRISE,  // SUNRISE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        5 : CONTINUOUS,  // CONTINUOUS is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                      > 5 : // reserved for registration and future standardization
                                     )

TIME_FORMAT_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                            1 : COORDINATED_UNIVERSAL_TIME,  // COORDINATED_UNIVERSAL_TIME is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                // additional entries of the form i : L, for 2 <= i <= 21, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                           22 : SS_S,  // SS_S is the EEL denoting the concept also denoted by EEC 22 in the EE Dictionary,
                         > 22 : // reserved for registration and future standardization
                        )

TIME_PERIOD_FORMAT_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : ISO,  // ISO is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  6 : REDUCED,  // REDUCED is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                > 6 : // reserved for registration and future standardization
                               )

TOPMARK_SHAPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                              1 : BESOM_POINT_DOWN,  // BESOM_POINT_DOWN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 15, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             16 : X_SHAPED,  // X_SHAPED is the EEL denoting the concept also denoted by EEC 16 in the EE Dictionary,
                           > 16 : // reserved for registration and future standardization
                          )

TOPMARK_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                             1 : BALL,  // BALL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                 // additional entries of the form i : L, for 2 <= i <= 50, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                            51 : WEST_MARK,  // WEST_MARK is the EEL denoting the concept also denoted by EEC 51 in the EE Dictionary,
                          > 51 : // reserved for registration and future standardization
                         )

TOTAL_CLOUD_COVER_CATEGORY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                           1 : NONE_PRESENT,  // NONE_PRESENT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                               // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                          15 : INDISCERNABLE,  // INDISCERNABLE is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                                        > 15 : // reserved for registration and future standardization
                                       )

TOWED_VEHICLE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : CARGO_TRAILER,  // CARGO_TRAILER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  8 : WATER_TRAILER,  // WATER_TRAILER is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                > 8 : // reserved for registration and future standardization
                               )

TOWER_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                           1 : BELL,  // BELL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 23, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          24 : WIRELESS_RADIO,  // WIRELESS_RADIO is the EEL denoting the concept also denoted by EEC 24 in the EE Dictionary,
                        > 24 : // reserved for registration and future standardization
                       )

TRANSPORT_HELICOPTER_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                          1 : AH_6J,  // AH_6J is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 19, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         20 : V_22,  // V_22 is the EEL denoting the concept also denoted by EEC 20 in the EE Dictionary,
                                       > 20 : // reserved for registration and future standardization
                                      )

TRANSPORT_LANDING_CRAFT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                            1 : TAI_WU_CLASS_TRANSPORT_DOCK,  // TAI_WU_CLASS_TRANSPORT_DOCK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            2 : WU_KANG_CLASS_TRANSPORT_DOCK,  // WU_KANG_CLASS_TRANSPORT_DOCK is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                          > 2 : // reserved for registration and future standardization
                                         )

TRANSPORT_WINGED_AIRCRAFT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                               1 : B707_KC137_SERIES,  // B707_KC137_SERIES is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              13 : VC10_SERIES_TANKER_TRANSPORT,  // VC10_SERIES_TANKER_TRANSPORT is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                                            > 13 : // reserved for registration and future standardization
                                           )

TRANSPORTATION_USE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                   1 : AIR,  // AIR is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 38, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  39 : WATERWAY,  // WATERWAY is the EEL denoting the concept also denoted by EEC 39 in the EE Dictionary,
                                > 39 : // reserved for registration and future standardization
                               )

TREE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                         1 : DECIDUOUS,  // DECIDUOUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                         2 : EVERGREEN,  // EVERGREEN is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                         3 : MIXED,  // MIXED is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                       > 3 : // reserved for registration and future standardization
                      )

TRUCK_LOAD_CLASS_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                1 : HEAVY,  // HEAVY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                2 : LIGHT,  // LIGHT is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                3 : MEDIUM,  // MEDIUM is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                              > 3 : // reserved for registration and future standardization
                             )

TUNNEL_CROSS_SECTION_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : ARCH,  // ARCH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    2 : BOX,  // BOX is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                    3 : CIRCULAR,  // CIRCULAR is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                  > 3 : // reserved for registration and future standardization
                                 )

TURBULENCE_FREQUENCY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : CONTINUOUS,  // CONTINUOUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    6 : OCCASIONAL,  // OCCASIONAL is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                  > 6 : // reserved for registration and future standardization
                                 )

TURBULENCE_INTENSITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : NO_TURBULENCE,  // NO_TURBULENCE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    8 : EXTREME,  // EXTREME is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                  > 8 : // reserved for registration and future standardization
                                 )

UNDERLYING_MATERIAL_CHARACTERISTIC_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                   1 : BROKEN,  // BROKEN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                       // additional entries of the form i : L, for 2 <= i <= 24, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                  25 : VOLCANIC,  // VOLCANIC is the EEL denoting the concept also denoted by EEC 25 in the EE Dictionary,
                                                > 25 : // reserved for registration and future standardization
                                               )

UNDERLYING_MATERIAL_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                         1 : ASH,  // ASH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 54, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        55 : ZINC,  // ZINC is the EEL denoting the concept also denoted by EEC 55 in the EE Dictionary,
                                      > 55 : // reserved for registration and future standardization
                                     )

URBAN_STREET_PATTERN_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : CURVILINEAR_CLUSTER,  // CURVILINEAR_CLUSTER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    9 : REG_RADIAL,  // REG_RADIAL is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                  > 9 : // reserved for registration and future standardization
                                 )

URBAN_TERRAIN_ZONE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                        1 : ATTACHED_1,  // ATTACHED_1 is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 22, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       23 : WIDELY_SPACED_BUILDINGS,  // WIDELY_SPACED_BUILDINGS is the EEL denoting the concept also denoted by EEC 23 in the EE Dictionary,
                                     > 23 : // reserved for registration and future standardization
                                    )

USAGE_EE_Code ::= (<   1 : // implementation dependent and non-conforming
                       1 : ADVERTISING_BILLBOARD,  // ADVERTISING_BILLBOARD is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                          // additional entries of the form i : L, for 2 <= i <= 150, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                     151 : VISUAL_DESCENT_POINT,  // VISUAL_DESCENT_POINT is the EEL denoting the concept also denoted by EEC 151 in the EE Dictionary,
                   > 151 : // reserved for registration and future standardization
                  )

VEGETATION_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                1 : AGRI_SCATTERED_FORESTS,  // AGRI_SCATTERED_FORESTS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 86, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               87 : WITHOUT_TREES,  // WITHOUT_TREES is the EEL denoting the concept also denoted by EEC 87 in the EE Dictionary,
                             > 87 : // reserved for registration and future standardization
                            )

VEHICLE_MAINTENANCE_AVAILABLE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                              1 : AIRCRAFT_FABRICATION,  // AIRCRAFT_FABRICATION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  // additional entries of the form i : L, for 2 <= i <= 17, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                             18 : VESSEL_SALVAGE,  // VESSEL_SALVAGE is the EEL denoting the concept also denoted by EEC 18 in the EE Dictionary,
                                           > 18 : // reserved for registration and future standardization
                                          )

VEHICLE_SMOKE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : ENGINE,  // ENGINE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  4 : PLUME,  // PLUME is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                > 4 : // reserved for registration and future standardization
                               )

VEHICLE_TRAFFIC_FLOW_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : INBOUND,  // INBOUND is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    4 : TWO_WAY,  // TWO_WAY is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                  > 4 : // reserved for registration and future standardization
                                 )

VERTICAL_DATUM_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                              1 : EARTH_GRAVITY_MODEL_1996,  // EARTH_GRAVITY_MODEL_1996 is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                   // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                              7 : WGS_1984_GEOID,  // WGS_1984_GEOID is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                            > 7 : // reserved for registration and future standardization
                           )

VERTICAL_MEASUREMENT_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                            1 : ESTIMATED,  // ESTIMATED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            2 : MEASURED,  // MEASURED is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                          > 2 : // reserved for registration and future standardization
                                         )

VESSEL_DENSITY_ACOUSTIC_LEVEL_CATEGORY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                      1 : REMOTE,  // REMOTE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                           // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                      4 : HEAVY,  // HEAVY is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                                    > 4 : // reserved for registration and future standardization
                                                   )

VESSEL_FUNCTION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                1 : AIR_SUPPORT,  // AIR_SUPPORT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                    // additional entries of the form i : L, for 2 <= i <= 22, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                               23 : TENDER,  // TENDER is the EEL denoting the concept also denoted by EEC 23 in the EE Dictionary,
                             > 23 : // reserved for registration and future standardization
                            )

VESSEL_IDENTIFIER_VALUE_SET_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : US_MERCHANT_VESSEL_NAME,  // US_MERCHANT_VESSEL_NAME is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           4 : US_NAVAL_HULL_NUMBER,  // US_NAVAL_HULL_NUMBER is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                         > 4 : // reserved for registration and future standardization
                                        )

VESSEL_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                            1 : AUXILIARY,  // AUXILIARY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                // additional entries of the form i : L, for 2 <= i <= 10, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                           11 : UTILITY,  // UTILITY is the EEL denoting the concept also denoted by EEC 11 in the EE Dictionary,
                         > 11 : // reserved for registration and future standardization
                        )

VISIBILITY_DISTANCE_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                           1 : ERRONEOUS,  // ERRONEOUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           4 : SUSPECT,  // SUSPECT is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                         > 4 : // reserved for registration and future standardization
                                        )

VOLCANIC_FORMATION_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : CALDERA,  // CALDERA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       5 : SHIELD,  // SHIELD is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                     > 5 : // reserved for registration and future standardization
                                    )

WALL_PREDOMINANT_PATTERN_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                         1 : BRICK,  // BRICK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 12, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        13 : WINDOW_WITH_GLASS,  // WINDOW_WITH_GLASS is the EEL denoting the concept also denoted by EEC 13 in the EE Dictionary,
                                      > 13 : // reserved for registration and future standardization
                                     )

WALL_PREDOMINANT_SURFACE_MATERIAL_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                  1 : ALUMINUM,  // ALUMINUM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 18, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 19 : WOOD,  // WOOD is the EEL denoting the concept also denoted by EEC 19 in the EE Dictionary,
                                               > 19 : // reserved for registration and future standardization
                                              )

WALL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                         1 : RETAINING,  // RETAINING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                         2 : STANDING,  // STANDING is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                       > 2 : // reserved for registration and future standardization
                      )

WATER_ACOUSTIC_TRANS_LOSS_MODEL_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                               1 : ASPM,  // ASPM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                    // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                               8 : RAYMODE,  // RAYMODE is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                             > 8 : // reserved for registration and future standardization
                                            )

WATER_BODY_ACOUSTIC_AMBIENT_NOISE_SPECTRAL_MODEL_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                                1 : ANDES,  // ANDES is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                                     // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                                9 : WRN,  // WRN is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                                              > 9 : // reserved for registration and future standardization
                                                             )

WATER_BODY_FLOOR_CONFIGURATION_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                               1 : BREAK_IN_SLOPE,  // BREAK_IN_SLOPE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 13, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              14 : TERRACE,  // TERRACE is the EEL denoting the concept also denoted by EEC 14 in the EE Dictionary,
                                            > 14 : // reserved for registration and future standardization
                                           )

WATER_BODY_FLOOR_MATERIAL_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                               1 : BEDROCK,  // BEDROCK is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              15 : SNAGS,  // SNAGS is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                                            > 15 : // reserved for registration and future standardization
                                           )

WATER_BODY_FLOOR_MORPHOLOGY_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                            1 : ABYSSAL_HILLS,  // ABYSSAL_HILLS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                // additional entries of the form i : L, for 2 <= i <= 55, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                           56 : WATT,  // WATT is the EEL denoting the concept also denoted by EEC 56 in the EE Dictionary,
                                         > 56 : // reserved for registration and future standardization
                                        )

WATER_BODY_FLOOR_OBJECT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                             1 : FISH_HAVEN,  // FISH_HAVEN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                 // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                            10 : WRECK,  // WRECK is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                                          > 10 : // reserved for registration and future standardization
                                         )

WATER_BODY_FLOOR_ROUGHNESS_CATEGORY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                   1 : SMOOTH,  // SMOOTH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   2 : MODERATE,  // MODERATE is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                                   3 : ROUGH,  // ROUGH is the EEL denoting the concept also denoted by EEC 3 in the EE Dictionary,
                                                 > 3 : // reserved for registration and future standardization
                                                )

WATER_BODY_PROPERTY_SET_ACOUSTIC_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                      1 : ACTIVE_HIGHLIGHT,  // ACTIVE_HIGHLIGHT is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                          // additional entries of the form i : L, for 2 <= i <= 14, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                     15 : TEMPERATURE,  // TEMPERATURE is the EEL denoting the concept also denoted by EEC 15 in the EE Dictionary,
                                                   > 15 : // reserved for registration and future standardization
                                                  )

WATER_BODY_SURFACE_OBSERVATION_POINT_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                    1 : AT_SURFACE,  // AT_SURFACE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                         // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                    4 : VESSEL_INJECTION,  // VESSEL_INJECTION is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                                  > 4 : // reserved for registration and future standardization
                                                 )

WATER_CHANNEL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : LAGOONAL,  // LAGOONAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                > 1 : // reserved for registration and future standardization
                               )

WATER_CURRENT_APPEARANCE_MONTH_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                               1 : JANUARY,  // JANUARY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                   // additional entries of the form i : L, for 2 <= i <= 11, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                              12 : DECEMBER,  // DECEMBER is the EEL denoting the concept also denoted by EEC 12 in the EE Dictionary,
                                            > 12 : // reserved for registration and future standardization
                                           )

WATER_CURRENT_DISAPPEARANCE_MONTH_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                                  1 : JANUARY,  // JANUARY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 11, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 12 : DECEMBER,  // DECEMBER is the EEL denoting the concept also denoted by EEC 12 in the EE Dictionary,
                                               > 12 : // reserved for registration and future standardization
                                              )

WATER_CURRENT_REFERENCE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                        1 : AT_HIGH_WATER,  // AT_HIGH_WATER is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 23, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       24 : ONE_HOUR_BEFORE_TIDE,  // ONE_HOUR_BEFORE_TIDE is the EEL denoting the concept also denoted by EEC 24 in the EE Dictionary,
                                     > 24 : // reserved for registration and future standardization
                                    )

WATER_CURRENT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                   1 : EBB_TIDE,  // EBB_TIDE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 9, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  10 : WIND_DRIVEN,  // WIND_DRIVEN is the EEL denoting the concept also denoted by EEC 10 in the EE Dictionary,
                                > 10 : // reserved for registration and future standardization
                               )

WATER_LEVEL_EFFECT_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : ALWAYS_DRY,  // ALWAYS_DRY is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  8 : SUBJECT_TO_INUNDATION,  // SUBJECT_TO_INUNDATION is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                > 8 : // reserved for registration and future standardization
                               )

WATER_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                             1 : CONTAMINATED,  // CONTAMINATED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             4 : TREATABLE,  // TREATABLE is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                           > 4 : // reserved for registration and future standardization
                          )

WATER_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                          1 : ALKALINE,  // ALKALINE is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                          6 : SALT,  // SALT is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                        > 6 : // reserved for registration and future standardization
                       )

WATERCOURSE_CHANNEL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                        1 : BRAIDED,  // BRAIDED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                        7 : WADI,  // WADI is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                                      > 7 : // reserved for registration and future standardization
                                     )

WATERCOURSE_SINK_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : DISAPPEARING,  // DISAPPEARING is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                          // additional entries of the form i : L, for 2 <= i <= 4, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                     5 : SINKHOLE_DISAPPEARING,  // SINKHOLE_DISAPPEARING is the EEL denoting the concept also denoted by EEC 5 in the EE Dictionary,
                                   > 5 : // reserved for registration and future standardization
                                  )

WAYPOINT_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                              1 : AERODROME,  // AERODROME is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                  // additional entries of the form i : L, for 2 <= i <= 23, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                             24 : VOR_VORDME_VORTAC,  // VOR_VORDME_VORTAC is the EEL denoting the concept also denoted by EEC 24 in the EE Dictionary,
                           > 24 : // reserved for registration and future standardization
                          )

WEAPONS_RANGE_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : DEMOLITION_AREA,  // DEMOLITION_AREA is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  6 : TANK,  // TANK is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                > 6 : // reserved for registration and future standardization
                               )

WEATHER_MEASUREMENT_TECHNIQUE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                             1 : AUTOMATED,  // AUTOMATED is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                             2 : MANUAL,  // MANUAL is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                           > 2 : // reserved for registration and future standardization
                                          )

WELL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                         1 : ARTESIAN,  // ARTESIAN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              // additional entries of the form i : L, for 2 <= i <= 6, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                         7 : WATERING_HOLE,  // WATERING_HOLE is the EEL denoting the concept also denoted by EEC 7 in the EE Dictionary,
                       > 7 : // reserved for registration and future standardization
                      )

WET_SOIL_TRAFFICABILITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                       1 : CH,  // CH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                            // additional entries of the form i : L, for 2 <= i <= 5, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                       6 : PT,  // PT is the EEL denoting the concept also denoted by EEC 6 in the EE Dictionary,
                                     > 6 : // reserved for registration and future standardization
                                    )

WETLAND_SURFACE_FORM_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                     1 : ATLANTIC_PLATEAU_BOG,  // ATLANTIC_PLATEAU_BOG is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 20, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    21 : VENEER_BOG,  // VENEER_BOG is the EEL denoting the concept also denoted by EEC 21 in the EE Dictionary,
                                  > 21 : // reserved for registration and future standardization
                                 )

WIND_CORRECTION_TECHNIQUE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                         1 : JAPAN,  // JAPAN is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                              // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                         4 : US,  // US is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                       > 4 : // reserved for registration and future standardization
                                      )

WIND_DIRECTION_OCTANT_CLIMATOLOGY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                 1 : NORTH,  // NORTH is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                      // additional entries of the form i : L, for 2 <= i <= 7, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                                 8 : NORTH_WEST,  // NORTH_WEST is the EEL denoting the concept also denoted by EEC 8 in the EE Dictionary,
                                               > 8 : // reserved for registration and future standardization
                                              )

WIND_DIRECTION_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                      1 : ERRONEOUS,  // ERRONEOUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                           // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                      4 : SUSPECT,  // SUSPECT is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                    > 4 : // reserved for registration and future standardization
                                   )

WIND_EQUIPMENT_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                   1 : LORAN_C,  // LORAN_C is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                        // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                   9 : WIND_PROFILER,  // WIND_PROFILER is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                 > 9 : // reserved for registration and future standardization
                                )

WIND_SPEED_QUALITY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : ERRONEOUS,  // ERRONEOUS is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  4 : SUSPECT,  // SUSPECT is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                                > 4 : // reserved for registration and future standardization
                               )

WIND_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                         1 : CALM,  // CALM is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                              // additional entries of the form i : L, for 2 <= i <= 3, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                         4 : VARIABLE,  // VARIABLE is the EEL denoting the concept also denoted by EEC 4 in the EE Dictionary,
                       > 4 : // reserved for registration and future standardization
                      )

WINDOW_MATERIAL_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                    1 : ACRYLIC_PLASTIC,  // ACRYLIC_PLASTIC is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                         // additional entries of the form i : L, for 2 <= i <= 8, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                    9 : WIRE_GLASS,  // WIRE_GLASS is the EEL denoting the concept also denoted by EEC 9 in the EE Dictionary,
                                  > 9 : // reserved for registration and future standardization
                                 )

WORK_IN_PROGRESS_TYPE_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                     1 : LAND_RECLAMATION,  // LAND_RECLAMATION is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                     2 : STRUCTURE_CONSTRUCTION,  // STRUCTURE_CONSTRUCTION is the EEL denoting the concept also denoted by EEC 2 in the EE Dictionary,
                                   > 2 : // reserved for registration and future standardization
                                  )

WORSHIP_PLACE_TYPE_EE_Code ::= (<  1 : // implementation dependent and non-conforming
                                   1 : CATHEDRAL,  // CATHEDRAL is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 19, where L is the EEL denoting the concept also denoted by EEC i in the EE Dictionary,
                                  20 : UNSPECIFIED,  // UNSPECIFIED is the EEL denoting the concept also denoted by EEC 20 in the EE Dictionary,
                                > 20 : // reserved for registration and future standardization
                               )

ZOROASTRIANISM_DENOMINATIONAL_FAMILY_EE_Code ::= (< 1 : // implementation dependent and non-conforming
                                                    1 : PARSI,  // PARSI is the EEL denoting the concept also denoted by EEC 1 in the EE Dictionary,
                                                  > 1 : // reserved for registration and future standardization
                                                 )

9.4.6 EU Dictionary

Unit_Code ::= (<   1 : // implementation dependent and non-conforming
                   1 : AMP_PER_METRE,  // AMP_PER_METRE is the EUL denoting the concept also denoted by EUC 1 in the EU Dictionary,
                     // additional entries of the form i : L, for 2 <= i <= 244, where L is the EUL denoting the concept also denoted by EUC i in the EU Dictionary,
                 245 : YEAR,  // YEAR is the EUL denoting the concept also denoted by EUC 245 in the EU Dictionary
               > 245 : // reserved for registration and future standardization
              )

9.4.7 Constants for unit conversion

The following Long_Float (double precision) constants are defined for use by implementations. These constants provide the values from the definition field of the EDCS Unit  Dictionary and from the definition field of the EDCS Scale Dictionary in a manner convenient for the preparation of language bindings.

// Conversion factors for EDCS Units
Long_Float Constant ANGSTROM_TO_METRE = 1.0D-10 // [I31-1, 1-3.a]
Long_Float Constant ARE_TO_SQ_METRE = 1.0D2 // [I31-1, 1-5.a]
Long_Float Constant ASTRONOMICAL_UNIT_TO_METRE = 1.4959787D11 // [I31-1, 1-3.B.b]
Long_Float Constant BAR_TO_PASCAL = 1.0D5 // [I31-3, 3-15a]
Long_Float Constant BARN_TO_SQ_METRE = 1.0D-28 // [I31-10, 10-3.a]
Long_Float Constant BEL_TO_NEPER = 1.151293D0 // [I31-2, 2-9.b]
Long_Float Constant CURIE_TO_BECQUEREL = 3.7D10 // [I31-9, 9-33.a]
Long_Float Constant DAY_TO_SECOND = 8.64D4 // [I31-0, Table 4]
Long_Float Constant DB_TO_BEL = 1.0D-1 // [I31-2, 2-9.b]
Long_Float Constant DB_TO_NEPER = 1.151293D-1 // [I31-2, 2-9.b]
Long_Float Constant DECAY_RATE_TO_MINUTE_PER_CUBIC_METRE = 1.6666667D-4 // [I31-0, 2.3.2.2 (derived)]
Long_Float Constant DEGREE_ARC_TO_RADIAN = 1.745329251994329576924D-2 // PI/180 [I31-0, Table 4]
Long_Float Constant DEGREE_C_PER_HOUR_TO_KELVIN_PER_SEC = 2.777777777777777777778D-4 // 1/3600 [I31-0, 2.3.2.2 (derived)]
Long_Float Constant DEGREE_C_PER_METRE_TO_KELVIN_PER_METRE = 1.0D0 // [I31-0, 2.3.2.2 (derived)]
Long_Float Constant DEGREE_C_PER_SEC_TO_KELVIN_PER_SEC = 1.0D0 // [I31-0, 2.3.2.2 (derived)]
Long_Float Constant DEGREE_C_OFFSET_TO_KELVIN = 2.7315D2 // [I31-4, 4-2.a]
Long_Float Constant ELECTRONVOLT_M_SQD_PER_KG_TO_JOULE_METRE_SQD_PER_KG = 1.60217733D-19 // [I31-10, 10-20.b]
Long_Float Constant ELECTRONVOLT_M_SQD_TO_JOULE_METRE_SQD = 1.60217733D-19 // [I31-10, 10-19.b]
Long_Float Constant ELECTRONVOLT_TO_JOULE = 1.602177D-19 // [I31-0, Table 6]
Long_Float Constant FOOT_TO_METRE = 3.048D-1 // [I31-1, 1-3.A.b]
Long_Float Constant GAL_TO_METRE_PER_SEC_SQD = 1.0D-2 // [I31-1, 1-11.B.a]
Long_Float Constant GON_TO_RADIAN = 1.570796326794896619231D-2 // PI/200 [I31-1, 1-1.B.a]
Long_Float Constant GRAM_PER_CUBIC_CM_TO_KG_PER_CUBIC_METRE = 1.0D3 // [I31-3, 3-2.b]
Long_Float Constant GRAM_PER_CUBIC_M_TO_KG_PER_CUBIC_METRE = 1.0D-3 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant GRAM_PER_GRAM_TO_KG_PER_KG = 1.0D0 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant GRAM_PER_KILOGRAM_TO_KG_PER_KG = 1.0D-3 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant GRAM_TO_KILOGRAM = 1.0D-3 // [I31-0, 3.2.4]
Long_Float Constant HECTARE_TO_SQ_METRE = 1.0D4 // [I31-1, 1-5.a]
Long_Float Constant HOUR_TO_SECOND = 3.6D3 // [I31-0, Table 4]
Long_Float Constant INT_SOLAR_FLUX_UNIT_TO_JANSKY = 1.0D4 // none
Long_Float Constant INT_SOLAR_FLUX_UNIT_TO_WATT_PER_SQ_M_HZ = 1.0D-22 // none
Long_Float Constant INV_CUBIC_CM_SEC_TO_INV_CUBIC_METRE_SEC = 1.0D-6 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant INV_CUBIC_CM_TO_INV_CUBIC_METRE = 1.0D-6 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant INV_CUBIC_METRE_EV_TO_INV_CUBIC_METRE_JOULE = 6.24150614D18 // [I31-13, 13-17.b]
Long_Float Constant INV_MICRON_TO_INV_METRE = 1.0D6 // [I31-0, 2.3.3 (derived)]
Long_Float Constant INV_SQ_CM_SEC_SR_EV_TO_INV_SQ_M_SEC_SR_EV = 1.0D-6 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant INV_SQ_CM_SEC_SR_KEV_TO_INV_SQ_M_SEC_SR_EV = 1.0D-9 // [I31-0, 2.3.2.2 (derived)]
Long_Float Constant INV_SQ_CM_SEC_SR_MEV_TO_INV_SQ_M_SEC_SR_EV = 1.0D-12 // [I31-0, 2.3.2.2 (derived)]
Long_Float Constant INV_SQ_CM_SEC_STERADIAN_TO_INV_SQ_M_SEC_STERADIAN = 1.0D-4 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant INV_STERADIAN_MICRON_TO_INV_STERADIAN_METRE = 1.0D6 // [I31-0, 2.3.3 (derived)]
Long_Float Constant JANSKY_TO_WATT_PER_SQ_M_HZ = 1.0D-26 // none
Long_Float Constant JOULE_PER_GRAM_K_TO_JOULE_PER_KG_KELVIN = 1.0D3 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant JOULE_PER_KM_TO_JOULE_PER_METRE = 1.0D-3 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant KELVIN_PER_KM_TO_KELVIN_PER_METRE = 1.0D-3 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant KG_PER_LITRE_TO_KG_PER_CUBIC_METRE = 1.0D-3 // [I31-0, 2.3.2.2 (derived)]
Long_Float Constant KILOPOUND_TO_KILOGRAM = 4.5359237D2 // [I31-3, 3-1.B.a]
Long_Float Constant KM_PER_HOUR_TO_METRE_PER_SEC = 2.777777777777777777778D-1 // 10/36 [I31-1, 1-10.b]
Long_Float Constant KNOT_TO_METRE_PER_SEC = 5.14444D-1 // [I31-1, 1-10.b]
Long_Float Constant LIGHT_YEAR_TO_METRE = 9.460730D15 // [I31-1, 1-3.B.a]
Long_Float Constant LITRE_PER_HOUR_TO_CUBIC_METRE_PER_SEC = 2.777777777777777777778D-7 // 1/3600000 [I31-0, 2.3.2.2 (derived)]
Long_Float Constant LITRE_PER_SECOND_TO_CUBIC_METRE_PER_SEC = 1.0D-3 // [I31-0, 2.3.2.2 (derived)]
Long_Float Constant LITRE_TO_CUBIC_METRE = 1.0D-3 // [I31-0, Table 4]
Long_Float Constant LONG_TON_TO_KILOGRAM = 1.016047D3 // [I31-3, 3-1.B.e]
Long_Float Constant LUMEN_HOUR_TO_LUMEN_SECOND = 3.6D3 // [I31-0, 2.3.2.2 (derived)]
Long_Float Constant LUX_HOUR_TO_LUX_SECOND = 3.6D3 // [I31-0, 2.3.2.2 (derived)]
Long_Float Constant METRE_PER_HOUR_TO_METRE_PER_SEC = 2.777777777777777777778D-4 // 1/3600 [I31-0, 2.3.2.2 (derived)]
Long_Float Constant MILE_PER_HOUR_TO_METRE_PER_SEC = 4.4704D-1 // [I31-1, 1-10.A.b]
Long_Float Constant MILE_TO_METRE = 1.609344D3 // [I31-1, 1-3.A.d]
Long_Float Constant MINUTE_ARC_TO_DEGREE_ARC = 1.666666666666666666667D-2 // 1/60  [I31-0, Table 4]
Long_Float Constant MINUTE_ARC_TO_RADIAN = 2.908882086657215961539D-4 // PI/10800 [I31-0, Table 4]
Long_Float Constant MINUTE_TO_SECOND = 6.0D1 // [I31-0, Table 4]
Long_Float Constant MOLE_PER_LITRE_TO_MOLE_PER_CUBIC_M = 1.0D3 // [I31-8, 8-13.b]
Long_Float Constant NAUTICAL_MILE_TO_METRE = 1.852D3 // [I31-1, 1-3.a]
Long_Float Constant NEWTON_PER_SQ_M_TO_PASCAL = 1.0D0 // [I31-0, Table 2]
Long_Float Constant PARSEC_TO_ASTRONOMICAL_UNIT = 2.062648D5 // [I31-1, 1-3.B.c]
Long_Float Constant PARSEC_TO_METRE = 3.085678D16 // [I31-1, 1-3.B.c]
Long_Float Constant PERCENT_TO_UNITLESS = 1.0D-2 // [I31-0, 2.3.3 (derived)]
Long_Float Constant PI = 3.141592653589793238463D0 // none
Long_Float Constant PPB_MASS_FRACTION_TO_KG_PER_KG = 1.0D-9 // [I31-0, 2.3.3 (derived)]
Long_Float Constant PPM_MASS_FRACTION_TO_KG_PER_KG = 1.0D-6 // [I31-0, 2.3.3 (derived)]
Long_Float Constant PPT_MASS_FRACTION_TO_KG_PER_KG = 1.0D-12 // [I31-0, 2.3.3 (derived)]
Long_Float Constant PPTH_MASS_FRACTION_TO_KG_PER_KG = 1.0D-3 // [I31-0, 2.3.3 (derived)]
Long_Float Constant RAD_TO_GRAY = 1.0D-2 // [I31-10, 10-51.a]
Long_Float Constant REM_TO_SIEVERT = 1.0D-2 // [I31-10, 10-52.a]
Long_Float Constant ROENTGEN_TO_COULOMB_PER_KG = 2.58D4 // [I31-10, 10-58.a]
Long_Float Constant SECOND_ARC_TO_DEGREE_ARC = 2.777777777777777777778D-4 // 1/3600 [I31-0, Table 4]
Long_Float Constant SECOND_ARC_TO_RADIAN = 4.848136811095359935899D-6 // PI/648000 [I31-0, Table 4]
Long_Float Constant TEC_TO_INV_SQ_METRE = 1.0D16 // none
Long_Float Constant TON_TO_KILOGRAM = 9.071847D2 // [I31-3, 3-1.B.e]
Long_Float Constant TONNE_PER_CUBIC_METRE_TO_KG_PER_CUBIC_METRE = 1.0D3 // [I31-3, 3-2.b]
Long_Float Constant TONNE_TO_KILOGRAM = 1.0D3 // [I31-0, Table 4]
Long_Float Constant UNIFIED_AMASS_UNIT_TO_KILOGRAM = 1.660540D-27 // [I31-0, Table 6]
Long_Float Constant WATT_HOUR_TO_JOULE = 3.6D3 // [I31-5, 5-52.b (derived)]
Long_Float Constant WATT_PER_SQ_CM_SEC_TO_WATT_PER_SQ_METRE_SEC = 1.0D-4 // [I31-0, 2.3.2.3 (derived)]
Long_Float Constant WATT_SECOND_TO_JOULE = 1.0D0 // [I31-0, Table 2]
Long_Float Constant YEAR_TO_DAY = 3.6524220D2 // [I31-1, 1-7.B.a]
Long_Float Constant YEAR_TO_SECOND = 3.1556926D7 // [I31-1, 1-7.B.a]

//Conversion factors for EDCS Unit Scales
Long_Float Constant ATTO_TO_ONE = 1.0D-18 // [I31-0, Table 4]
Long_Float Constant CENTI_TO_ONE = 1.0D-2 // [I31-0, Table 4]
Long_Float Constant DECA_TO_ONE = 1.0D1 // [I31-0, Table 4]
Long_Float Constant DECI_TO_ONE = 1.0D-1 // [I31-0, Table 4]
Long_Float Constant EXA_TO_ONE = 1.0D18 // [I31-0, Table 4]
Long_Float Constant EXBI_TO_ONE = 1152921504606846976.0D0 // none
Long_Float Constant FEMTO_TO_ONE = 1.0D-15 // [I31-0, Table 4]
Long_Float Constant GIBI_TO_ONE = 1073741824.0D0 // none
Long_Float Constant GIGA_TO_ONE = 1.0D9 // [I31-0, Table 4]
Long_Float Constant HECTO_TO_ONE = 1.0D2 // [I31-0, Table 4]
Long_Float Constant KIBI_TO_ONE = 1024.0D0 // none
Long_Float Constant KILO_TO_ONE = 1.0D3 // [I31-0, Table 4]
Long_Float Constant MEBI_TO_ONE = 1048576.0D0 // none
Long_Float Constant MEGA_TO_ONE = 1.0D6 // [I31-0, Table 4]
Long_Float Constant MICRO_TO_ONE = 1.0D-6 // [I31-0, Table 4]
Long_Float Constant MILLI_TO_ONE = 1.0D-3 // [I31-0, Table 4]
Long_Float Constant NANO_TO_ONE = 1.0D-9 // [I31-0, Table 4]
Long_Float Constant UNI_TO_ONE = 1.0D0 // [I31-0, Table 4]
Long_Float Constant PEBI_TO_ONE = 1125899906842624.0D0 // none
Long_Float Constant PETA_TO_ONE = 1.0D15 // [I31-0, Table 4]
Long_Float Constant PICO_TO_ONE = 1.0D-12 // [I31-0, Table 4]
Long_Float Constant TEBI_TO_ONE = 1099511627776.0D0 // none
Long_Float Constant TERA_TO_ONE = 1.0D12 // [I31-0, Table 4]
Long_Float Constant YOCTO_TO_ONE = 1.0D-24 // [I31-0, Table 4]
Long_Float Constant YOTTA_TO_ONE = 1.0D24 // [I31-0, Table 4]
Long_Float Constant ZEPTO_TO_ONE = 1.0D-21 // [I31-0, Table 4]
Long_Float Constant ZETTA_TO_ONE = 1.0D21 // [I31-0, Table 4]

9.4.8 ES Dictionary

Unit_Scale_Code ::= (<  1 : // implementation dependent and non-conforming
                        1 : YOTTA,  // YOTTA is the ESL denoting the concept also denoted by ESC 1 in the ES Dictionary,
                          // additional entries of the form i : L, for 2 <= i <= 26, where L is the ESL denoting the concept also denoted by ESC i in the ES Dictionary,
                       27 : EXBI,  // EXBI is the ESL denoting the concept also denoted by ESC 27 in the ES Dictionary
                     > 27 : // reserved for registration and future standardization
                    )

9.4.9 EQ Dictionary

Unit_Equivalence_Class_Code ::= (<   1 : // implementation dependent and non-conforming
                                     1 : ABSORBED_DOSE,  // ABSORBED_DOSE is the EQL denoting the concept also denoted by EQC 1 in the EQ Dictionary,
                                       // additional entries of the form i : L, for 2 <= i <= 163, where L is the EQL denoting the concept also denoted by EQC i in the EQ Dictionary,
                                   164 : VOLUMIC_MASS,  // VOLUMIC_MASS is the EQL denoting the concept also denoted by EQC 164 in the EQ Dictionary
                                 > 164 : // reserved for registration and future standardization
                                )

9.4.10 EO Dictionary

Organizational_Schema_Code ::= (< 1 : // implementation dependent and non-conforming
                                  1 : GENERAL,  // GENERAL is the EOL denoting the concept also denoted by EOC 1 in the EO Dictionary,
                                > 1 : // reserved for registration and future standardization
                               )

9.4.11 EG Dictionary

GENERAL_Group_Code ::= (<  1 : // implementation dependent and non-conforming
                           1 : ABSTRACT_OBJECT,  // ABSTRACT_OBJECT is the EGL denoting the concept also denoted by EGC 1 in the EG Dictionary,
                               // additional entries of the form i : L, for 2 <= i <= 54, where L is the EGL denoting the concept also denoted by EGC i in the EG Dictionary,
                          55 : WATER_BODY_SURFACE,  // WATER_BODY_SURFACE is the EGL denoting the concept also denoted by EGC 55 in the EG Dictionary,
                        > 55 : // reserved for registration and future standardization
                       )

9.5 Functions

The EDCS application program interface specifies the functions defined in Table 9.6 and Table 9.7.

Table 9.6 -- Convert_Quantity_Value

Property Description
Semantics This function shall convert an input value of a physical quantity whose unit of measure is denoted by the given EUC and whose scale (of measure) is denoted by the given ESC, into an output value of that physical quantity whose unit of measure is denoted by the given EUC and whose scale (of measure) is denoted by the given ESC. On input, from_value.value shall be set to the input value, and from_value.unit and from_value.scale shall be set to the corresponding input EUC and ESC, respectively. On input, to_value.unit and to_value.scale shall be set to the desired EUC and ESC, respectively, for the output to_value.value. On output, to_value.value shall be set to the converted value if the conversion was successful. A status code output value, as specified in 9.2.4.2 Status_Code, shall be returned to indicate the success or the nature of the failure of the function call. In cases where more than one status code could be returned, the status code that is returned shall be implementation dependent.
Input parameters Parameter name: Data type:
from_value
Real_Value
Input/output parameters Parameter name: Data type:
from_value
Real_Value
Return value

 

  Data type:
 
Status_Code

Table 9.7 -- Get_Highest_Codes_Used

Property Description
Semantics This function shall return the highest EDCS code specified in this International Standard and the highest registered EDCS code supported by this implementation for the specified EDCS dictionary. On input, dictionary_name specifies the EDCS dictionary whose highest EDCS codes are to be determined. On output, standard_code is set to the highest EDCS code specified in this International Standard for the specified EDCS dictionary. On output, registered_code is set to the highest registered EDCS code for the specified EDCS dictionary as supported by this implementation. A status code output value, as specified in 9.2.4.2 Status_Code, shall be returned to indicate the success or the nature of the failure of the function call. In cases where more than one status code could be returned, the status code that is returned shall be implementation dependent.
Input parameters Parameter name: Data type:
dictionary_name
Dictionary_Type
Output parameters Parameter name: Data type:
standard_code
Integer
Parameter name: Data type:
registered_code
Integer
Return value

 

  Data type:
 
Status_Code

separator bar

http://www.sedris.org/Specifications/EDCS/index.html