Airspace: Define correct usage of codeId,txtName,txtLocalType, ...
txtLocalType seems to currently been misused to store the full name of the airspace as shown on the map. According to spec it should only contain the local type. Also codeId should IMO contain the identifier.
Incorrect example from UGGG:
<Ase>
<AseUid mid="3080d4de-0c01-7476-9fec-3f0180f1535f" region="UGGG">
<codeType>R</codeType>
<codeId>UGR01</codeId>
</AseUid>
<txtLocalType>SOLOLAKI</txtLocalType>
<txtName>UGR01</txtName>
<codeDistVerUpper>ALT</codeDistVerUpper>
<valDistVerUpper>6000</valDistVerUpper>
<uomDistVerUpper>FT</uomDistVerUpper>
<codeDistVerLower>HEI</codeDistVerLower>
<valDistVerLower>0</valDistVerLower>
<uomDistVerLower>FT</uomDistVerLower>
<Att>
<codeWorkHr>H24</codeWorkHr>
</Att>
<txtRmk>Flights can be allowed by appropriate ATS authority</txtRmk>
</Ase>
The desired result would look like this:
<Ase>
<AseUid mid="3080d4de-0c01-7476-9fec-3f0180f1535f" region="UGGG">
<codeType>R</codeType>
<codeId>UGR01</codeId>
</AseUid>
<txtName>SOLOLAKI</txtName>
<codeDistVerUpper>ALT</codeDistVerUpper>
<valDistVerUpper>6000</valDistVerUpper>
<uomDistVerUpper>FT</uomDistVerUpper>
<codeDistVerLower>HEI</codeDistVerLower>
<valDistVerLower>0</valDistVerLower>
<uomDistVerLower>FT</uomDistVerLower>
<Att>
<codeWorkHr>H24</codeWorkHr>
</Att>
<txtRmk>Flights can be allowed by appropriate ATS authority</txtRmk>
</Ase>
Another wrong example from UGGG:
<Ase>
<AseUid mid="0f81af5d-2d74-f5ee-d736-1be2759b5ec4" region="UGGG">
<codeType>SECTOR</codeType>
<codeId>AMBROLAURI FIZ</codeId>
</AseUid>
<txtName>AMBROLAURI FIZ</txtName>
<codeClass>G</codeClass>
<codeDistVerUpper>HEI</codeDistVerUpper>
<valDistVerUpper>2000</valDistVerUpper>
<uomDistVerUpper>FT</uomDistVerUpper>
<codeDistVerLower>HEI</codeDistVerLower>
<valDistVerLower>0</valDistVerLower>
<uomDistVerLower>FT</uomDistVerLower>
</Ase>
corrected, use RAS
and set txtLocalType to FIZ. This is already possible, but need to double-check this works as intended.
<Ase>
<AseUid mid="0f81af5d-2d74-f5ee-d736-1be2759b5ec4" region="UGGG">
<codeType>RAS</codeType>
<codeId>AMBROLAURI</codeId>
</AseUid>
<txtLocalType>FIZ</txtLocalType>
<txtName>AMBROLAURI</txtName>
<codeClass>G</codeClass>
<codeDistVerUpper>HEI</codeDistVerUpper>
<valDistVerUpper>2000</valDistVerUpper>
<uomDistVerUpper>FT</uomDistVerUpper>
<codeDistVerLower>HEI</codeDistVerLower>
<valDistVerLower>0</valDistVerLower>
<uomDistVerLower>FT</uomDistVerLower>
</Ase>
Edited by Sven Schwyn