This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 56
/
jmsml.config
1039 lines (921 loc) · 74.6 KB
/
jmsml.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<JMSMLConfig xmlns="http://esri.com/jmsmlConfig.xsd"
LibraryPath="..\..\..\..\..\instance"
LibraryName="Base.xml">
<ETLConfig DomainSeparator=" : " PointSize="64" SVGHome ="..\..\..\..\..\svg" GraphicRoot="{Symbols_Root}" GraphicHome="..\..\..\..\..\svg" GraphicExtension="emf">
<GraphicFolder Name="Amplifier" Mobilities="true" AuxiliaryEquipment="true"/>
<GraphicFolder Name="Appendices" Entities="SS_INTERNAL">
<GraphicFolder Name="Activities" Entities="SS_ACTIVITY">
<GraphicFolder Name="mod1" ModifierOnes="SS_ACTIVITY"/>
</GraphicFolder>
<GraphicFolder Name="Air" Entities="SS_AIR SS_AIR_MISSILE">
<GraphicFolder Name="mod1" ModifierOnes="SS_AIR SS_AIR_MISSILE"/>
<GraphicFolder Name="mod2" ModifierTwos="SS_AIR SS_AIR_MISSILE"/>
</GraphicFolder>
<GraphicFolder Name="ControlMeasures" Entities="SS_CONTROL_MEASURE"/>
<GraphicFolder Name="Cyberspace" Entities="SS_CYBERSPACE"/>
<GraphicFolder Name="Land" Entities="SS_LAND_UNIT SS_LAND_EQUIPMENT SS_LAND_INSTALLATION SS_LAND_CIVILIAN" Specials="true">
<GraphicFolder Name="mod1" ModifierOnes="SS_LAND_UNIT SS_LAND_EQUIPMENT SS_LAND_INSTALLATION SS_LAND_CIVILIAN"/>
<GraphicFolder Name="mod2" ModifierTwos="SS_LAND_UNIT SS_LAND_EQUIPMENT SS_LAND_INSTALLATION SS_LAND_CIVILIAN"/>
</GraphicFolder>
<GraphicFolder Name="METOC">
<GraphicFolder Name="Atmospheric" Entities="SS_ATMOSPHERIC"/>
<GraphicFolder Name="Oceanographic" Entities="SS_OCEANIC"/>
<GraphicFolder Name="Space" Entities="SS_MET_SPACE"/>
</GraphicFolder>
<GraphicFolder Name="SeaSurface" Entities="SS_SEA_SURFACE">
<GraphicFolder Name="mod1" ModifierOnes="SS_SEA_SURFACE"/>
<GraphicFolder Name="mod2" ModifierTwos="SS_SEA_SURFACE"/>
</GraphicFolder>
<GraphicFolder Name="SigInt" Entities="SS_SIGINT_LAND SS_SIGINT_SURFACE SS_SIGINT_SUBSURFACE SS_SIGINT_AIR SS_SIGINT_SPACE">
<GraphicFolder Name="mod1" ModifierOnes="SS_SIGINT_LAND SS_SIGINT_SURFACE SS_SIGINT_SUBSURFACE SS_SIGINT_AIR SS_SIGINT_SPACE"/>
</GraphicFolder>
<GraphicFolder Name="Space" Entities="SS_SPACE SS_SPACE_MISSILE">
<GraphicFolder Name="mod1" ModifierOnes="SS_SPACE SS_SPACE_MISSILE"/>
<GraphicFolder Name="mod2" ModifierTwos="SS_SPACE SS_SPACE_MISSILE"/>
</GraphicFolder>
<GraphicFolder Name="SeaSubsurface" Entities="SS_SEA_SUBSURFACE SS_MINE_WARFARE">
<GraphicFolder Name="mod1" ModifierOnes="SS_SEA_SUBSURFACE SS_MINE_WARFARE"/>
<GraphicFolder Name="mod2" ModifierTwos="SS_SEA_SUBSURFACE SS_MINE_WARFARE"/>
</GraphicFolder>
</GraphicFolder>
<GraphicFolder Name="Echelon" Echelons="true"/>
<GraphicFolder Name="Frames" Frames="REALITY">
<GraphicFolder Name="Exercise" Frames="EXERCISE"/>
<GraphicFolder Name="Sim" Frames="SIMULATION"/>
</GraphicFolder>
<GraphicFolder Name="HQTFFD" HQTFFD="true"/>
<GraphicFolder Name="OCA" OCA="true"/>
<GraphicFolder Name="Legacy">
<GraphicFolder Name="2525C" LegacyStandard="2525C"/>
<GraphicFolder Name="2525B_Change_2" LegacyStandard="2525BC2"/>
</GraphicFolder>
<!-- Custom tags required by Esri and possibly others users, during the export of data -->
<ExportTags>
<ExportTag Name="25140601" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25140602" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25140603" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25140604" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25140605" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25140606" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25140607" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25270503" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25330100" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25330200" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25341100" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25341200" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25341300" Description="GeometryTransformation">gct_arrow</ExportTag>
<ExportTag Name="25151401" Description="GeometryTransformation">gct_arrow_with_offset</ExportTag>
<ExportTag Name="25151402" Description="GeometryTransformation">gct_arrow_with_offset</ExportTag>
<ExportTag Name="25151403" Description="GeometryTransformation">gct_arrow_with_offset</ExportTag>
<ExportTag Name="25151404" Description="GeometryTransformation">gct_arrow_with_offset</ExportTag>
<ExportTag Name="25151405" Description="GeometryTransformation">gct_arrow_with_offset</ExportTag>
<ExportTag Name="25151406" Description="GeometryTransformation">gct_arrow_with_offset</ExportTag>
<ExportTag Name="25151407" Description="GeometryTransformation">gct_arrow_with_offset</ExportTag>
<ExportTag Name="25151408" Description="GeometryTransformation">gct_arrow_with_offset</ExportTag>
<ExportTag Name="25340600" Description="GeometryTransformation">gct_arrow_with_offset</ExportTag>
<ExportTag Name="25340700" Description="GeometryTransformation">gct_arrow_with_offset</ExportTag>
<ExportTag Name="25151204" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25270501" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25270601" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25270602" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25270603" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25340100" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25340200" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25340300" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25340400" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25340500" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25341800" Description="GeometryTransformation">gct_u_or_t_shape</ExportTag>
<ExportTag Name="25141700" Description="GeometryTransformation">gct_arrow_with_tail</ExportTag>
<ExportTag Name="25152000" Description="GeometryTransformation">gct_arrow_with_tail</ExportTag>
<ExportTag Name="25270502" Description="GeometryTransformation">gct_triple_arrow</ExportTag>
<ExportTag Name="25341000" Description="GeometryTransformation">gct_triple_arrow</ExportTag>
<ExportTag Name="25140800" Description="GeometryTransformation">gct_parallel_lines_mid_line</ExportTag>
<ExportTag Name="25271201" Description="GeometryTransformation">gct_parallel_lines_mid_line</ExportTag>
<ExportTag Name="25271202" Description="GeometryTransformation">gct_parallel_lines_mid_line</ExportTag>
<ExportTag Name="25271203" Description="GeometryTransformation">gct_parallel_lines_mid_line</ExportTag>
<ExportTag Name="25271204" Description="GeometryTransformation">gct_parallel_lines_mid_line</ExportTag>
<ExportTag Name="25271500" Description="GeometryTransformation">gct_parallel_lines</ExportTag>
<ExportTag Name="25271600" Description="GeometryTransformation">gct_parallel_lines</ExportTag>
<ExportTag Name="25271100" Description="GeometryTransformation">gct_parallel_lines_with_ticks</ExportTag>
<ExportTag Name="25271300" Description="GeometryTransformation">gct_parallel_lines_with_ticks</ExportTag>
<ExportTag Name="25271400" Description="GeometryTransformation">gct_parallel_lines_with_ticks</ExportTag>
<ExportTag Name="25152100" Description="GeometryTransformation">gct_horns</ExportTag>
<ExportTag Name="25340800" Description="GeometryTransformation">gct_hook</ExportTag>
<ExportTag Name="25342000" Description="GeometryTransformation">gct_hook</ExportTag>
<ExportTag Name="25342400" Description="GeometryTransformation">gct_hook</ExportTag>
<ExportTag Name="25342500" Description="GeometryTransformation">gct_hook</ExportTag>
<ExportTag Name="25290500" Description="GeometryTransformation">gct_t</ExportTag>
<ExportTag Name="25341500" Description="GeometryTransformation">gct_circle</ExportTag>
<ExportTag Name="25341700" Description="GeometryTransformation">gct_circle</ExportTag>
<ExportTag Name="25151205" Description="GeometryTransformation">gct_circle</ExportTag>
<ExportTag Name="25342100" Description="GeometryTransformation">gct_circle</ExportTag>
<ExportTag Name="25141400" Description="GeometryTransformation">gct_freehand_line</ExportTag>
<ExportTag Name="25141500" Description="GeometryTransformation">gct_freehand_line</ExportTag>
<ExportTag Name="25270504" Description="GeometryTransformation">gct_freehand_reverse_arrow</ExportTag>
<ExportTag Name="25342300" Description="GeometryTransformation">gct_freehand_arrow</ExportTag>
<ExportTag Name="25341900" Description="GeometryTransformation">gct_freehand_u</ExportTag>
<ExportTag Name="25230100" Description="GeometryTransformation">gct_open_triangle</ExportTag>
<ExportTag Name="25140500" Description="GeometryTransformation">gct_two_line</ExportTag>
<ExportTag Name="25152200" Description="GeometryTransformation">gct_two_line</ExportTag>
<ExportTag Name="25342201" Description="GeometryTransformation">gct_two_line_3_or_4_pt</ExportTag>
<ExportTag Name="25342202" Description="GeometryTransformation">gct_two_line_3_or_4_pt</ExportTag>
<ExportTag Name="25342203" Description="GeometryTransformation">gct_two_line_3_or_4_pt</ExportTag>
<ExportTag Name="25240102" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25240202" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25240302" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25240402" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25240501" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25240804" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25241002" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25241102" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25241202" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25241302" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25241402" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25241502" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25241602" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25241702" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25241802" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25241902" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25242302" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25242305" Description="GeometryTransformation">gct_rectangular</ExportTag>
<ExportTag Name="25240802" Description="GeometryTransformation">gct_rectangular_1_pt</ExportTag>
<ExportTag Name="25240103" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25240203" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25240303" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25240403" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25240502" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25240803" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25241003" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25241503" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25241603" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25241703" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25241803" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25241903" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25242303" Description="GeometryTransformation">gct_circular</ExportTag>
<ExportTag Name="25242306" Description="GeometryTransformation">gct_circular</ExportTag>
</ExportTags>
<!-- Attribute value overrides -->
<AmplifierValues>
<AmplifierValue ID="REINFORCED" Label="+">0</AmplifierValue>
<AmplifierValue ID="REDUCED" Label="-">1</AmplifierValue>
<AmplifierValue ID="REINFORCED_REDUCED" Label="+/-">2</AmplifierValue>
</AmplifierValues>
<!-- Kep mappings - mapping some standard pattern JMSML keys to non-standard pattern keys, for legacy mapping purposes -->
<KeyMaps>
<KeyMap ID="G-G-GPRD--_DLRP_REFERENCE_POINT" Standard="2525Bc2" Key="G-G-GPRD--" Description="A rare occasion where the SIDC is the same in 2525Bc2 and 2525C but the symbol is different">G-G-GPRD--_B</KeyMap>
<KeyMap ID="G-G-GLC---_LINE_OF_CONTACT" Key="G-G-GLC---" Description="No official DISA SVG file exists as this is no longer a single symbol. It is Land doctrine to use a friendly and enemy forward line of troops symbol and call their use together a line of contact.">25140200</KeyMap>
<KeyMap ID="G-G-GAG---_GENERAL_AREA" Key="G-G-GAG---" Description="No official DISA SVG file (retired). Mapping to another 2525D symbol for now, rather than editing the area line label stylx">25151200</KeyMap>
<KeyMap ID="W---IDID--_ICE_DRIFT_DIRECTION" Key="W---IDID--" Description="This is a point symbol in 2525D. Mapping to that symbol for now, rather than editing the area line label stylx">46110304</KeyMap>
</KeyMaps>
<!-- Database schemas -->
<SchemaTypes>
<!-- Used in All Schemas -->
<SchemaType ID="A_SCHEMA">
<Fields>
<Field ID="ADDITIONAL_INFO_FIELD" Name="additionalinformation" Type="String" Length="20" Alias="Additional Information" IsNullable="true" Order="70"/>
<Field ID="DATE_TIME_VALID_FIELD" Name="datetimevalid" Type="Date" Length="8" Alias="Date Time Valid" IsNullable="true" Order="300"/>
<Field ID="DATE_TIME_EXPIRED_FIELD" Name="datetimeexpired" Type="Date" Length="8" Alias="Date Time Expired" IsNullable="true" Order="301"/>
<Field ID="CREATED_BY_FIELD" Name="createdby" Type="String" Length="50" Alias="Created By" IsNullable="true" Order="302"/>
<Field ID="CREATED_TIME_FIELD" Name="createdtime" Type="Date" Length="8" Alias="Created Time" IsNullable="true" Order="303"/>
<Field ID="EDITED_BY_FIELD" Name="editedby" Type="String" Length="50" Alias="Edited By" IsNullable="true" Order="304"/>
<Field ID="EDITED_TIME_FIELD" Name="editedtime" Type="Date" Length="8" Alias="Edited Time" IsNullable="true" Order="305"/>
</Fields>
</SchemaType>
<!-- Point Schema Type -->
<SchemaType ID="POINT_SCHEMA">
<Fields>
<Field ID="SIZE_FIELD" Name="size" Type="SmallInteger" Length="2" Alias="Symbol Size" IsNullable="true" Order="260"/>
<Field ID="ROTATION_FIELD" Name="rotation" Type="SmallInteger" Length="2" Alias="Symbol Rotation" IsNullable="true" Order="261"/>
</Fields>
</SchemaType>
<!-- Moving Schema Type -->
<SchemaType ID="MOVING_SCHEMA">
<Fields>
<Field ID="DIRECTION_FIELD" Name="direction" Type="SmallInteger" Length="2" Alias="Direction" IsNullable="true" Order="220" Domain="Direction"/>
<Field ID="SPEED_FIELD" Name="speed" Type="SmallInteger" Length="2" Alias="Speed" IsNullable="true" Order="221"/>
<Field ID="SPEED_UNIT_FIELD" Name="speedunit" Type="String" Length="3" Alias="Speed Unit" IsNullable="true" Order="222" Domain="SpeedUnits"/>
</Fields>
</SchemaType>
<!-- Location Schema Type -->
<SchemaType ID="LOCATION_SCHEMA">
<Fields>
<Field ID="X_FIELD" Name="x" Type="Double" Length="8" Alias="X Location" IsNullable="true" Order="240"/>
<Field ID="Y_FIELD" Name="y" Type="Double" Length="8" Alias="Y Location" IsNullable="true" Order="241"/>
<Field ID="ALT_DEPTH_FIELD" Name="z" Type="Double" Length="8" Alias="Altitude/Depth" IsNullable="true" Order="242"/>
</Fields>
</SchemaType>
<!-- Control Measure Schema Type -->
<SchemaType ID="CONTROL_MEASURE_SCHEMA">
<Fields>
<Field ID="DISTANCE_FIELD" Name="distance" Type="Double" Length="8" Alias="Distance (meters)" IsNullable="true" Order="124"/>
<Field ID="AZIMUTH_FIELD" Name="azimuth" Type="SmallInteger" Length="2" Alias="Azimuth (degrees)" IsNullable="true" Order="125"/>
<Field ID="TARGET_DESIGNATOR_FIELD" Name="targetdesignator" Type="String" Length="6" Alias="Target Designator" IsNullable="true" Order="126"/>
<Field ID="STATUS_FIELD" Name="status" Type="SmallInteger" Length="2" Alias="Status" IsNullable="true" Domain="Statuses" Order="38"/>
</Fields>
</SchemaType>
<!-- Tactical Graphic Schema Type - Framed Objects -->
<SchemaType ID="TACTICAL_GRAPHIC_SCHEMA">
<Fields>
<Field ID="IDENTITY_FIELD" Name="identity" Type="Integer" Length="4" Alias="Standard Identity" IsNullable="true" Domain="Identity" Order="5"/>
<Field ID="UNIQUE_DESIG_FIELD" Name="uniquedesignation" Type="String" Length="30" Alias="Unique Designation" IsNullable="true" Order="60"/>
</Fields>
</SchemaType>
<!-- Affiliated Schema Type -->
<SchemaType ID="AFFILIATED_SCHEMA">
<Fields>
<Field ID="CONTEXT_FIELD" Name="context" Type="SmallInteger" Length="2" Alias="Context" IsNullable="true" Domain="Context" Order="10"/>
<Field ID="STAFF_COMMENT_FIELD" Name="staffcomment" Type="String" Length="20" Alias="Staff Comments" IsNullable="true" Order="80"/>
</Fields>
</SchemaType>
<!-- Evaluation Rating Schema Type -->
<SchemaType ID="EVALUATION_RATING_SCHEMA">
<Fields>
<Field ID="CREDIBILITY_FIELD" Name="credibility" Type="SmallInteger" Length="2" Alias="Credibility" IsNullable="true" Domain="Credibility" Order="130"/>
<Field ID="RELIABILITY_FIELD" Name="reliability" Type="String" Length="2" Alias="Reliability" IsNullable="true" Domain="Reliability" Order="131"/>
</Fields>
</SchemaType>
<!-- Sea Surface Track Schema Type -->
<SchemaType ID="SEA_SURFACE_TRACK_SCHEMA">
<Fields>
<Field ID="SPECIAL_DESIG_FIELD" Name="specialdesignator" Type="String" Length="3" Alias="Special Track Designator" IsNullable="true" Order="200"/>
<Field ID="GUARDED_UNIT_FIELD" Name="guardedunit" Type="String" Length="2" Alias="Guarded Unit" IsNullable="true" Order="201"/>
</Fields>
</SchemaType>
<!-- Track (Non-SIGINT) Schema Type -->
<SchemaType ID="TRACK_SCHEMA">
<Fields>
<Field ID="HQTFFD_FIELD" Name="indicator" Type="Integer" Length="4" Alias=""HQ, Task Force, Feint/Dummy"" IsNullable="true" Domain="HQTFFD" Order="40"/>
</Fields>
</SchemaType>
<!-- IFF/SIF Schema Type -->
<SchemaType ID="IFF_SIF_SCHEMA">
<Fields>
<Field ID="IFFSIF_FIELD" Name="idmode" Type="String" Length="15" Alias="IFF/SIF/AIS" IsNullable="true" Order="150"/>
</Fields>
</SchemaType>
<!-- Echelon Schema Type -->
<SchemaType ID="ECHELON_SCHEMA">
<Fields>
<Field ID="ECHELON_FIELD" Name="echelon" Type="Integer" Length="4" Alias="Echelon" IsNullable="true" Domain="Echelons" Order="37"/>
</Fields>
</SchemaType>
<!-- Operational Status Schema Type -->
<SchemaType ID="OPERATIONAL_STATUS_SCHEMA">
<Fields>
<Field ID="OP_COND_FIELD" Name="operationalcondition" Type="Integer" Length="4" Alias="Operational Condition" IsNullable="true" Order="50" Domain="Operational_Condition_Amplifier"/>
</Fields>
</SchemaType>
<!-- Additional Information 2 Schema Type -->
<SchemaType ID="ADDITIONAL_INFO_2_SCHEMA">
<Fields>
<Field ID="ADDITIONAL_INFO_2_FIELD" Name="additionalinformation2" Type="String" Length="20" Alias="Additional Information 2" IsNullable="true" Order="71"/>
</Fields>
</SchemaType>
<!-- Unique Designation 2 Schema Type -->
<SchemaType ID="UNIQUE_DESIG_2_SCHEMA">
<Fields>
<Field ID="UNIQUE_DESIG_2_FIELD" Name="uniquedesignation2" Type="String" Length="30" Alias="Unique Designation 2" IsNullable="true" Order="61"/>
</Fields>
</SchemaType>
<!-- Quantifiable Schema Type -->
<SchemaType ID="QUANTITY_SCHEMA">
<Fields>
<Field ID="QUANTITY_FIELD" Name="quantity" Type="SmallInteger" Length="2" Alias="Quantity" IsNullable="true" Order="190"/>
</Fields>
</SchemaType>
<!-- Additional Z Schema Type -->
<SchemaType ID="Z_2_SCHEMA">
<Fields>
<Field ID="ALT_DEPTH_2_FIELD" Name="z2" Type="Double" Length="8" Alias="Altitude/Depth 2" IsNullable="true" Order="255"/>
</Fields>
</SchemaType>
<!-- Hostile (ENY) Schema Type -->
<SchemaType ID="HOSTILE_ENY_SCHEMA">
<Fields>
<Field ID="HOSTILE_FIELD" Name="hostile" Type="String" Length="3" Alias="Hostile (ENY)" IsNullable="true" Order="160"/>
</Fields>
</SchemaType>
<!-- Special C2 HQ Schema Type -->
<SchemaType ID="SPECIAL_C2_SCHEMA">
<Fields>
<Field ID="C2_HQ_FIELD" Name="specialheadquarters" Type="String" Length="10" Alias="Special C2 Headquarters" IsNullable="true" Order="180"/>
</Fields>
</SchemaType>
<!-- Signature Equipment Schema Type -->
<SchemaType ID="SIGNATURE_EQUIP_SCHEMA">
<Fields>
<Field ID="SIG_EQUIP_FIELD" Name="signatureequipment" Type="String" Length="1" Alias="Signature Equipment (hostile)" IsNullable="true" Order="170"/>
</Fields>
</SchemaType>
<!-- Country Schema Type -->
<SchemaType ID="COUNTRY_SCHEMA">
<Fields>
<Field ID="COUNTRY_FIELD" Name="countrycode" Type="String" Length="3" Alias="Country Code" IsNullable="true" Domain="CountryCodes" Order="280"/>
</Fields>
</SchemaType>
<!-- Equipment Schema Type-->
<SchemaType ID="EQUIPMENT_TYPE_SCHEMA">
<Fields>
<Field ID="TYPE_FIELD" Name="type" Type="String" Length="24" Alias="Type of Equipment" IsNullable="true" Order="180"/>
</Fields>
</SchemaType>
<!-- Sea Schema Type -->
<SchemaType ID="SEA_SCHEMA">
<Fields>
<Field ID="ARRAY_FIELD" Name="array" Type="Integer" Length="4" Alias="Auxiliary Equipment Indicator" IsNullable="true" Order="35" Domain="Arrays"/>
</Fields>
</SchemaType>
<!-- Unit Schema Type - Land Units and Activities -->
<SchemaType ID="UNIT_SCHEMA">
<Fields>
<Field ID="REINFORCED_FIELD" Name="reinforced" Type="SmallInteger" Length="2" Alias="Reinforced or Reduced" IsNullable="true" Domain="Reinforced" Order="100"/>
</Fields>
</SchemaType>
<!-- Unit Status Schema Type -->
<SchemaType ID="UNIT_STATUS_SCHEMA">
<Fields>
<Field ID="UNIT_STATUS_FIELD" Name="status" Type="SmallInteger" Length="2" Alias="Status" IsNullable="true" Domain="Statuses" Order="38"/>
</Fields>
</SchemaType>
<!-- Land Unit Track Schema Type -->
<SchemaType ID="LAND_UNIT_TRACK_SCHEMA">
<Fields>
<Field ID="HIGHER_FORMATION_FIELD" Name="higherformation" Type="String" Length="21" Alias="Higher Formation" IsNullable="true" Order="90"/>
</Fields>
</SchemaType>
<!-- Combat Effectivness Schema Type -->
<SchemaType ID="COMBAT_EFFECTIVENESS_SCHEMA">
<Fields>
<Field ID="COMBAT_EFF_FIELD" Name="combateffectiveness" Type="String" Length="5" Alias="Combat Effectiveness" IsNullable="true" Domain="CombatEffectiveness" Order="120"/>
</Fields>
</SchemaType>
<!-- Optionally Labeled Schema Type -->
<SchemaType ID="OPTIONALLY_LABELED_SCHEMA">
<Fields>
<Field ID="OPT_LABEL_FIELD" Name="optionallabel" Type="String" Length="30" Alias="Optional Label" IsNullable="true" Order="400"/>
</Fields>
</SchemaType>
<!-- Civilian Schema Type -->
<SchemaType ID="CIVILIAN_SCHEMA">
<Fields>
<Field ID="CIVILIAN_FIELD" Name="civilian" Type="SmallInteger" Length="2" Alias="Civilian" IsNullable="true" Domain="TrueFalse" Default="0" Order="500"/>
</Fields>
</SchemaType>
</SchemaTypes>
<SchemaContainer ID="SCHEMA_CONTAINER" Label="MilitaryOverlay" LabelAlias="Military Overlay">
<Metadata>
<Label>Military Overlays for ArcGIS</Label>
<Thumbnail>COA.png</Thumbnail>
<Tags>ArcGIS for the Military;Military Overlay;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions</Tags>
<Summary>Military Overlay is a geodatabase containing a collection of military feature templates for Planning Operations and Intelligence use. It contains an information model for creating Military Overlay Features based on MIL-STD-2525D.</Summary>
<Description>Military Overlay contains an information model for creating Military Overlay Features based on MIL-STD-2525D.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<Extent>
<East>-54742489</East>
<West>-58939858</West>
<North>40.253719</North>
<South>38.026544</South>
</Extent>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<!-- Extra Domains -->
<Domains>
<CodedDomain Label="TrueFalse">
<NameValue Name="False" Value="0"/>
<NameValue Name="True" Value="1"/>
</CodedDomain>
<CodedDomain Label="SIGINT_Entities">
<NameValue Name="Unspecified" Value="0"/>
<NameValue Name="Signal Intercept : Communications" Value="110100"/>
<NameValue Name="Signal Intercept : Jammer" Value="110200"/>
<NameValue Name="Signal Intercept : Radar" Value="110300"/>
</CodedDomain>
<CodedDomain Label="SIGINT_Modifier_Ones">
<NameValue Name="Unspecified" Value="0"/>
<NameValue Name="Radar : Anti-Aircraft Fire Control" Value="1"/>
<NameValue Name="Radar : Airborne Search and Bombing" Value="2"/>
<NameValue Name="Radar : Airborne Intercept" Value="3"/>
<NameValue Name="Radar : Altimeter" Value="4"/>
<NameValue Name="Radar : Airborne Reconnaissance and Mapping" Value="5"/>
<NameValue Name="Radar : Air Traffic Control" Value="6"/>
<NameValue Name="Radar : Beacon Transponder (not IFF)" Value="7"/>
<NameValue Name="Radar : Battlefield Surveillance" Value="8"/>
<NameValue Name="Radar : Controlled Approach" Value="9"/>
<NameValue Name="Radar : Controlled Intercept" Value="10"/>
<NameValue Name="Communications : Cellular/Mobile" Value="11"/>
<NameValue Name="Radar : Coastal Surveillance" Value="12"/>
<NameValue Name="Jammer : Decoy/Mimic" Value="13"/>
<NameValue Name="Radar : Data Transmission" Value="14"/>
<NameValue Name="Radar : Earth Surveillance" Value="15"/>
<NameValue Name="Radar : Early Warning" Value="16"/>
<NameValue Name="Radar : Fire Control" Value="17"/>
<NameValue Name="Radar : Ground Mapping" Value="18"/>
<NameValue Name="Radar : Height Finding" Value="19"/>
<NameValue Name="Radar : Harbor Surveillance" Value="20"/>
<NameValue Name="Radar : Identification Friend or Foe (Interrogator)" Value="21"/>
<NameValue Name="Radar : Instrument Landing System" Value="22"/>
<NameValue Name="Radar : Ionospheric Sounding" Value="23"/>
<NameValue Name="Radar : Identification Friend or Foe (Transponder)" Value="24"/>
<NameValue Name="Jammer : Barrage Jammer" Value="25"/>
<NameValue Name="Jammer : Click Jammer" Value="26"/>
<NameValue Name="Jammer : Deceptive Jammer" Value="27"/>
<NameValue Name="Jammer : Frequency Swept Jammer" Value="28"/>
<NameValue Name="Jammer : Jammer (General)" Value="29"/>
<NameValue Name="Jammer : Noise Jammer" Value="30"/>
<NameValue Name="Jammer : Pulsed Jammer" Value="31"/>
<NameValue Name="Jammer : Repeater Jammer" Value="32"/>
<NameValue Name="Jammer : Spot Noise Jammer" Value="33"/>
<NameValue Name="Jammer : Transponder Jammer" Value="34"/>
<NameValue Name="Radar : Missile Acquisition" Value="35"/>
<NameValue Name="Jammer : Missile Control" Value="36"/>
<NameValue Name="Radar : Missile Downlink" Value="37"/>
<NameValue Name="Radar : Meteorological" Value="38"/>
<NameValue Name="Jammer : Multi-Function" Value="39"/>
<NameValue Name="Radar : Missile Guidance" Value="40"/>
<NameValue Name="Radar : Missile Homing" Value="41"/>
<NameValue Name="Jammer : Missile Tracking" Value="42"/>
<NameValue Name="Jammer : Navigational/General" Value="43"/>
<NameValue Name="Jammer : Navigational/Distance Measuring Equipment" Value="44"/>
<NameValue Name="Jammer : Navigation/Terrain Following" Value="45"/>
<NameValue Name="Jammer : Navigational/Weather Avoidance" Value="46"/>
<NameValue Name="Communications : Omni-Line of Sight (LOS)" Value="47"/>
<NameValue Name="Radar : Proximity Use" Value="48"/>
<NameValue Name="Communications : Point-to-Point Line of Sight (LOS)" Value="49"/>
<NameValue Name="Radar : Instrumentation" Value="50"/>
<NameValue Name="Radar : Range Only" Value="51"/>
<NameValue Name="Radar : Sonobuoy" Value="52"/>
<NameValue Name="Communications : Satellite Downlink" Value="53"/>
<NameValue Name="Radar : Space" Value="54"/>
<NameValue Name="Radar : Surface Search" Value="55"/>
<NameValue Name="Radar : Shell Tracking" Value="56"/>
<NameValue Name="Communications : Satellite Uplink" Value="57"/>
<NameValue Name="Jammer : Target Acquisition" Value="58"/>
<NameValue Name="Radar : Target Illumination" Value="59"/>
<NameValue Name="Communications : Tropospheric Scatter" Value="60"/>
<NameValue Name="Radar : Target Tracking" Value="61"/>
<NameValue Name="Radar : Unknown" Value="62"/>
<NameValue Name="Radar : Video Remoting" Value="63"/>
<NameValue Name="Radar : Experimental" Value="64"/>
</CodedDomain>
<RangeDomain Label="Direction" Type="SmallInteger" MinValue="0" MaxValue="360"/>
</Domains>
<!-- Schemas -->
<Schemas ID="SCHEMAS" Label="MilitaryOverlay" LabelAlias="Military Overlay" SpatialReference="4326">
<Metadata>
<Label>Military Overlay for ArcGIS</Label>
<Thumbnail>COA.png</Thumbnail>
<Tags>ArcGIS for the Military;Military Feature;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions</Tags>
<Summary>Military Overlay is a layer template for creating Military Overlays for Planning Operations and Intelligence use. It contains an information model for creating Military Overlays based on MIL-STD-2525D.</Summary>
<Description>Military Overlays is an information model for creating Military Overlays based on MIL-STD-2525D. </Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<Extent>
<East>-54742489</East>
<West>-58939858</West>
<North>40.253719</North>
<South>38.026544</South>
</Extent>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<!-- Air Schema -->
<Schema ID="AIR_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA TACTICAL_GRAPHIC_SCHEMA IFF_SIF_SCHEMA EVALUATION_RATING_SCHEMA EQUIPMENT_TYPE_SCHEMA AFFILIATED_SCHEMA MOVING_SCHEMA OPERATIONAL_STATUS_SCHEMA COUNTRY_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_AIR" Label="Air" LabelAlias="Air" GeometryType="Point" DomainName="Air">
<Metadata>
<Label>Air</Label>
<Thumbnail>Air.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Air</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with air data (MIL-STD-2525D Symbol Set 01).</Summary>
<Description>Military Features that support air equipment and weapons.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<Extent>
<East>-54.742489</East>
<West>-58.939858</West>
<North>40.253719</North>
<South>38.026544</South>
</Extent>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="AIR_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="Air" Order="15"/>
<Field ID="AIR_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Air Entity" IsNullable="true" Domain="Air_Entities" Order="20"/>
<Field ID="AIR_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Domain="Air_Modifier_Ones" Order="25"/>
<Field ID="AIR_MOD2_FIELD" Name="modifier2" Type="Integer" Length="4" Alias="Modifier 2" IsNullable="true" Domain="Air_Modifier_Twos" Order="30"/>
</Fields>
</Schema>
<!-- Air Missile Schema -->
<Schema ID="AIR_MISSILE_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA TACTICAL_GRAPHIC_SCHEMA IFF_SIF_SCHEMA EVALUATION_RATING_SCHEMA EQUIPMENT_TYPE_SCHEMA AFFILIATED_SCHEMA MOVING_SCHEMA OPERATIONAL_STATUS_SCHEMA COUNTRY_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_AIR_MISSILE" Label="AirMissile" LabelAlias="Air Missile" GeometryType="Point" DomainName="Air_Missile">
<Metadata>
<Label>Air Missile</Label>
<Thumbnail>Air.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Air;Air Missile;Missile</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with air missile data (MIL-STD-2525D Symbol Set 02).</Summary>
<Description>Military Features that support air missiles.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<Extent>
<East>-54.742489</East>
<West>-58.939858</West>
<North>40.253719</North>
<South>38.026544</South>
</Extent>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="AIR_MISSILE_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="Air_Missile" Order="15"/>
<Field ID="AIR_MISSILE_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Air Missile Entity" IsNullable="true" Domain="Air_Missile_Entities" Order="20"/>
<Field ID="AIR_MISSILE_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Domain="Air_Missile_Modifier_Ones" Order="25"/>
<Field ID="AIR_MISSILE_MOD2_FIELD" Name="modifier2" Type="Integer" Length="4" Alias="Modifier 2" IsNullable="true" Domain="Air_Missile_Modifier_Twos" Order="30"/>
</Fields>
</Schema>
<!-- Space Schema -->
<Schema ID="SPACE_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA TACTICAL_GRAPHIC_SCHEMA EQUIPMENT_TYPE_SCHEMA AFFILIATED_SCHEMA OPERATIONAL_STATUS_SCHEMA COUNTRY_SCHEMA MOVING_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_SPACE" Label="Space" LabelAlias="Space Equipment and Platform" GeometryType="Point" DomainName="Space">
<Metadata>
<Label>Space</Label>
<Thumbnail>Space.jpg</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Space</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with space data (MIL-STD-2525D Symbol Set 05).</Summary>
<Description>Military Features that support space features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="SPACE_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="false" Domain="Space" Order="15"/>
<Field ID="SPACE_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Space Entity" IsNullable="true" Domain="Space_Entities" Order="20"/>
<Field ID="SPACE_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Domain="Space_Modifier_Ones" Order="25"/>
<Field ID="SPACE_MOD2_FIELD" Name="modifier2" Type="Integer" Length="4" Alias="Modifier 2" IsNullable="true" Domain="Space_Modifier_Twos" Order="30"/>
</Fields>
</Schema>
<!-- Space Missile -->
<Schema ID="SPACE_MISSILE_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA TACTICAL_GRAPHIC_SCHEMA EQUIPMENT_TYPE_SCHEMA AFFILIATED_SCHEMA OPERATIONAL_STATUS_SCHEMA COUNTRY_SCHEMA MOVING_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_SPACE_MISSILE" Label="SpaceMissile" LabelAlias="Space Missile" GeometryType="Point" DomainName="Space_Missile">
<Metadata>
<Label>Space Missile</Label>
<Thumbnail>Space.jpg</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Space;Space Missile;Missile</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with space missile data (MIL-STD-2525D Symbol Set 06).</Summary>
<Description>Military Features that support space missile features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="SPACE_MISSILE_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="false" Domain="Space_Missile" Order="15"/>
<Field ID="SPACE_MISSILE_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Space Missile Entity" IsNullable="true" Domain="Space_Missile_Entities" Order="20"/>
<Field ID="SPACE_MISSILE_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Domain="Space_Missile_Modifier_Ones" Order="25"/>
<Field ID="SPACE_MISSILE_MOD2_FIELD" Name="modifier2" Type="Integer" Length="4" Alias="Modifier 2" IsNullable="true" Domain="Space_Missile_Modifier_Twos" Order="30"/>
</Fields>
</Schema>
<!-- (Land) Units Schema -->
<Schema ID="LAND_UNIT_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA UNIT_SCHEMA UNIT_STATUS_SCHEMA TACTICAL_GRAPHIC_SCHEMA IFF_SIF_SCHEMA EVALUATION_RATING_SCHEMA AFFILIATED_SCHEMA SPECIAL_C2_SCHEMA ECHELON_SCHEMA COMBAT_EFFECTIVENESS_SCHEMA MOVING_SCHEMA COUNTRY_SCHEMA LAND_UNIT_TRACK_SCHEMA" SymbolSetIDs="SS_LAND_UNIT" Label="Units" LabelAlias="Units" GeometryType="Point" DomainName="Units">
<Metadata>
<Label>Land Units</Label>
<Thumbnail>Units.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Land Units</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with land unit data (MIL-STD-2525D Symbol Set 10).</Summary>
<Description>Military Features that support land unit features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="UNIT_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="Units" Default="10" Order="15"/>
<Field ID="UNIT_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Unit Entity" IsNullable="true" Domain="Land_Unit_Entities" Order="20"/>
<Field ID="UNIT_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Domain="Land_Unit_Modifier_Ones" Order="25"/>
<Field ID="UNIT_MOD2_FIELD" Name="modifier2" Type="Integer" Length="4" Alias="Modifier 2" IsNullable="true" Domain="Land_Unit_Modifier_Twos" Order="30"/>
<Field ID="SPECIAL_SUBTYPE_FIELD" Name="specialentitysubtype" Type="SmallInteger" Length="2" Alias="Special Entity Subtype" IsNullable="true" Order="35" Domain="Land_Unit_Special_Entity_Subtype"/>
</Fields>
</Schema>
<!-- (Land) Civilian Schema -->
<Schema ID="LAND_CIVILIAN_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA UNIT_SCHEMA UNIT_STATUS_SCHEMA CIVILIAN_SCHEMA TACTICAL_GRAPHIC_SCHEMA IFF_SIF_SCHEMA EVALUATION_RATING_SCHEMA AFFILIATED_SCHEMA SPECIAL_C2_SCHEMA ECHELON_SCHEMA COMBAT_EFFECTIVENESS_SCHEMA MOVING_SCHEMA COUNTRY_SCHEMA LAND_UNIT_TRACK_SCHEMA" SymbolSetIDs="SS_LAND_CIVILIAN" Label="Civilian" LabelAlias="Civilian Individual/Organization" GeometryType="Point" DomainName="Civilian">
<Metadata>
<Label>Civilian</Label>
<Thumbnail>Units.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Land Civilian Units</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with land civilian unit data (MIL-STD-2525D Symbol Set 11).</Summary>
<Description>Military Features that support land civilian unit features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="CIVI_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="Civilian" Default="11" Order="15"/>
<Field ID="CIVI_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Civilian Entity" IsNullable="true" Domain="Land_Unit_Civilian_Entities" Order="20"/>
<Field ID="CIVI_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Domain="Land_Unit_Civilian_Modifier_Ones" Order="25"/>
<Field ID="CIVI_MOD2_FIELD" Name="modifier2" Type="Integer" Length="4" Alias="Modifier 2" IsNullable="true" Domain="Land_Unit_Civilian_Modifier_Twos" Order="30"/>
</Fields>
</Schema>
<!-- Land (Equipment) Schema -->
<Schema ID="LAND_EQUIPMENT_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA TACTICAL_GRAPHIC_SCHEMA IFF_SIF_SCHEMA SIGNATURE_EQUIP_SCHEMA EVALUATION_RATING_SCHEMA EQUIPMENT_TYPE_SCHEMA AFFILIATED_SCHEMA QUANTITY_SCHEMA HOSTILE_ENY_SCHEMA OPERATIONAL_STATUS_SCHEMA MOVING_SCHEMA COUNTRY_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_LAND_EQUIPMENT" Label="LandEquipment" LabelAlias="Land Equipment" GeometryType="Point" DomainName="Land">
<Metadata>
<Label>Land Equipment</Label>
<Thumbnail>Land.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Land Equipment</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with land equipment data (MIL-STD-2525D Symbol Set 15).</Summary>
<Description>Military Features that support land equipment features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="EQUIP_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="false" Domain="Land" Order="15" Default="15"/>
<Field ID="EQUIP_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Equipment Entity" IsNullable="true" Order="20" Domain="Land_Equipment_Entities"/>
<Field ID="EQUIP_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Order="25" Domain="Land_Equipment_Modifier_Ones"/>
<Field ID="MOBILITY_FIELD" Name="mobility" Type="Integer" Length="4" Alias="Mobility Indicator" IsNullable="true" Order="30" Domain="Mobilities"/>
</Fields>
</Schema>
<!-- (Land) Installations Schema -->
<Schema ID="LAND_INSTALLATION_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA TACTICAL_GRAPHIC_SCHEMA EVALUATION_RATING_SCHEMA AFFILIATED_SCHEMA IFF_SIF_SCHEMA OPERATIONAL_STATUS_SCHEMA COMBAT_EFFECTIVENESS_SCHEMA MOVING_SCHEMA COUNTRY_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_LAND_INSTALLATION" Label="Installations" LabelAlias="Installations and Infrastructures" GeometryType="Point" DomainName="Installations">
<Metadata>
<Label>Installations</Label>
<Thumbnail>Installations.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Installations</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with installation data (MIL-STD-2525D Symbol Set 20).</Summary>
<Description>Military Features that support building and installation features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="INSTALLATION_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="Installations" Order="15" Default="20"/>
<Field ID="INSTALLATION_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Installation Entity" IsNullable="true" Order="20" Domain="Land_Installation_Entities"/>
<Field ID="INSTALLATION_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Order="25" Domain="Land_Installation_Modifier_Ones"/>
<Field ID="INSTALLATION_MOD2_FIELD" Name="modifier2" Type="Integer" Length="4" Alias="Modifier 2" IsNullable="true" Order="30" Domain="Land_Installation_Modifier_Twos"/>
</Fields>
</Schema>
<!-- ControlMeasuresPoints Schema-->
<Schema ID="CM_POINTS_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TACTICAL_GRAPHIC_SCHEMA HOSTILE_ENY_SCHEMA UNIQUE_DESIG_2_SCHEMA ADDITIONAL_INFO_2_SCHEMA EQUIPMENT_TYPE_SCHEMA CONTROL_MEASURE_SCHEMA QUANTITY_SCHEMA MOVING_SCHEMA OPTIONALLY_LABELED_SCHEMA COUNTRY_SCHEMA" SymbolSetIDs="SS_CONTROL_MEASURE" Label="ControlMeasuresPoints" LabelAlias="ControlMeasuresPoints" GeometryType="Point" DomainName="ControlMeasuresPoints">
<Metadata>
<Label>Control Measures Points</Label>
<Thumbnail>ControlMeasureP.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Control Measures</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with control measure point data (MIL-STD-2525D Symbol Set 25).</Summary>
<Description>Military Features that support military control measure points.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="CM_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="ControlMeasuresPoints" Order="15" Default="25"/>
<Field ID="CM_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Point Entity" IsNullable="true" Order="20" Domain="Control_Measure_Point_Entities"/>
</Fields>
</Schema>
<!-- ControlMeasuresLines Schema-->
<Schema ID="CM_LINES_SCHEMA" SchemaTypeIDs="A_SCHEMA LOCATION_SCHEMA TACTICAL_GRAPHIC_SCHEMA HOSTILE_ENY_SCHEMA Z_2_SCHEMA UNIQUE_DESIG_2_SCHEMA ECHELON_SCHEMA CONTROL_MEASURE_SCHEMA EQUIPMENT_TYPE_SCHEMA COUNTRY_SCHEMA OPTIONALLY_LABELED_SCHEMA" SymbolSetIDs="SS_CONTROL_MEASURE" Label="ControlMeasuresLines" LabelAlias="ControlMeasuresLines" GeometryType="Line" DomainName="ControlMeasuresLines">
<Metadata>
<Label>Control Measures Lines</Label>
<Thumbnail>ControlMeasureL.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Control Measures</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with control measure line data (MIL-STD-2525D Symbol Set 25).</Summary>
<Description>Military Features that support military control measure lines.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="CM_LINES_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="false" Domain="ControlMeasuresLines" Order="15" Default="25"/>
<Field ID="CM_LINES_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Line Entity" IsNullable="true" Order="20" Domain="Control_Measure_Line_Entities"/>
<Field ID="LENGTH_FIELD" Name="length" Type="Double" Length="8" Alias="Length" IsNullable="true" Order="151"/>
<Field ID="WIDTH_FIELD" Name="width" Type="Double" Length="8" Alias="Width" IsNullable="true" Order="152"/>
<Field ID="CONTROL_POINT_FIELD" Name="usecontrolpoints" Type="SmallInteger" Length="2" Alias="Use Control Points" IsNullable="true" Domain="TrueFalse" Default="0" Order="399"/>
</Fields>
</Schema>
<!-- ControlMeasuresAreas Schema-->
<Schema ID="CM_AREAS_SCHEMA" SchemaTypeIDs="A_SCHEMA LOCATION_SCHEMA TACTICAL_GRAPHIC_SCHEMA HOSTILE_ENY_SCHEMA Z_2_SCHEMA ADDITIONAL_INFO_2_SCHEMA EQUIPMENT_TYPE_SCHEMA ECHELON_SCHEMA CONTROL_MEASURE_SCHEMA OPTIONALLY_LABELED_SCHEMA COUNTRY_SCHEMA" SymbolSetIDs="SS_CONTROL_MEASURE" Label="ControlMeasuresAreas" LabelAlias="ControlMeasuresAreas" GeometryType="Area" DomainName="ControlMeasuresAreas">
<Metadata>
<Label>Control Measures Areas</Label>
<Thumbnail>ControlMeasureA.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Control Measures</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with control measure polygon/area data (MIL-STD-2525D Symbol Set 25).</Summary>
<Description>Military Features that support military control measure areas.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="CM_AREAS_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="ControlMeasuresAreas" Order="15" Default="25"/>
<Field ID="CM_AREAS_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Area Entity" IsNullable="true" Order="20" Domain="Control_Measure_Area_Entities"/>
<Field ID="DISTANCE_2_FIELD" Name="distance2" Type="Double" Length="8" Alias="Distance 2 (meters)" IsNullable="true" Order="125"/>
<Field ID="X_2_FIELD" Name="x2" Type="Double" Length="8" Alias="X Location 2" IsNullable="true" Order="250"/>
<Field ID="Y_2_FIELD" Name="y2" Type="Double" Length="8" Alias="Y Location 2" IsNullable="true" Order="251"/>
</Fields>
</Schema>
<!-- Sea Surface Schema -->
<Schema ID="SEA_SURFACE_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA TACTICAL_GRAPHIC_SCHEMA IFF_SIF_SCHEMA EQUIPMENT_TYPE_SCHEMA SEA_SCHEMA AFFILIATED_SCHEMA SPECIAL_C2_SCHEMA OPERATIONAL_STATUS_SCHEMA MOVING_SCHEMA SEA_SURFACE_TRACK_SCHEMA COUNTRY_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_SEA_SURFACE" Label="SeaSurface" LabelAlias="SeaSurface" GeometryType="Point" DomainName="SeaSurface">
<Metadata>
<Label>Sea Surface</Label>
<Thumbnail>SeaSurface.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Sea Surface</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with sea surface data (MIL-STD-2525D Symbol Set 30).</Summary>
<Description>Military Features that support sea surface features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="SEA_SURFACE_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="false" Domain="SeaSurface" Order="15" Default="30"/>
<Field ID="SEA_SURFACE_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Surface Entity" IsNullable="true" Order="20" Domain="Sea_Surface_Entities"/>
<Field ID="SEA_SURFACE_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Order="25" Domain="Sea_Surface_Modifier_Ones"/>
<Field ID="SEA_SURFACE_MOD2_FIELD" Name="modifier2" Type="Integer" Length="4" Alias="Modifier 2" IsNullable="true" Order="30" Domain="Sea_Surface_Modifier_Twos"/>
</Fields>
</Schema>
<!-- Sea SubSurface Schema -->
<Schema ID="SEA_SUBSURFACE_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA TACTICAL_GRAPHIC_SCHEMA IFF_SIF_SCHEMA SIGNATURE_EQUIP_SCHEMA EQUIPMENT_TYPE_SCHEMA SEA_SCHEMA AFFILIATED_SCHEMA HOSTILE_ENY_SCHEMA SPECIAL_C2_SCHEMA OPERATIONAL_STATUS_SCHEMA EVALUATION_RATING_SCHEMA MOVING_SCHEMA COUNTRY_SCHEMA QUANTITY_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_SEA_SUBSURFACE" Label="SeaSubsurface" LabelAlias="Sea Subsurface" GeometryType="Point" DomainName="SeaSubsurface">
<Metadata>
<Label>Sea Subsurface</Label>
<Thumbnail>SeaSubSurface.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Sea Subsurface</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with sea subsurface data (MIL-STD-2525D Symbol Set 35).</Summary>
<Description>Military Features that support sea subsurface features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="SEA_SUBSURFACE_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="SeaSubsurface" Order="15"/>
<Field ID="SEA_SUBSURFACE_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Subsurface Entity" IsNullable="false" Domain="Sea_Subsurface_Entities" Order="20"/>
<Field ID="SEA_SUBSURFACE_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Domain="Sea_Subsurface_Modifier_Ones" Order="25"/>
<Field ID="SEA_SUBSURFACE_MOD2_FIELD" Name="modifier2" Type="Integer" Length="4" Alias="Modifier 2" IsNullable="true" Domain="Sea_Subsurface_Modifier_Twos" Order="30"/>
</Fields>
</Schema>
<!-- Mine Warfare Schema -->
<Schema ID="MINE_WARFARE_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TRACK_SCHEMA TACTICAL_GRAPHIC_SCHEMA IFF_SIF_SCHEMA SIGNATURE_EQUIP_SCHEMA EQUIPMENT_TYPE_SCHEMA SEA_SCHEMA AFFILIATED_SCHEMA HOSTILE_ENY_SCHEMA SPECIAL_C2_SCHEMA OPERATIONAL_STATUS_SCHEMA EVALUATION_RATING_SCHEMA MOVING_SCHEMA COUNTRY_SCHEMA QUANTITY_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_MINE_WARFARE" Label="MineWarfare" LabelAlias="Mine Warfare" GeometryType="Point" DomainName="MineWarfare">
<Metadata>
<Label>Mine Warfare</Label>
<Thumbnail>SeaSubSurface.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Mine Warfare</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with mine warfare data (MIL-STD-2525D Symbol Set 36).</Summary>
<Description>Military Features that support mine warfare features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="MINE_WARFARE_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="MineWarfare" Order="15"/>
<Field ID="MINE_WARFARE_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Subsurface Entity" IsNullable="false" Domain="Sea_Subsurface_Mine_Warfare_Entities" Order="20"/>
</Fields>
</Schema>
<!-- Activities Scehma -->
<Schema ID="ACTIVITIES_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TACTICAL_GRAPHIC_SCHEMA UNIT_SCHEMA UNIT_STATUS_SCHEMA AFFILIATED_SCHEMA IFF_SIF_SCHEMA COMBAT_EFFECTIVENESS_SCHEMA EVALUATION_RATING_SCHEMA TRACK_SCHEMA QUANTITY_SCHEMA ECHELON_SCHEMA COUNTRY_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_ACTIVITY" Label="Activities" LabelAlias="Activities" GeometryType="Point" DomainName="Activities">
<Metadata>
<Label>Activities</Label>
<Thumbnail>Activities.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Activities</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with activities data (MIL-STD-2525D Symbol Set 40).</Summary>
<Description>Activities include stability operations defense support to civil authorities foreign humanitarian assistance incidents natural events and operations. Among the types of activities represented are acts of terrorism sabotage crime natural disasters relief operations and the uncontrolled movement of large numbers of people (MIL-STD-2525D).</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="ACTIVITY_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="false" Domain="Activities" Order="15" Default="40"/>
<Field ID="ACTIVITY_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Activity Entity" IsNullable="false" Order="20" Domain="Activities_Entities"/>
<Field ID="ACTIVITY_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Order="25" Domain="Activities_Modifier_Ones"/>
</Fields>
</Schema>
<!-- SIGINT Schema -->
<Schema ID="SIGINT_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TACTICAL_GRAPHIC_SCHEMA AFFILIATED_SCHEMA COUNTRY_SCHEMA EVALUATION_RATING_SCHEMA EQUIPMENT_TYPE_SCHEMA MOVING_SCHEMA QUANTITY_SCHEMA SIGNATURE_EQUIP_SCHEMA SEA_SURFACE_TRACK_SCHEMA LAND_UNIT_TRACK_SCHEMA CIVILIAN_SCHEMA" SymbolSetIDs="SS_SIGINT_AIR SS_SIGINT_SPACE SS_SIGINT_LAND SS_SIGINT_SURFACE SS_SIGINT_SUBSURFACE" Label="SIGINT" LabelAlias="SIGINT" GeometryType="Point" DomainName="SIGINT">
<Metadata>
<Label>Signals Intelligence (SIGINT)</Label>
<Thumbnail>SigInt.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Signals Intelligence;SIGINT</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with Signals Intelligence (SIGINT) data (MIL-STD-2525D Symbol Sets 50-54).</Summary>
<Description>Military Features that support Signals Intelligence (SIGINT) features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="SIGINT_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="SIGINT" Order="15"/>
<Field ID="SIGINT_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="SIGINT Entity" IsNullable="true" Domain="SIGINT_Entities" Order="20"/>
<Field ID="SIGINT_MOD1_FIELD" Name="modifier1" Type="Integer" Length="4" Alias="Modifier 1" IsNullable="true" Domain="SIGINT_Modifier_Ones" Order="25"/>
<Field ID="SIGINT_MOBILITY_FIELD" Name="sigintmobility" Type="String" Length="1" Alias="SIGINT Mobility" IsNullable="true" Order="30" Domain="SIGINTMobility"/>
<Field ID="PLATFORM_TYPE_FIELD" Name="platformtype" Type="String" Length="5" Alias="Platform Type (ELNOT or CENOT)" IsNullable="true" Order="124"/>
<Field ID="EQUIPMENT_TEARDOWN_FIELD" Name="equipmentteardown" Type="SmallInteger" Length="2" Alias="Equipment Teardown Time (min)" IsNullable="true" Order="125"/>
<Field ID="COMMON_IDENTIFIER_FIELD" Name="commonidentifier" Type="String" Length="12" Alias="Common Identifier" IsNullable="true" Order="126"/>
</Fields>
</Schema>
<!-- Cyberspace -->
<Schema ID="CYBER_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA LOCATION_SCHEMA TACTICAL_GRAPHIC_SCHEMA AFFILIATED_SCHEMA COUNTRY_SCHEMA EVALUATION_RATING_SCHEMA EQUIPMENT_TYPE_SCHEMA MOVING_SCHEMA QUANTITY_SCHEMA SIGNATURE_EQUIP_SCHEMA SEA_SURFACE_TRACK_SCHEMA LAND_UNIT_TRACK_SCHEMA OPERATIONAL_STATUS_SCHEMA HOSTILE_ENY_SCHEMA TRACK_SCHEMA UNIT_SCHEMA COMBAT_EFFECTIVENESS_SCHEMA IFF_SIF_SCHEMA" SymbolSetIDs="SS_CYBERSPACE" Label="Cyberspace" LabelAlias="Cyberspace" GeometryType="Point" DomainName="Cyberspace">
<Metadata>
<Label>Cyberspace</Label>
<Thumbnail>Cyberspace.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Cyberspace</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with cyberspace data (MIL-STD-2525D Symbol Set 60).</Summary>
<Description>Military Features that support the cyberspace domain.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="CYBER_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="false" Domain="Cyberspace" Default="60" Order="15"/>
<Field ID="CYBER_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="Cyberspace Entity" IsNullable="false" Order="20" Domain="Cyberspace_Entities"/>
</Fields>
</Schema>
<!-- METOC Atmospheric Points Schema -->
<Schema ID="METOC_ATMOS_POINT_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA OPTIONALLY_LABELED_SCHEMA" SymbolSetIDs="SS_ATMOSPHERIC" Label="METOCPointsAtmospheric" LabelAlias="METOC Points Atmospheric" GeometryType="Point" DomainName="METOCPointsAtmospheric">
<Metadata>
<Label>Meteorological (METOC) Points Atmospheric</Label>
<Thumbnail>MetocP.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Meteorological;Atmospheric;METOC</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with Meteorological (METOC) Atmospheric point data (MIL-STD-2525D Symbol Set 45).</Summary>
<Description>Military Features that support Meteorological (METOC) Atmospheric point features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="METOC_POINTS_ATMOS_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="METOCPointsAtmospheric" Order="15"/>
<Field ID="METOC_POINTS_ATMOS_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="METOC Point Entity" IsNullable="true" Domain="METOC_Atmospheric_Point_Entities" Order="20"/>
</Fields>
</Schema>
<!-- METOC Oceanographic Points Schema -->
<Schema ID="METOC_OCEO_POINT_SCHEMA" SchemaTypeIDs="A_SCHEMA POINT_SCHEMA OPTIONALLY_LABELED_SCHEMA" SymbolSetIDs="SS_OCEANIC" Label="METOCPointsOceanographic" LabelAlias="METOC Points Oceanographic" GeometryType="Point" DomainName="METOCPointsOceanographic">
<Metadata>
<Label>Meteorological (METOC) Points Oceanographic</Label>
<Thumbnail>MetocP.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Meteorological;Oceanographic;METOC</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with Meteorological (METOC) Oceanographic point data (MIL-STD-2525D Symbol Set 46).</Summary>
<Description>Military Features that support Meteorological (METOC) Oceanographic point features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="METOC_POINTS_OCEANO_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="METOCPointsOceanographic" Order="15"/>
<Field ID="METOC_POINTS_OCEANO_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="METOC Point Entity" IsNullable="true" Domain="METOC_Oceanographic_Point_Entities" Order="20"/>
</Fields>
</Schema>
<!-- METOC Atmospheric Lines Schema-->
<Schema ID="METOC_ATMOS_LINE_SCHEMA" SchemaTypeIDs="A_SCHEMA OPTIONALLY_LABELED_SCHEMA" SymbolSetIDs="SS_ATMOSPHERIC" Label="METOCLinesAtmospheric" LabelAlias="METOC Lines Atmospheric" GeometryType="Line" DomainName="METOCLinesAtmospheric">
<Metadata>
<Label>Meteorological (METOC) Lines Atmospheric</Label>
<Thumbnail>MetocL.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Meteorological;Atmospheric;METOC</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with Meteorological (METOC) Atmospheric line/polyline data (MIL-STD-2525D Symbol Set 45).</Summary>
<Description>Military Features that support Meteorological (METOC) Atmospheric line features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="METOC_ATMOS_LINES_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="METOCLinesAtmospheric" Order="15"/>
<Field ID="METOC_ATMOS_LINES_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="METOC Line Entity" IsNullable="true" Domain="METOC_Atmospheric_Line_Entities" Order="20"/>
</Fields>
</Schema>
<!-- METOC Oceanographic Lines Schema-->
<Schema ID="METOC_OCEANO_LINE_SCHEMA" SchemaTypeIDs="A_SCHEMA OPTIONALLY_LABELED_SCHEMA" SymbolSetIDs="SS_OCEANIC" Label="METOCLinesOceanographic" LabelAlias="METOC Lines Oceanographic" GeometryType="Line" DomainName="METOCLinesOceanographic">
<Metadata>
<Label>Meteorological (METOC) Lines Oceanographic</Label>
<Thumbnail>MetocL.JPG</Thumbnail>
<Tags>ArcGIS for the Military;Defense;Intelligence;Military;MIL-STD-2525D;ArcGISSolutions;Meteorological;Oceanographic;METOC</Tags>
<Summary>Military Features for use as part of a plan or operation. This feature class is intended to be used with Meteorological (METOC) Oceanographic line/polyline data (MIL-STD-2525D Symbol Set 46).</Summary>
<Description>Military Features that support Meteorological (METOC) Oceanographic line features.</Description>
<Use>Licensed under the Apache License - Version 2.0.</Use>
<MaximumScale>5000</MaximumScale>
<MinimumScale>150000000</MinimumScale>
</Metadata>
<Fields>
<Field ID="METOC_OCEANO_LINES_SYMBOL_SET_FIELD" Name="symbolset" Type="SmallInteger" Length="2" Alias="Symbol Set" IsNullable="true" Domain="METOCLinesOceanographic" Order="15"/>
<Field ID="METOC_OCEANO_LINES_ENTITY_FIELD" Name="symbolentity" Type="Integer" Length="4" Alias="METOC Line Entity" IsNullable="true" Domain="METOC_Oceanographic_Line_Entities" Order="20"/>
</Fields>
</Schema>
<!-- METOC Atmosphgeric Areas Schema -->