Milsymbol Mapping: Difference between revisions

From Maria GDK Wiki
Jump to navigation Jump to search
(Created page with "== Milsymbol Mapping == With the "MilSymMapper" class you can map draw object sidc between the milsymbol versions: APP6D, MIL-STD-2525D, and MIL-STD-2525C. === Examples of Usage === Tese example maps the Battle Position type. === Examples of Usage - Get Mapped SIDC from SIDC === <source lang="c#"> var factory = new DrawObjectCommonFactory(); // Get APP6D sidc from MIL-STD-2525C SIDC var id_d = factory.MilSymMapper.GetMilSymSIDCFromMilSymSIDC("TACGRP.C2GM.DEF.ARS.BTLPS...")
 
No edit summary
 
(42 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Milsymbol Mapping ==
== Milsymbol Mapping ==
With the "MilSymMapper" class you can map draw object sidc between the milsymbol versions: APP6D, MIL-STD-2525D, and MIL-STD-2525C.
The "MilSymMapper" class provides methods for mapping draw object SIDC between the milsymbol versions: APP6D and APP6C.
The result contains the result and status of the result. If the mapping is ambiguous, additional results are contained in the result (result.AdditionalResults).


=== Examples of Usage ===
=== Examples of Usage ===
Tese example maps the Battle Position type.


=== Examples of Usage - Get Mapped SIDC from SIDC ===
<source>
<source lang="c#">
var resources= new DrawObjectCommonResources(...);
var factory = new DrawObjectCommonFactory();


// Get APP6D sidc from MIL-STD-2525C SIDC
// Get APP6D sidc from 15 character MIL-STD-2525C sidc
var id_d = factory.MilSymMapper.GetMilSymSIDCFromMilSymSIDC("TACGRP.C2GM.DEF.ARS.BTLPSN", Mapping.MilSymType.APP6D);
var result_d = resources.MilSymMapper.MapAPP6CToAPP6D("SUGPUSTA--A----");
var code = result_d.Code;
 
// Get APP6D sidc from APP6C hierarchy code.
var result_d = MapAPP6CHierarchyCodeToAPP6D("TACGRP.CSS.PNT.SPT.GNL");
var code = result_d.Code;
 
// Get 15 character MIL-STD-2525C sidc from APP6D sidc
var result_c = resources.MilSymMapper.MapAPP6DToAPP6C("100301000011010400000000000000");
var code = result_c.Code;
 
// Get APP6C hierarchy code from APP6D sid.
var result_c = MapAPP6DToAPP6CHierarchyCode("100025000032050000000000000000");
var code = result_c.Code;


// Get MIL-STD-2525C sidc from APP6D sidc
var id_c = factory.MilSymMapper.GetMilSymSIDCFromMilSymSIDC("30002500001512000000", Mapping.MilSymType.MILSTD2525C);
</source>
</source>


=== Examples of Usage - Get Mapped TypeId from SIDC ===
The MilSymMapper can also be created without using the DrawObjectCommonResources:
<source lang="c#">
 
var factory = new DrawObjectCommonFactory();
<source>


// Get APP6D TypeId from TypeId
var milsymMapper = new MilSymMapper();
  var typeId_d = factory.MilSymMapper.GetDrawObjectTypeId("TACGRP.C2GM.DEF.ARS.BTLPSN", Mapping.MilSymType.APP6D);


// Get MIL-STD-2525C TypeId from TypeId
var typeId_c = factory.MilSymMapper.GetDrawObjectTypeId("30002500001512000000", Mapping.MilSymType.MILSTD2525C);
</source>
</source>


=== Examples of Usage - Get Mapped SIDC from TypeId ===
For compatible mapping between draw objects in MARIA GDK 4 and MARIA GDK 5 the following API can be used:
<source lang="c#">
 
var factory = new DrawObjectCommonFactory();
<source>
 
// Get GDK 4 compliant hierarchy code from APP6D sidc.
var id_c = GetGDK4CompliantSIDC("100025000032050000000000000000");


// Get APP6D sidc from TypeId
// Get GDK 5 compliant sidc from MIL-STD2525C hierarchy code.
var id_d = factory.MilSymMapper.GetMilSymSIDCFromTypeId(new Guid("88784e27-c8d4-46d8-a72f-4fc433c759ee"), Mapping.MilSymType.APP6D);
var id_d = GetGDK5CompliantSIDC("TACGRP.CSS.PNT.SPT.GNL);


// Get MIL-STD-2525C sidc from TypeId
var id_c = factory.MilSymMapper.GetMilSymSIDCFromTypeId(new Guid("88784e27-c8d4-46d8-a72f-4fc433c759ee"), Mapping.MilSymType.MILSTD2525C);
</source>
</source>
=== How to Update Mapping Between APP6D and APP6C ===
There are two files handeling mapping between APP6C and APP6D:
* C2DMapping.csv, handels mapping from APP6C to APP6D
* D2CMapping.csv, handels mapping from APP6D to APP6C
Each file contains one line per mapping and is a comma separated list of values. The first line in each file contains a descriptive name of each "column".
==== The File C2DMapping.csv ====
<syntaxhighlight lang="csharp">
C_SymbolCode,D_Sidc,C_HierarchyCode,Status
S*A*M-----*****,100001000011000000000000000000,WAR.AIRTRK.MIL,
</syntaxhighlight>
==== The File D2CMapping.csv ====
<syntaxhighlight lang="csharp">
D_Sidc,C_SymbolCode,C_HierarchyCode,Status
100001000011000000000000000000,S*A*M-----*****,WAR.AIRTRK.MIL,
</syntaxhighlight>
[[Category:GDK5]]

Latest revision as of 19:40, 15 November 2025

Milsymbol Mapping

The "MilSymMapper" class provides methods for mapping draw object SIDC between the milsymbol versions: APP6D and APP6C. The result contains the result and status of the result. If the mapping is ambiguous, additional results are contained in the result (result.AdditionalResults).

Examples of Usage

var resources= new DrawObjectCommonResources(...);

// Get APP6D sidc from 15 character MIL-STD-2525C sidc
var result_d = resources.MilSymMapper.MapAPP6CToAPP6D("SUGPUSTA--A----");
var code = result_d.Code;

// Get APP6D sidc from APP6C hierarchy code.
var result_d = MapAPP6CHierarchyCodeToAPP6D("TACGRP.CSS.PNT.SPT.GNL");
var code = result_d.Code;

// Get 15 character MIL-STD-2525C sidc from APP6D sidc 
var result_c = resources.MilSymMapper.MapAPP6DToAPP6C("100301000011010400000000000000");
var code = result_c.Code;

// Get APP6C hierarchy code from APP6D sid.
var result_c = MapAPP6DToAPP6CHierarchyCode("100025000032050000000000000000");
var code = result_c.Code;

The MilSymMapper can also be created without using the DrawObjectCommonResources:

var milsymMapper = new MilSymMapper();

For compatible mapping between draw objects in MARIA GDK 4 and MARIA GDK 5 the following API can be used:

// Get GDK 4 compliant hierarchy code from APP6D sidc.
var id_c = GetGDK4CompliantSIDC("100025000032050000000000000000");

// Get GDK 5 compliant sidc from MIL-STD2525C hierarchy code.
var id_d = GetGDK5CompliantSIDC("TACGRP.CSS.PNT.SPT.GNL);

How to Update Mapping Between APP6D and APP6C

There are two files handeling mapping between APP6C and APP6D:

  • C2DMapping.csv, handels mapping from APP6C to APP6D
  • D2CMapping.csv, handels mapping from APP6D to APP6C

Each file contains one line per mapping and is a comma separated list of values. The first line in each file contains a descriptive name of each "column".

The File C2DMapping.csv

C_SymbolCode,D_Sidc,C_HierarchyCode,Status
S*A*M-----*****,100001000011000000000000000000,WAR.AIRTRK.MIL,

The File D2CMapping.csv

D_Sidc,C_SymbolCode,C_HierarchyCode,Status
100001000011000000000000000000,S*A*M-----*****,WAR.AIRTRK.MIL,