forked from WestRidgeSystems/jmisb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,918 changed files
with
146,072 additions
and
215,349 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
api/src/main/java/org/jmisb/api/klv/st0903/VmtiLocalSetFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package org.jmisb.api.klv.st0903; | ||
|
||
import org.jmisb.api.common.KlvParseException; | ||
import org.jmisb.api.klv.IMisbMessageFactory; | ||
|
||
/** | ||
* VMTI Local Set Factory (ST 0903). | ||
* | ||
* <p>From ST: | ||
* | ||
* <blockquote> | ||
* | ||
* This standard defines Local Sets for VMTI and Track Metadata. These Local Sets may be embedded | ||
* within a MISB ST0601LS, or they may stand alone. The latter permits VMTI and Track Metadata to be | ||
* provided independent of Motion Imagery essence. This is useful in constrained bandwidth | ||
* environments, where the Motion Imagery may be omitted in favor of the VMTI data. | ||
* | ||
* </blockquote> | ||
*/ | ||
public class VmtiLocalSetFactory implements IMisbMessageFactory { | ||
|
||
/** | ||
* Create from bytes. | ||
* | ||
* @param bytes the VMTI byte data | ||
*/ | ||
@Override | ||
public VmtiLocalSet create(byte[] bytes) throws KlvParseException { | ||
return new VmtiLocalSet(bytes); | ||
} | ||
} |
Oops, something went wrong.