Skip to main content

Library for reading and writing Joint BIIF Profile (JBP) files (NITF and NSIF)

Project description

jbpy

PyPI - Version PyPI - Python Version PyPI - License SPEC 0 — Minimum Supported Dependencies
Tests Documentation Status

jbpy is a library for reading and writing Joint BIIF Profile files. Including:

  • National Imagery Transmission Format (NITF)
  • North Atlantic Treaty Organisation (NATO) Secondary Imagery Format (NSIF)

The Joint BIIF Profile is available from the NSG Standards Registry. See: https://nsgreg.nga.mil/doc/view?i=5674

Install

jbpy can be installed using pip:

$ python -m pip install jbpy

jbpy can also be installed using conda and the conda-forge channel:

$ conda install --channel conda-forge jbpy

License

This repository is licensed under the MIT license.

Features

Jbp objects

jbpy.Jbp objects provide a dict-like interface to JBP files.

>>> from tempfile import TemporaryFile
>>> import jbpy
>>> ntf = jbpy.Jbp()
>>> ntf["FileHeader"]["OSTAID"].value = "README"
>>> ntf.finalize()
>>> file = TemporaryFile()
>>> _ = ntf.dump(file)
>>> ntf2 = jbpy.Jbp()
>>> _ = file.seek(0)
>>> _ = ntf2.load(file)
>>> ntf2["FileHeader"]["OSTAID"].print()
OSTAID                  10 @          15 b'README    '

Utilities

jbpy command-line utilities make it easy to inspect JBP files.

$ jbpdump NITF_TXT_POS_04.ntf --text-segment 0
Text Only Segment.

Directly accessing URLs is possible when smart_open is installed.

$ jbpinfo https://capella-open-data.s3.amazonaws.com/data/2020/12/7/CAPELLA_C02_SM_SICD_HH_20201207083444_20201207083448/CAPELLA_C02_SM_SICD_HH_20201207083444_20201207083448.ntf | head -n 7
FHDR                     4 @           0 b'NITF'
FVER                     5 @           4 b'02.10'
CLEVEL                   2 @           9 b'06'
STYPE                    4 @          11 b'BF01'
OSTAID                  10 @          15 b'CAPELLA HQ'
FDT                     14 @          25 b'20230701003316'
FTITLE                  80 @          39 b'SICD: CAPELLA_C02_SM_SICD_HH_20201207083444_20201207083448.ntf                  '

Support Data Extensions

The JBP document provides extensibility through Support Data Extensions (SDEs) such as Tagged Record Extensions (TREs) and Data Extension Segments (DES). To mimic this extensibility, jbpy defines two entry point groups which are used to load SDE plugins:

  1. jbpy.extensions.tre
  2. jbpy.extensions.des_subheader

jbpy provides a number of built-in SDEs and will load additional SDEs from separately installed packages provided they are declared under these entry point groups as described below.

[!WARNING] There is not currently a mechanism to arbitrate multiple SDEs that are registered under the same plugin name.

TREs

A TRE plugin is named using a 6-character (left-justified and space-padded) TRETAG. The object reference must resolve to a function with no required arguments that instantiates a jbpy.core.Tre object.

pyproject.toml example:

[project.entry-points."jbpy.extensions.tre"]
"MYTRE " = "my_package.my_module:my_tre_func"

Once registered, a TRE object can be instantiated using jbpy.tre_factory:

>>> import jbpy
>>> tre = jbpy.tre_factory("MYTRE")  # note: tag passed to factory must have trailing spaces stripped

DES Subheaders

A DES subheader plugin is named using a 27-character string formed by concatenating the 25-character DESID and 2-digit DESVER. The object reference must resolve to a function that accepts a string-valued name and instantiates a jbpy.core.DataExtensionSubheader object.

pyproject.toml example:

[project.entry-points."jbpy.extensions.des_subheader"]
"MY DES SUBHEADER         24" = "my_des_subheader_func"

Once registered, a DES subheader object can be instantiated using jbpy.des_subheader_factory:

>>> import jbpy
>>> des_subhdr = jbpy.des_subheader_factory("MY DES SUBHEADER", 24)

Testing

Some tests rely on the JITC Quick Look Test Data. If this data is available, it can be used by setting the JBPY_JITC_QUICKLOOK_DIR environment variable.

JBPY_JITC_QUICKLOOK_DIR=<path> pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jbpy-0.6.1.tar.gz (59.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jbpy-0.6.1-py3-none-any.whl (45.9 kB view details)

Uploaded Python 3

File details

Details for the file jbpy-0.6.1.tar.gz.

File metadata

  • Download URL: jbpy-0.6.1.tar.gz
  • Upload date:
  • Size: 59.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jbpy-0.6.1.tar.gz
Algorithm Hash digest
SHA256 23efac30cbbae33e4318eb71f073825b0b7a6578335479e34bb61451406dc523
MD5 7c6cb5266a153befb06bf32256c8dc6c
BLAKE2b-256 06d049258552145d01cdb46d7ab42747d827d786a1d8b57d074572e62be4b21f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jbpy-0.6.1.tar.gz:

Publisher: pypi.yml on ValkyrieSystems/jbpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jbpy-0.6.1-py3-none-any.whl.

File metadata

  • Download URL: jbpy-0.6.1-py3-none-any.whl
  • Upload date:
  • Size: 45.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jbpy-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 8c046d48db9ddab218bf9a9ff4797c64ae567746eaf3fa9a27ebe4f8bc319885
MD5 9b32408057236bd021095858646c8a0e
BLAKE2b-256 484b4e86304da39405734949770e4315d598016c891fdf2d28159c7a2503980b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jbpy-0.6.1-py3-none-any.whl:

Publisher: pypi.yml on ValkyrieSystems/jbpy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page