Metadata-Version: 2.1
Name: sarkit
Version: 1.0.1
Summary: Suite of SAR-related tools in Python.
Author-Email: Valkyrie Systems Corporation <info@govsco.com>
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Project-URL: Documentation, https://sarkit.readthedocs.io/
Project-URL: Repository, https://github.com/ValkyrieSystems/sarkit.git
Project-URL: Bug Tracker, https://github.com/ValkyrieSystems/sarkit/issues
Project-URL: Changelog, https://github.com/ValkyrieSystems/sarkit/blob/main/CHANGELOG.md
Requires-Python: >=3.11
Requires-Dist: jbpy>=0.1.0
Requires-Dist: lxml>=5.1.0
Requires-Dist: numpy>=1.25.0
Provides-Extra: verification
Requires-Dist: shapely>=2.0.2; extra == "verification"
Provides-Extra: all
Requires-Dist: sarkit[verification]; extra == "all"
Provides-Extra: dev-lint
Requires-Dist: ruff>=0.3.0; extra == "dev-lint"
Requires-Dist: mypy>=1.8.0; extra == "dev-lint"
Provides-Extra: dev-test
Requires-Dist: aiohttp>=3.11; extra == "dev-test"
Requires-Dist: pytest>=7.4.4; extra == "dev-test"
Requires-Dist: smart_open[http]>=7.1.0; extra == "dev-test"
Requires-Dist: scipy>=1.12.0; extra == "dev-test"
Provides-Extra: dev
Requires-Dist: sarkit[dev-lint,dev-test]; extra == "dev"
Description-Content-Type: text/markdown

<div align="center">

<img src="https://raw.githubusercontent.com/ValkyrieSystems/sarkit/main/docs/source/_static/sarkit_logo.png" width=200>

[![PyPI - Version](https://img.shields.io/pypi/v/sarkit)](https://pypi.org/project/sarkit/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/sarkit)
[![PyPI - License](https://img.shields.io/pypi/l/sarkit)](./LICENSE)
[![SPEC 0 — Minimum Supported Dependencies](https://img.shields.io/badge/SPEC-0-green?labelColor=%23004811&color=%235CA038)](https://scientific-python.org/specs/spec-0000/)
<br>
[![Tests](https://github.com/ValkyrieSystems/sarkit/actions/workflows/tests.yml/badge.svg)](https://github.com/ValkyrieSystems/sarkit/actions/workflows/tests.yml)
[![Documentation Status](https://readthedocs.org/projects/sarkit/badge/?version=latest)](https://sarkit.readthedocs.io/en/latest/?badge=latest)

</div>

**SARkit** is a suite of Synthetic Aperture Radar (SAR)-related tools in Python developed and maintained by
Valkyrie Systems Corporation to encourage the use of National Geospatial-Intelligence Agency (NGA) SAR data standards.

With SARkit, you can:

* read and write SAR standards files (CRSD, CPHD, SICD, SIDD)
* interact with SAR XML metadata using more convenient Python objects
* check SAR data/metadata files for inconsistencies

This project was developed as the modern successor to [SarPy](https://github.com/ngageoint/sarpy).

## License
This repository is licensed under the [MIT license](./LICENSE).

## Contributing and Development
Contributions are welcome; for details see the [contributing guide](./CONTRIBUTING.md).

A few tips for getting started using [PDM](https://pdm-project.org/en/latest/) are below:


```shell
$ pdm install -G:all  # install SARkit with optional & dev dependencies
$ pdm run nox  # run lint and tests
$ pdm run nox -s docs  # build documentation
```
