• 热门标签

当前位置: 主页 > 航空资料 >

时间:2010-06-30 09:00来源:蓝天飞行翻译 作者:admin
曝光台 注意防骗 网曝天猫店富美金盛家居专营店坑蒙拐骗欺诈消费者

Dln Relationship to: DME [DME -
Limitation is limiting Distance
measuring equipment [DME]]
Attribute: codeType
Attribute: valAngleFm
Attribute: valAngleTo
Attribute: valDistInner
Attribute: valDistVerLower
Fao [Deprecated-4.5] FatoOldType FATO Relationship to: TLOF [Final
approach and take-off area
[FATO] is having Touch down
and lift off area [TLOF]]
[Deprecated-4.0] NdbLimitation- NDB_LIMITATION
Type
Nln Relationship to: NDB [NDB
limitation is limiting Non-directional
radio beacon [NDB]]
Attribute: codeType
Attribute: valAngleFm
Attribute: valAngleTo
Attribute: valDistInner
Attribute: valDistVerLower
[Deprecated-4.0] TacanLimitation- TACAN_LIMITATION
Type
Tln Relationship to: TACAN
[TACAN - Limitation is limiting
Tactical air navigation beacon
[TACAN]]
Attribute: codeComponent
Attribute: codeType
Attribute: valAngleFm
Attribute: valAngleTo
Attribute: valDistInner
Attribute: valDistVerLower
[Deprecated-4.0] VorLimitation- VOR_LIMITATION
Type
Vln Relationship to: VOR [VOR
limitation is limiting VHF omnidirectional
radio range beacon
[VOR]]
Attribute: codeType
Attribute: valAngleFm
Attribute: valAngleTo
Attribute: valDistInner
Attribute: valDistVerLower
40 Edition Number: 4.5
AIXM PRIMER
Appendix B. CRC Java Code
B.1. How to execute the crc.java code
To use the class crc.java you must compile the below java code (B.2 Java code of crc.java). After you
can execute the class via the following order :
%JAVA_HOME%\bin\java –cp %DIR% CRC %STREAM%
Where :
• %JAVA_HOME% is the directory where the jdk is installed
• %DIR% is the directory where the class crc.class can be found
• %STREAM% is the input stream used for the CRC calculation
B.2. Java code of crc.java
/*
* Copyright (c) 2004, EUROCONTROL
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither the name of EUROCONTROL nor the names of its contributors may be used
* to endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/**
*
* Encapsulates CRC computation.
*
* For reference, the parameters for this implementation, relative to the standard
* parameters for CRC testing as described, for example,
* <a href="http://www.gpfn.sk.ca/~rhg/csc8550s02/crc.html">here</a> or
* <a href="http://rcswww.urz.tu-dresden.de/~sr21/crc.html">here</a> are as follows:
* <ul><li>CRC order: 32</li>
* <li>CRC polynomial: 814141AB</li>
* <li>Initial CRC value: 00000000 (and the direct/non-direct distinction is
* irrelevant).
* </li>
Edition Number: 4.5 41
AIXM PRIMER
* <li>Final XOR value: 00000000 (and the CRC is not reversed before the final XOR).
* </li>
* <li>The check box "Reverse input data bytes" should not be checked. </li>
* </ul>
* With these settings, the CRC calculator at the first web address above agrees on
* the computed CRC for the test data supplied in the ReadMe.doc file supplied by
* Eurocontrol with the original version of this code.
*
* @author Serge Hennaux for Pulsar Consulting S.A., Belgium
* @author Jo Calder for Mekon Ltd, UK.
 
中国航空网 www.aero.cn
航空翻译 www.aviation.cn
本文链接地址:AIXM_Primer_4.5(19)