@armyc2.c5isr.renderer/mil-sym-ts-web 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +57 -0
  3. package/buildNode.bat +2 -0
  4. package/buildWeb.bat +2 -0
  5. package/dist/C5Ren.d.ts +6970 -0
  6. package/dist/C5Ren.js +2 -0
  7. package/dist/C5Ren.js.map +1 -0
  8. package/dist/LICENSE +201 -0
  9. package/dist/README.md +57 -0
  10. package/dist/armyc2.c5isr.renderer-mil-sym-ts-web-2.2.0.tgz +0 -0
  11. package/dist/manifest.json +4 -0
  12. package/dist/package.json +16 -0
  13. package/index.ts +169 -0
  14. package/package.bak +50 -0
  15. package/package.json +40 -0
  16. package/package.node.json +43 -0
  17. package/package.pack.json +19 -0
  18. package/package.packWeb.json +16 -0
  19. package/package.web.json +40 -0
  20. package/src/main/ts/android/graphics/Bitmap.ts +7 -0
  21. package/src/main/ts/android/graphics/Paint.ts +26 -0
  22. package/src/main/ts/android/graphics/Path.ts +78 -0
  23. package/src/main/ts/android/graphics/PointF.ts +14 -0
  24. package/src/main/ts/android/graphics/Rect.ts +18 -0
  25. package/src/main/ts/android/graphics/RectF.ts +50 -0
  26. package/src/main/ts/android/graphics/Region.ts +36 -0
  27. package/src/main/ts/android/graphics/Typeface.ts +11 -0
  28. package/src/main/ts/armyc2/c5isr/JavaLineArray/BasicShapes.ts +99 -0
  29. package/src/main/ts/armyc2/c5isr/JavaLineArray/CChannelPoints2.ts +34 -0
  30. package/src/main/ts/armyc2/c5isr/JavaLineArray/CELineArray.ts +193 -0
  31. package/src/main/ts/armyc2/c5isr/JavaLineArray/Channels.ts +2971 -0
  32. package/src/main/ts/armyc2/c5isr/JavaLineArray/DISMSupport.ts +4008 -0
  33. package/src/main/ts/armyc2/c5isr/JavaLineArray/POINT2.ts +93 -0
  34. package/src/main/ts/armyc2/c5isr/JavaLineArray/Shape2.ts +89 -0
  35. package/src/main/ts/armyc2/c5isr/JavaLineArray/TacticalLines.ts +515 -0
  36. package/src/main/ts/armyc2/c5isr/JavaLineArray/arraysupport.ts +5403 -0
  37. package/src/main/ts/armyc2/c5isr/JavaLineArray/countsupport.ts +1084 -0
  38. package/src/main/ts/armyc2/c5isr/JavaLineArray/flot.ts +2173 -0
  39. package/src/main/ts/armyc2/c5isr/JavaLineArray/lineutility.ts +4934 -0
  40. package/src/main/ts/armyc2/c5isr/JavaLineArray/ref.ts +7 -0
  41. package/src/main/ts/armyc2/c5isr/JavaTacticalRenderer/Modifier2.ts +5601 -0
  42. package/src/main/ts/armyc2/c5isr/JavaTacticalRenderer/P1.ts +14 -0
  43. package/src/main/ts/armyc2/c5isr/JavaTacticalRenderer/TGLight.ts +648 -0
  44. package/src/main/ts/armyc2/c5isr/JavaTacticalRenderer/clsChannelUtility.ts +647 -0
  45. package/src/main/ts/armyc2/c5isr/JavaTacticalRenderer/clsMETOC.ts +2994 -0
  46. package/src/main/ts/armyc2/c5isr/JavaTacticalRenderer/clsUtility.ts +2663 -0
  47. package/src/main/ts/armyc2/c5isr/JavaTacticalRenderer/mdlGeodesic.ts +669 -0
  48. package/src/main/ts/armyc2/c5isr/RenderMultipoints/clsClipPolygon2.ts +971 -0
  49. package/src/main/ts/armyc2/c5isr/RenderMultipoints/clsClipQuad.ts +871 -0
  50. package/src/main/ts/armyc2/c5isr/RenderMultipoints/clsRenderer.ts +3507 -0
  51. package/src/main/ts/armyc2/c5isr/RenderMultipoints/clsRenderer2.ts +500 -0
  52. package/src/main/ts/armyc2/c5isr/RenderMultipoints/clsUtility.ts +1089 -0
  53. package/src/main/ts/armyc2/c5isr/RenderMultipoints/clsUtilityCPOF.ts +2656 -0
  54. package/src/main/ts/armyc2/c5isr/RenderMultipoints/clsUtilityGE.ts +1419 -0
  55. package/src/main/ts/armyc2/c5isr/data/genc.json +1407 -0
  56. package/src/main/ts/armyc2/c5isr/data/msd.json +17311 -0
  57. package/src/main/ts/armyc2/c5isr/data/mse.json +18500 -0
  58. package/src/main/ts/armyc2/c5isr/data/svgd.json +31214 -0
  59. package/src/main/ts/armyc2/c5isr/data/svge.json +30558 -0
  60. package/src/main/ts/armyc2/c5isr/graphics2d/AffineTransform.ts +10 -0
  61. package/src/main/ts/armyc2/c5isr/graphics2d/Area.ts +437 -0
  62. package/src/main/ts/armyc2/c5isr/graphics2d/BasicStroke.ts +429 -0
  63. package/src/main/ts/armyc2/c5isr/graphics2d/BasicTypes.ts +7 -0
  64. package/src/main/ts/armyc2/c5isr/graphics2d/BufferedImage.ts +35 -0
  65. package/src/main/ts/armyc2/c5isr/graphics2d/Font.ts +111 -0
  66. package/src/main/ts/armyc2/c5isr/graphics2d/FontMetrics.ts +29 -0
  67. package/src/main/ts/armyc2/c5isr/graphics2d/FontRenderContext.ts +18 -0
  68. package/src/main/ts/armyc2/c5isr/graphics2d/GeneralPath.ts +211 -0
  69. package/src/main/ts/armyc2/c5isr/graphics2d/Graphics2D.ts +80 -0
  70. package/src/main/ts/armyc2/c5isr/graphics2d/IPathIterator.ts +33 -0
  71. package/src/main/ts/armyc2/c5isr/graphics2d/ImageIO.ts +16 -0
  72. package/src/main/ts/armyc2/c5isr/graphics2d/Line2D.ts +726 -0
  73. package/src/main/ts/armyc2/c5isr/graphics2d/PathIterator.ts +141 -0
  74. package/src/main/ts/armyc2/c5isr/graphics2d/Point.ts +112 -0
  75. package/src/main/ts/armyc2/c5isr/graphics2d/Point2D.ts +261 -0
  76. package/src/main/ts/armyc2/c5isr/graphics2d/Polygon.ts +391 -0
  77. package/src/main/ts/armyc2/c5isr/graphics2d/Rectangle.ts +567 -0
  78. package/src/main/ts/armyc2/c5isr/graphics2d/Rectangle2D.ts +445 -0
  79. package/src/main/ts/armyc2/c5isr/graphics2d/Shape.ts +31 -0
  80. package/src/main/ts/armyc2/c5isr/graphics2d/Stroke.ts +18 -0
  81. package/src/main/ts/armyc2/c5isr/graphics2d/TextLayout.ts +45 -0
  82. package/src/main/ts/armyc2/c5isr/graphics2d/TexturePaint.ts +25 -0
  83. package/src/main/ts/armyc2/c5isr/renderer/IIconRenderer.ts +15 -0
  84. package/src/main/ts/armyc2/c5isr/renderer/IconRenderer.ts +22 -0
  85. package/src/main/ts/armyc2/c5isr/renderer/MilStdIconRenderer.ts +269 -0
  86. package/src/main/ts/armyc2/c5isr/renderer/ModifierRenderer.ts +9882 -0
  87. package/src/main/ts/armyc2/c5isr/renderer/PatternFillRenderer.ts +146 -0
  88. package/src/main/ts/armyc2/c5isr/renderer/SinglePointSVGRenderer.ts +1265 -0
  89. package/src/main/ts/armyc2/c5isr/renderer/shapes/arc.ts +64 -0
  90. package/src/main/ts/armyc2/c5isr/renderer/shapes/bcurve.ts +95 -0
  91. package/src/main/ts/armyc2/c5isr/renderer/shapes/ellipse.ts +93 -0
  92. package/src/main/ts/armyc2/c5isr/renderer/shapes/line.ts +114 -0
  93. package/src/main/ts/armyc2/c5isr/renderer/shapes/path.ts +555 -0
  94. package/src/main/ts/armyc2/c5isr/renderer/shapes/pathiterator.ts +62 -0
  95. package/src/main/ts/armyc2/c5isr/renderer/shapes/point.ts +120 -0
  96. package/src/main/ts/armyc2/c5isr/renderer/shapes/rectangle.ts +431 -0
  97. package/src/main/ts/armyc2/c5isr/renderer/shapes/roundedrectangle.ts +99 -0
  98. package/src/main/ts/armyc2/c5isr/renderer/shapes/types.ts +25 -0
  99. package/src/main/ts/armyc2/c5isr/renderer/shapes/utilities.ts +203 -0
  100. package/src/main/ts/armyc2/c5isr/renderer/utilities/AffiliationColors.ts +104 -0
  101. package/src/main/ts/armyc2/c5isr/renderer/utilities/Color.ts +481 -0
  102. package/src/main/ts/armyc2/c5isr/renderer/utilities/DistanceUnit.ts +40 -0
  103. package/src/main/ts/armyc2/c5isr/renderer/utilities/DrawRules.ts +1323 -0
  104. package/src/main/ts/armyc2/c5isr/renderer/utilities/EntityCode.ts +51 -0
  105. package/src/main/ts/armyc2/c5isr/renderer/utilities/ErrorLogger.ts +736 -0
  106. package/src/main/ts/armyc2/c5isr/renderer/utilities/GENCLookup.ts +106 -0
  107. package/src/main/ts/armyc2/c5isr/renderer/utilities/GeoPixelConversion3D.ts +84 -0
  108. package/src/main/ts/armyc2/c5isr/renderer/utilities/IMultiPointRenderer.ts +87 -0
  109. package/src/main/ts/armyc2/c5isr/renderer/utilities/IPointConversion.ts +34 -0
  110. package/src/main/ts/armyc2/c5isr/renderer/utilities/ImageInfo.ts +324 -0
  111. package/src/main/ts/armyc2/c5isr/renderer/utilities/LRUCache.ts +127 -0
  112. package/src/main/ts/armyc2/c5isr/renderer/utilities/LRUEntry.ts +18 -0
  113. package/src/main/ts/armyc2/c5isr/renderer/utilities/LogLevel.ts +111 -0
  114. package/src/main/ts/armyc2/c5isr/renderer/utilities/MODrawRules.ts +219 -0
  115. package/src/main/ts/armyc2/c5isr/renderer/utilities/MSInfo.ts +1008 -0
  116. package/src/main/ts/armyc2/c5isr/renderer/utilities/MSLookup.ts +882 -0
  117. package/src/main/ts/armyc2/c5isr/renderer/utilities/MilStdAttributes.ts +380 -0
  118. package/src/main/ts/armyc2/c5isr/renderer/utilities/MilStdSymbol.ts +797 -0
  119. package/src/main/ts/armyc2/c5isr/renderer/utilities/Modifiers.ts +1699 -0
  120. package/src/main/ts/armyc2/c5isr/renderer/utilities/PointConversion.ts +178 -0
  121. package/src/main/ts/armyc2/c5isr/renderer/utilities/PointConversionDummy.ts +45 -0
  122. package/src/main/ts/armyc2/c5isr/renderer/utilities/PointConverter3D.ts +126 -0
  123. package/src/main/ts/armyc2/c5isr/renderer/utilities/RectUtilities.ts +118 -0
  124. package/src/main/ts/armyc2/c5isr/renderer/utilities/RendererException.ts +11 -0
  125. package/src/main/ts/armyc2/c5isr/renderer/utilities/RendererSettings.ts +1201 -0
  126. package/src/main/ts/armyc2/c5isr/renderer/utilities/RendererUtilities.ts +591 -0
  127. package/src/main/ts/armyc2/c5isr/renderer/utilities/SVGInfo.ts +29 -0
  128. package/src/main/ts/armyc2/c5isr/renderer/utilities/SVGLookup.ts +753 -0
  129. package/src/main/ts/armyc2/c5isr/renderer/utilities/SVGSymbolInfo.ts +137 -0
  130. package/src/main/ts/armyc2/c5isr/renderer/utilities/SVGTextInfo.ts +438 -0
  131. package/src/main/ts/armyc2/c5isr/renderer/utilities/SettingsChangedEvent.ts +19 -0
  132. package/src/main/ts/armyc2/c5isr/renderer/utilities/SettingsChangedEventListener.ts +10 -0
  133. package/src/main/ts/armyc2/c5isr/renderer/utilities/SettingsEventListener.ts +5 -0
  134. package/src/main/ts/armyc2/c5isr/renderer/utilities/Shape2SVG.ts +404 -0
  135. package/src/main/ts/armyc2/c5isr/renderer/utilities/ShapeInfo.ts +525 -0
  136. package/src/main/ts/armyc2/c5isr/renderer/utilities/ShapeUtilities.ts +55 -0
  137. package/src/main/ts/armyc2/c5isr/renderer/utilities/SymbolDimensionInfo.ts +36 -0
  138. package/src/main/ts/armyc2/c5isr/renderer/utilities/SymbolID.ts +1055 -0
  139. package/src/main/ts/armyc2/c5isr/renderer/utilities/SymbolUtilities.ts +2085 -0
  140. package/src/main/ts/armyc2/c5isr/renderer/utilities/TextInfo.ts +157 -0
  141. package/src/main/ts/armyc2/c5isr/web/render/GeoPixelConversion.ts +86 -0
  142. package/src/main/ts/armyc2/c5isr/web/render/MultiPointHandler.ts +3798 -0
  143. package/src/main/ts/armyc2/c5isr/web/render/MultiPointHandlerSVG.ts +412 -0
  144. package/src/main/ts/armyc2/c5isr/web/render/PointConverter.ts +124 -0
  145. package/src/main/ts/armyc2/c5isr/web/render/SymbolModifiers.ts +26 -0
  146. package/src/main/ts/armyc2/c5isr/web/render/WebRenderer.ts +677 -0
  147. package/src/main/ts/armyc2/c5isr/web/render/utilities/JavaRendererUtilities.ts +484 -0
  148. package/src/main/ts/armyc2/c5isr/web/render/utilities/LineInfo.ts +62 -0
  149. package/src/main/ts/armyc2/c5isr/web/render/utilities/SymbolInfo.ts +46 -0
  150. package/src/main/ts/armyc2/c5isr/web/render/utilities/TextInfo.ts +51 -0
  151. package/src/main/ts/org/gavaghan/geodesy/Angle.ts +31 -0
  152. package/src/main/ts/org/gavaghan/geodesy/Ellipsoid.ts +71 -0
  153. package/src/main/ts/org/gavaghan/geodesy/GeodeticCalculator.ts +200 -0
  154. package/src/main/ts/org/gavaghan/geodesy/GeodeticCurve.ts +55 -0
  155. package/src/main/ts/org/gavaghan/geodesy/GeodeticMeasurement.ts +68 -0
  156. package/src/main/ts/org/gavaghan/geodesy/GlobalCoordinates.ts +103 -0
  157. package/src/main/ts/org/gavaghan/geodesy/GlobalPosition.ts +90 -0
  158. package/test/ExportSPImages.js +692 -0
  159. package/test/MPWW.html +556 -0
  160. package/test/MPWorker.js +318 -0
  161. package/test/SPWorker.js +233 -0
  162. package/test/SVGWW.html +363 -0
  163. package/test/singlePointTester3.html +751 -0
  164. package/tsconfig.json +54 -0
  165. package/typedoc.json +30 -0
  166. package/updateVersion.js +21 -0
  167. package/webpack.config.js +34 -0
  168. package/webpackn.config.js +28 -0
  169. package/webpackr.config.js +47 -0
  170. package/webpackw.config.js +23 -0
@@ -0,0 +1,515 @@
1
+ /**
2
+ * Class to provide the symbols with values corresponding to the Mil-Standard-2525 hierarchy.
3
+ *
4
+ */
5
+ export class TacticalLines {
6
+ public static readonly BS_LINE = 10000000;
7
+ public static readonly BS_AREA = 11000000;
8
+ /**
9
+ * @deprecated
10
+ */
11
+ public static readonly BS_CROSS = 12000000;
12
+ /**
13
+ * @deprecated
14
+ */
15
+ public static readonly BS_ELLIPSE = 13000000;
16
+ public static readonly PBS_ELLIPSE = 13000001;
17
+ public static readonly PBS_CIRCLE = 13000002;
18
+ /**
19
+ * @deprecated
20
+ */
21
+ public static readonly BS_RECTANGLE = 14000000;
22
+ public static readonly PBS_RECTANGLE = 14000001;
23
+ /**
24
+ * @deprecated
25
+ */
26
+ public static readonly PBS_SQUARE = 14000002;
27
+ /**
28
+ * @deprecated
29
+ */
30
+ public static readonly BBS_LINE = 15000000;
31
+ /**
32
+ * @deprecated
33
+ */
34
+ public static readonly BBS_AREA = 15000001;
35
+ public static readonly BBS_POINT = 15000002;
36
+ /**
37
+ * @deprecated
38
+ */
39
+ public static readonly BBS_RECTANGLE = 15000003;
40
+ /**
41
+ * @deprecated
42
+ */
43
+ public static readonly BS_BBOX = 15000004;
44
+
45
+ public static readonly PZ: number = 22138000;
46
+ public static readonly LZ: number = 22137000;
47
+ public static readonly DZ: number = 22135000;
48
+ public static readonly FAADZ: number = 22232000;
49
+ public static readonly MEZ: number = 22234000;
50
+ public static readonly LOMEZ: number = 22234100;
51
+ public static readonly HIMEZ: number = 22234200;
52
+ public static readonly ROZ: number = 22231000;
53
+ public static readonly AARROZ: number = 25171100;
54
+ public static readonly UAROZ: number = 25171200;
55
+ public static readonly WEZ: number = 25171300;
56
+ public static readonly FEZ: number = 25171400;
57
+ public static readonly JEZ: number = 25171500;
58
+ public static readonly WFZ: number = 22235000;
59
+ public static readonly EZ: number = 22136000;
60
+ public static readonly AIRFIELD: number = 221311000;
61
+ public static readonly BASE_CAMP_REVD: number = 11120500;
62
+ public static readonly BASE_CAMP: number = 13120500;
63
+ public static readonly GUERILLA_BASE_REVD: number = 11120600;
64
+ public static readonly GUERILLA_BASE: number = 13120600;
65
+ public static readonly HIDACZ: number = 22233000;
66
+ public static readonly FPF: number = 24260000;
67
+ public static readonly ENCIRCLE: number = 22624000;
68
+ public static readonly LAA: number = 221310000;
69
+ public static readonly DRCL: number = 23490000;
70
+ public static readonly BYPASS: number = 21300000;
71
+ public static readonly BYDIF: number = 23212000;
72
+ public static readonly BYIMP: number = 23213000;
73
+ public static readonly LINTGT: number = 24250000;
74
+ public static readonly BLOCK: number = 21100000;
75
+ public static readonly LINTGTS: number = 24211000;
76
+ public static readonly BREACH: number = 21200000;
77
+ public static readonly CANALIZE: number = 21400000;
78
+ public static readonly MNFLDDIS: number = 23174000;
79
+ public static readonly DISRUPT: number = 211000000;
80
+ public static readonly EASY: number = 23211000;
81
+ public static readonly CONTAIN: number = 21600000;
82
+ public static readonly CLEAR: number = 21500000;
83
+ public static readonly ISOLATE: number = 211400000;
84
+ public static readonly OCCUPY: number = 211600000;
85
+ public static readonly PENETRATE: number = 211700000;
86
+ public static readonly RETAIN: number = 211900000;
87
+ public static readonly SECURE: number = 212100000;
88
+ public static readonly SEIZE: number = 212300000;
89
+ public static readonly ASLTXING: number = 23221000;
90
+ public static readonly GAP: number = 23163000;
91
+ public static readonly COVER: number = 212230000;
92
+ public static readonly SCREEN: number = 212210000;
93
+ public static readonly GUARD: number = 212220000;
94
+ public static readonly SARA: number = 22139000;
95
+ public static readonly FIX: number = 211100000;
96
+ public static readonly PDF: number = 22422000;
97
+ public static readonly ATKBYFIRE: number = 22533000;
98
+ public static readonly SPTBYFIRE: number = 22534000;
99
+ public static readonly CLUSTER: number = 23157000;
100
+ public static readonly TURN: number = 23173000;
101
+ public static readonly PLANNED: number = 23191000;
102
+ public static readonly ESR1: number = 23192000;
103
+ public static readonly ESR2: number = 23193000;
104
+ public static readonly ROADBLK: number = 23194000;
105
+ public static readonly FOXHOLE: number = 23340000;
106
+ public static readonly PAA: number = 243100000;
107
+ public static readonly CONVOY: number = 25211000;
108
+ public static readonly HCONVOY: number = 25212000;
109
+ public static readonly FORDIF: number = 23225000;
110
+ public static readonly MSDZ: number = 23410000;
111
+ public static readonly STRIKWARN: number = 272101;
112
+ public static readonly RETIRE: number = 212000000;
113
+ public static readonly RIP: number = 211800000;
114
+ public static readonly TRIP: number = 231100000;
115
+ public static readonly NAVIGATION: number = 26220000;
116
+ public static readonly MSR: number = 25221000;
117
+ public static readonly ASR: number = 25222000;
118
+ public static readonly LL: number = 22125000;
119
+ public static readonly EWL: number = 110300;
120
+ public static readonly FERRY: number = 23223000;
121
+ public static readonly FORDSITE: number = 23224000;
122
+ public static readonly MFLANE: number = 23226000;
123
+ public static readonly RAFT: number = 23227000;
124
+ public static readonly FOLSP: number = 211210000;
125
+ public static readonly ATDITCH: number = 23131100;
126
+ public static readonly ATDITCHC: number = 23131200;
127
+ public static readonly ATWALL: number = 23134000;
128
+ public static readonly ATDITCHM: number = 23132000;
129
+ public static readonly DELAY: number = 21800000;
130
+ public static readonly DIRATKAIR: number = 22522100;
131
+ public static readonly DIRATKGND: number = 22522210;
132
+ public static readonly DIRATKSPT: number = 22522220;
133
+ public static readonly WITHDRAW: number = 212400000;
134
+ public static readonly CORDONSEARCH: number = 212500000;
135
+ public static readonly CORDONKNOCK: number = 212600000;
136
+ public static readonly WDRAWUP: number = 212410000;
137
+ public static readonly CFL: number = 24220000;
138
+ public static readonly LOD: number = 22526000;
139
+ public static readonly PL: number = 22124000;
140
+ public static readonly FEBA: number = 25140400;
141
+ public static readonly FSCL: number = 24210000;
142
+ public static readonly BCL_REVD: number = 25260400;
143
+ public static readonly BCL: number = 1325260400;
144
+ public static readonly ICL: number = 25300100;
145
+ public static readonly IFF_OFF: number = 25190100;
146
+ public static readonly IFF_ON: number = 25190200;
147
+ public static readonly RFL: number = 24240000;
148
+ public static readonly FCL: number = 22523000;
149
+ public static readonly LOA: number = 22525000;
150
+ public static readonly BRDGHD: number = 22623000;
151
+ public static readonly BRDGHD_GE: number = 22623001;
152
+ public static readonly PLD: number = 22528000;
153
+ public static readonly FLOT: number = 22122000;
154
+ public static readonly AMBUSH: number = 22611000;
155
+ public static readonly LLTR: number = 22225000;
156
+ public static readonly SAAFR: number = 22223000;
157
+ public static readonly AC: number = 22221000;
158
+ public static readonly MRR: number = 22222000;
159
+ public static readonly SL: number = 25170400;
160
+ public static readonly TC: number = 25170600;
161
+ public static readonly SC: number = 22224000;
162
+ public static readonly MNFLDFIX: number = 23172000;
163
+ public static readonly MNFLDBLK: number = 23171000;
164
+ public static readonly MSR_ONEWAY: number = 25330301;
165
+ public static readonly MSR_ALT: number = 25330303;
166
+ public static readonly MSR_TWOWAY: number = 25330302;
167
+ public static readonly ASR_ONEWAY: number = 25330401;
168
+ public static readonly ASR_ALT: number = 25330403;
169
+ public static readonly ASR_TWOWAY: number = 25330402;
170
+ public static readonly ROUTE_ONEWAY: number = 25330501;
171
+ public static readonly ROUTE_ALT: number = 25330502;
172
+ public static readonly BEARING: number = 26400000;
173
+ public static readonly BEARING_EW: number = 220101;
174
+ public static readonly BEARING_J: number = 220107;
175
+ public static readonly BEARING_RDF: number = 220108;
176
+ public static readonly ELECTRO: number = 26410000;
177
+ public static readonly ACOUSTIC: number = 26420000;
178
+ public static readonly ACOUSTIC_AMB: number = 220104;
179
+ public static readonly TORPEDO: number = 26430000;
180
+ public static readonly OPTICAL: number = 26440000;
181
+ public static readonly BOUNDARY: number = 22121000;
182
+ public static readonly HOLD: number = 22612000;
183
+ public static readonly HOLD_GE: number = 22612001;
184
+ public static readonly RELEASE: number = 22613000;
185
+ public static readonly ABATIS: number = 23120000;
186
+ public static readonly LINE: number = 23112000;
187
+ public static readonly FOLLA: number = 211200000;
188
+ public static readonly AIRAOA: number = 22521200;
189
+ public static readonly AAAAA: number = 22521300;
190
+ public static readonly MAIN: number = 22521410;
191
+ public static readonly MAIN_STRAIGHT: number = 22521411;
192
+ public static readonly LC: number = 22123000;
193
+ public static readonly IL: number = 22524000;
194
+ public static readonly LDLC: number = 22527000;
195
+ public static readonly SPT: number = 22521420;
196
+ public static readonly SPT_STRAIGHT: number = 22521421;
197
+ public static readonly CATK: number = 21700000;
198
+ public static readonly CATKBYFIRE: number = 21710000;
199
+ public static readonly TRIPLE: number = 231117300;
200
+ public static readonly DOUBLEC: number = 231117200;
201
+ public static readonly SINGLEC: number = 231117100;
202
+ public static readonly HWFENCE: number = 231116000;
203
+ public static readonly LWFENCE: number = 231115000;
204
+ public static readonly UNSP: number = 231111000;
205
+ public static readonly DOUBLEA: number = 231114000;
206
+ public static readonly SFENCE: number = 231112000;
207
+ public static readonly DFENCE: number = 231113000;
208
+ public static readonly CHANNEL: number = 231113001;
209
+ public static readonly CHANNEL_FLARED: number = 231113002;
210
+ public static readonly CHANNEL_DASHED: number = 231113003;
211
+
212
+ public static readonly OVERHEAD_WIRE: number = 23200000;
213
+ public static readonly PAA_RECTANGULAR: number = 24326100;
214
+ public static readonly BATTLE: number = 22431000;
215
+ public static readonly STRONG: number = 23350000;
216
+ public static readonly ASSY: number = 22132000;
217
+ public static readonly FFA: number = 24323100;
218
+ public static readonly FFA_RECTANGULAR: number = 24323200;
219
+ public static readonly FFA_CIRCULAR: number = 24323300;
220
+ public static readonly FSA: number = 24321100;
221
+ public static readonly FSA_RECTANGULAR: number = 24321200;
222
+ public static readonly FSA_CIRCULAR: number = 24321300;
223
+ public static readonly NOTACK: number = 25200300;
224
+ public static readonly RFA: number = 24325100;
225
+ public static readonly RFA_RECTANGULAR: number = 24325200;
226
+ public static readonly RFA_CIRCULAR: number = 24325300;
227
+ public static readonly PAA_CIRCULAR: number = 24326200;
228
+ public static readonly ATI: number = 24331100;
229
+ public static readonly ATI_RECTANGULAR: number = 24331200;
230
+ public static readonly ATI_CIRCULAR: number = 24331300;
231
+ public static readonly CFFZ: number = 24332100;
232
+ public static readonly CFFZ_RECTANGULAR: number = 24332200;
233
+ public static readonly CFFZ_CIRCULAR: number = 24332300;
234
+ public static readonly SENSOR: number = 24333100;
235
+ public static readonly SENSOR_RECTANGULAR: number = 24333200;
236
+ public static readonly SENSOR_CIRCULAR: number = 24333300;
237
+ public static readonly CENSOR: number = 24334100;
238
+ public static readonly CENSOR_RECTANGULAR: number = 24334200;
239
+ public static readonly CENSOR_CIRCULAR: number = 24334300;
240
+ public static readonly DA: number = 24335100;
241
+ public static readonly DA_RECTANGULAR: number = 24335200;
242
+ public static readonly DA_CIRCULAR: number = 24335300;
243
+ public static readonly CFZ: number = 24336100;
244
+ public static readonly CFZ_RECTANGULAR: number = 24336200;
245
+ public static readonly CFZ_CIRCULAR: number = 24336300;
246
+ public static readonly ZOR: number = 24337100;
247
+ public static readonly ZOR_RECTANGULAR: number = 24337200;
248
+ public static readonly ZOR_CIRCULAR: number = 24337300;
249
+ public static readonly TBA: number = 24338100;
250
+ public static readonly TBA_RECTANGULAR: number = 24338200;
251
+ public static readonly TBA_CIRCULAR: number = 24338300;
252
+ public static readonly TVAR: number = 24339100;
253
+ public static readonly TVAR_RECTANGULAR: number = 24339200;
254
+ public static readonly TVAR_CIRCULAR: number = 24339300;
255
+ public static readonly TAI: number = 22626000;
256
+ public static readonly OBJ: number = 22535000;
257
+ public static readonly BSA: number = 25351000;
258
+ public static readonly DSA: number = 25352000;
259
+ public static readonly CSA: number = 25310800;
260
+ public static readonly EA: number = 22133000;
261
+ public static readonly NAI: number = 22625000;
262
+ public static readonly FARP: number = 25330000;
263
+ public static readonly FORT_REVD: number = 22134000;
264
+ public static readonly FORT: number = 1322134000;
265
+
266
+ public static readonly ACA: number = 24322100;
267
+ public static readonly ACA_RECTANGULAR: number = 24322200;
268
+ public static readonly ACA_CIRCULAR: number = 24322300;
269
+ public static readonly AT: number = 24330000;
270
+ public static readonly SMOKE: number = 24314000;
271
+ public static readonly SERIES: number = 24313000;
272
+ public static readonly BOMB: number = 24315000;
273
+ public static readonly DHA_REVD: number = 25310000;
274
+ public static readonly DHA: number = 1325310000;
275
+ public static readonly EPW: number = 25320000;
276
+ public static readonly RHA: number = 25340000;
277
+ public static readonly RSA: number = 25353000;
278
+ public static readonly GENERAL: number = 22131000;
279
+ public static readonly JTAA: number = 150501;
280
+ public static readonly SAA: number = 150502;
281
+ public static readonly SGAA: number = 150503;
282
+ public static readonly PNO: number = 22431100;
283
+ public static readonly ASSAULT: number = 22531000;
284
+ public static readonly ATKPOS: number = 22532000;
285
+ public static readonly AO: number = 22621000;
286
+ public static readonly AIRHEAD: number = 22622000;
287
+ public static readonly PEN: number = 22536000;
288
+ public static readonly DEPICT: number = 23162000;
289
+ public static readonly MINED: number = 23164000;
290
+ public static readonly MINE_LINE: number = 290101;
291
+ public static readonly FENCED: number = 270801;
292
+ public static readonly UXO: number = 23180000;
293
+ public static readonly FORTL: number = 23330000;
294
+ public static readonly OBSAREA: number = 23115000;
295
+ public static readonly ZONE: number = 23113000;
296
+ public static readonly OBSFAREA: number = 23114000;
297
+ public static readonly NFA: number = 24324100;
298
+ public static readonly NFA_RECTANGULAR: number = 24324200;
299
+ public static readonly NFA_CIRCULAR: number = 24324300;
300
+ public static readonly CHEM: number = 23460000;
301
+ public static readonly BIO: number = 23450000;
302
+ public static readonly RAD: number = 23440000;
303
+ public static readonly NUC: number = 271900;
304
+ public static readonly NFL: number = 24230000;
305
+ public static readonly MFP: number = 24225000;
306
+ public static readonly TGMF: number = 24226000;
307
+ public static readonly RECTANGULAR: number = 24311000; // Rectangular Target
308
+ public static readonly CIRCULAR: number = 24312000;
309
+ public static readonly BDZ: number = 25170800;
310
+
311
+ public static readonly KILLBOXBLUE: number = 24351000;
312
+ public static readonly KILLBOXBLUE_RECTANGULAR: number = 24352000;
313
+ public static readonly KILLBOXBLUE_CIRCULAR: number = 24353000;
314
+ public static readonly KILLBOXPURPLE: number = 24361000;
315
+ public static readonly KILLBOXPURPLE_RECTANGULAR: number = 24362000;
316
+ public static readonly KILLBOXPURPLE_CIRCULAR: number = 24363000;
317
+
318
+ public static readonly RANGE_FAN: number = 243111000;
319
+ public static readonly RANGE_FAN_FILL: number = 243111001;
320
+ public static readonly RANGE_FAN_SECTOR: number = 243112000;
321
+
322
+ public static readonly LAUNCH_AREA: number = 25200101;
323
+ public static readonly DEFENDED_AREA_CIRCULAR: number = 25200201;
324
+ public static readonly DEFENDED_AREA_RECTANGULAR: number = 25200202;
325
+
326
+ public static readonly SHIP_AOI_CIRCULAR: number = 25200401;
327
+ public static readonly SHIP_AOI_RECTANGULAR: number = 25200402;
328
+
329
+ public static readonly CF: number = 31131000;
330
+ public static readonly UCF: number = 31131100;
331
+ public static readonly CFG: number = 31131200;
332
+ public static readonly CFY: number = 31131300;
333
+ public static readonly WF: number = 31132000;
334
+ public static readonly WFG: number = 31132200;
335
+ public static readonly WFY: number = 31132300;
336
+ public static readonly UWF: number = 31132100;
337
+ public static readonly OCCLUDED: number = 31133000;
338
+ public static readonly UOF: number = 31133100;
339
+ public static readonly OFY: number = 31133200;
340
+ public static readonly SF: number = 31134000;
341
+ public static readonly USF: number = 31134100;
342
+ public static readonly SFG: number = 31134200;
343
+ public static readonly SFY: number = 31134300;
344
+ public static readonly TROUGH: number = 31141000;
345
+ public static readonly UPPER_TROUGH: number = 45110402;
346
+ public static readonly INSTABILITY: number = 31144000;
347
+ public static readonly SHEAR: number = 31145000;
348
+ public static readonly ITC: number = 31146000;
349
+ public static readonly CONVERGENCE: number = 31147000;
350
+ public static readonly ITD: number = 31148000;
351
+ public static readonly RIDGE: number = 31142000;
352
+ public static readonly SQUALL: number = 31143000;
353
+ public static readonly JET: number = 31430000;
354
+ public static readonly JET_GE: number = 31430001;
355
+ public static readonly STREAM: number = 31440000;
356
+ public static readonly STREAM_GE: number = 31440001;
357
+ public static readonly IFR: number = 31710000;
358
+ public static readonly MVFR: number = 31720000;
359
+ public static readonly TURBULENCE: number = 31730000;
360
+ public static readonly ICING: number = 31740000;
361
+ public static readonly NON_CONVECTIVE: number = 31750000;
362
+ public static readonly CONVECTIVE: number = 31751000;
363
+ public static readonly FROZEN: number = 31760000;
364
+ public static readonly THUNDERSTORMS: number = 31770000;
365
+ public static readonly FOG: number = 31780000;
366
+ public static readonly SAND: number = 31790000;
367
+ public static readonly FREEFORM: number = 317100000;
368
+ public static readonly ISOBAR: number = 31810000;
369
+ public static readonly ISOBAR_GE: number = 31810001;
370
+ public static readonly UPPER_AIR: number = 31820000;
371
+ public static readonly UPPER_AIR_GE: number = 31820001;
372
+ public static readonly ISOTHERM: number = 31830000;
373
+ public static readonly ISOTHERM_GE: number = 31830001;
374
+ public static readonly ISOTACH: number = 31840000;
375
+ public static readonly ISOTACH_GE: number = 31840001;
376
+ public static readonly ISODROSOTHERM: number = 31850000;
377
+ public static readonly ISODROSOTHERM_GE: number = 31850001;
378
+ public static readonly ISOPLETHS: number = 31860000;
379
+ public static readonly ISOPLETHS_GE: number = 31860001;
380
+ public static readonly OPERATOR_FREEFORM: number = 31870000;
381
+ public static readonly LVO: number = 32151000;
382
+ public static readonly UNDERCAST: number = 32152000;
383
+ public static readonly LRO: number = 32153000;
384
+ public static readonly ICE_EDGE: number = 32154000;
385
+ public static readonly ICE_EDGE_GE: number = 32154001;
386
+ public static readonly ESTIMATED_ICE_EDGE: number = 32155000;
387
+ public static readonly ESTIMATED_ICE_EDGE_GE: number = 32155001;
388
+ public static readonly ICE_EDGE_RADAR: number = 32156000;
389
+ public static readonly ICE_EDGE_RADAR_GE: number = 32156001;
390
+ public static readonly CRACKS: number = 32161000;
391
+ public static readonly CRACKS_GE: number = 32161001;
392
+ public static readonly CRACKS_SPECIFIC_LOCATION: number = 32162000;
393
+ public static readonly CRACKS_SPECIFIC_LOCATION_GE: number = 32162001;
394
+ public static readonly ICE_OPENINGS_LEAD: number = 32163000;
395
+ public static readonly ICE_OPENINGS_LEAD_GE: number = 32163001;
396
+ public static readonly ICE_OPENINGS_FROZEN: number = 32164000;
397
+ public static readonly ICE_OPENINGS_FROZEN_GE: number = 32164001;
398
+ public static readonly DEPTH_CURVE: number = 32212000;
399
+ public static readonly DEPTH_CURVE_GE: number = 32212001;
400
+ public static readonly DEPTH_CONTOUR: number = 32213000;
401
+ public static readonly DEPTH_CONTOUR_GE: number = 32213001;
402
+ public static readonly DEPTH_AREA: number = 32214000;
403
+ public static readonly COASTLINE: number = 32221000;
404
+ public static readonly COASTLINE_GE: number = 32221001;
405
+ public static readonly ISLAND: number = 32222000;
406
+ public static readonly BEACH: number = 32223000;
407
+ public static readonly WATER: number = 32224000;
408
+ public static readonly FORESHORE_LINE: number = 32225100;
409
+ public static readonly FORESHORE_AREA: number = 32225200;
410
+ public static readonly ANCHORAGE_LINE: number = 32231400;
411
+ public static readonly ANCHORAGE_AREA: number = 32231500;
412
+ public static readonly PIER: number = 32231700;
413
+ public static readonly PIER_GE: number = 32231701;
414
+ public static readonly FISH_TRAPS: number = 32232400;
415
+ public static readonly DRYDOCK: number = 32233100;
416
+ public static readonly LOADING_FACILITY_LINE: number = 32233400;
417
+ public static readonly LOADING_FACILITY_AREA: number = 32233500;
418
+ public static readonly RAMP_ABOVE_WATER: number = 32233600;
419
+ public static readonly RAMP_ABOVE_WATER_GE: number = 32233601;
420
+ public static readonly RAMP_BELOW_WATER: number = 32233700;
421
+ public static readonly RAMP_BELOW_WATER_GE: number = 32233701;
422
+ public static readonly JETTY_ABOVE_WATER: number = 32234100;
423
+ public static readonly JETTY_ABOVE_WATER_GE: number = 32234101;
424
+ public static readonly JETTY_BELOW_WATER: number = 32234200;
425
+ public static readonly JETTY_BELOW_WATER_GE: number = 32234201;
426
+ public static readonly SEAWALL: number = 32234300;
427
+ public static readonly SEAWALL_GE: number = 32234301;
428
+ public static readonly PERCHES: number = 32244200;
429
+ public static readonly LEADING_LINE: number = 32246000;
430
+ public static readonly UNDERWATER_HAZARD: number = 32253000;
431
+ public static readonly FOUL_GROUND: number = 32254200;
432
+ public static readonly KELP: number = 32255200;
433
+ public static readonly BREAKERS: number = 32259000;
434
+ public static readonly REEF: number = 322510000;
435
+ public static readonly DISCOLORED_WATER: number = 322512000;
436
+ public static readonly EBB_TIDE: number = 32272000;
437
+ public static readonly EBB_TIDE_GE: number = 32272001;
438
+ public static readonly FLOOD_TIDE: number = 32273000;
439
+ public static readonly FLOOD_TIDE_GE: number = 32273001;
440
+ public static readonly RESTRICTED_AREA: number = 32530000;
441
+ public static readonly PIPE: number = 32680000;
442
+ public static readonly TRAINING_AREA: number = 32550000;
443
+ public static readonly VDR_LEVEL_12: number = 32311000;
444
+ public static readonly VDR_LEVEL_23: number = 32312000;
445
+ public static readonly VDR_LEVEL_34: number = 32313000;
446
+ public static readonly VDR_LEVEL_45: number = 32314000;
447
+ public static readonly VDR_LEVEL_56: number = 32315000;
448
+ public static readonly VDR_LEVEL_67: number = 32316000;
449
+ public static readonly VDR_LEVEL_78: number = 32317000;
450
+ public static readonly VDR_LEVEL_89: number = 32318000;
451
+ public static readonly VDR_LEVEL_910: number = 32319000;
452
+ public static readonly BEACH_SLOPE_FLAT: number = 32321000;
453
+ public static readonly BEACH_SLOPE_GENTLE: number = 32322000;
454
+ public static readonly BEACH_SLOPE_MODERATE: number = 32323000;
455
+ public static readonly BEACH_SLOPE_STEEP: number = 32324000;
456
+ public static readonly SOLID_ROCK: number = 32411100;
457
+ public static readonly CLAY: number = 32411200;
458
+ public static readonly VERY_COARSE_SAND: number = 32411300;
459
+ public static readonly COARSE_SAND: number = 32411400;
460
+ public static readonly MEDIUM_SAND: number = 32411500;
461
+ public static readonly FINE_SAND: number = 32411600;
462
+ public static readonly VERY_FINE_SAND: number = 32411700;
463
+ public static readonly VERY_FINE_SILT: number = 32411800;
464
+ public static readonly FINE_SILT: number = 32411900;
465
+ public static readonly MEDIUM_SILT: number = 324111000;
466
+ public static readonly COARSE_SILT: number = 324111100;
467
+ public static readonly BOULDERS: number = 324111200;
468
+ public static readonly OYSTER_SHELLS: number = 324111300;
469
+ public static readonly PEBBLES: number = 324111400;
470
+ public static readonly SAND_AND_SHELLS: number = 324111500;
471
+ public static readonly BOTTOM_SEDIMENTS_LAND: number = 324111600;
472
+ public static readonly BOTTOM_SEDIMENTS_NO_DATA: number = 324111700;
473
+ public static readonly BOTTOM_ROUGHNESS_SMOOTH: number = 32412100;
474
+ public static readonly BOTTOM_ROUGHNESS_MODERATE: number = 32412200;
475
+ public static readonly BOTTOM_ROUGHNESS_ROUGH: number = 32412300;
476
+ public static readonly CLUTTER_LOW: number = 32413100;
477
+ public static readonly CLUTTER_MEDIUM: number = 32413200;
478
+ public static readonly CLUTTER_HIGH: number = 32413300;
479
+ public static readonly IMPACT_BURIAL_0: number = 32414100;
480
+ public static readonly IMPACT_BURIAL_10: number = 32414200;
481
+ public static readonly IMPACT_BURIAL_20: number = 32414300;
482
+ public static readonly IMPACT_BURIAL_75: number = 32414400;
483
+ public static readonly IMPACT_BURIAL_100: number = 32414500;
484
+ public static readonly BOTTOM_CATEGORY_A: number = 32415100;
485
+ public static readonly BOTTOM_CATEGORY_B: number = 32415200;
486
+ public static readonly BOTTOM_CATEGORY_C: number = 32415300;
487
+ public static readonly BOTTOM_TYPE_A1: number = 32416100;
488
+ public static readonly BOTTOM_TYPE_A2: number = 32416200;
489
+ public static readonly BOTTOM_TYPE_A3: number = 32416300;
490
+ public static readonly BOTTOM_TYPE_B1: number = 32416400;
491
+ public static readonly BOTTOM_TYPE_B2: number = 32416500;
492
+ public static readonly BOTTOM_TYPE_B3: number = 32416600;
493
+ public static readonly BOTTOM_TYPE_C1: number = 32416700;
494
+ public static readonly BOTTOM_TYPE_C2: number = 32416800;
495
+ public static readonly BOTTOM_TYPE_C3: number = 32416900;
496
+ public static readonly SWEPT_AREA: number = 32540000;
497
+ public static readonly OIL_RIG_FIELD: number = 32670000;
498
+ public static readonly SUBMERGED_CRIB: number = 32620000;
499
+ public static readonly CABLE: number = 32610000;
500
+ public static readonly MARITIME_LIMIT: number = 32510000;
501
+ public static readonly MARITIME_AREA: number = 32520000;
502
+ public static readonly CANAL: number = 32630000;
503
+ public static readonly OPERATOR_DEFINED: number = 32560000;
504
+ public static readonly RECTANGULAR_TARGET: number = 240804; // Rectangular Target – Single Target
505
+ public static readonly CUED_ACQUISITION: number = 25200600;
506
+ public static readonly RADAR_SEARCH: number = 25200700;
507
+ public static readonly GENERIC_LINE: number = 25110400;
508
+ public static readonly GENERIC_AREA: number = 25120700;
509
+ public static readonly HOL: number = 25141800;
510
+ public static readonly BHL: number = 2514190;
511
+ public static readonly ROUTE: number = 25330500;
512
+ public static readonly FPOL: number = 25344100;
513
+ public static readonly RPOL: number = 25344200;
514
+ }
515
+