Metadata-Version: 2.4
Name: radardef
Version: 0.3.0
Summary: Radar station specifications and data utilities
Author-email: Daniel Kastinen <daniel.kastinen@irf.se>, Hampus Andersson <hampus.andersson@irf.se>
Maintainer-email: Daniel Kastinen <daniel.kastinen@irf.se>, Hampus Andersson <hampus.andersson@irf.se>
License: MIT License
        
        Copyright (c) [2026] [Daniel Kastinen, Hampus Andersson]
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: Documentation, https://danielk.developer.irf.se/radardef/
Project-URL: Repository, https://github.com/danielk333/radardef
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyant>=1.1.0
Requires-Dist: spacecoords>=0.1.2
Requires-Dist: numpy>=1.19.5
Requires-Dist: scipy>=1.4.1
Requires-Dist: h5py>=3.4.0
Requires-Dist: digital_rf>=2.6.6
Requires-Dist: tqdm>=4.66.1
Requires-Dist: requests>=2.28.2
Requires-Dist: lxml
Requires-Dist: astropy>=6
Requires-Dist: strenum; python_version < "3.11"
Provides-Extra: develop
Requires-Dist: pytest; extra == "develop"
Requires-Dist: wheel; extra == "develop"
Requires-Dist: build; extra == "develop"
Requires-Dist: twine; extra == "develop"
Requires-Dist: auditwheel; extra == "develop"
Requires-Dist: pytest-cov; extra == "develop"
Requires-Dist: ruff; extra == "develop"
Provides-Extra: type-checker
Requires-Dist: mypy>=1.18.2; extra == "type-checker"
Requires-Dist: xenon; extra == "type-checker"
Provides-Extra: profiling
Requires-Dist: yappi>=1.4.0; extra == "profiling"
Provides-Extra: tests
Requires-Dist: pytest; extra == "tests"
Requires-Dist: pytest-cov; extra == "tests"
Provides-Extra: documentation
Requires-Dist: docstr-coverage; extra == "documentation"
Requires-Dist: mkdocs-material; extra == "documentation"
Requires-Dist: mkdocstrings[python]; extra == "documentation"
Requires-Dist: mkdocs-jupyter; extra == "documentation"
Requires-Dist: mkdocs-gen-files; extra == "documentation"
Requires-Dist: mkdocs-literate-nav; extra == "documentation"
Requires-Dist: mkdocs-section-index; extra == "documentation"
Requires-Dist: matplotlib; extra == "documentation"
Provides-Extra: mpi
Requires-Dist: mpi4py; extra == "mpi"
Provides-Extra: skymaps
Requires-Dist: pygdsm; extra == "skymaps"
Requires-Dist: astropy-healpix; extra == "skymaps"
Dynamic: license-file

## WORK IN PROGRESS PACKAGE

This repository is a porting/refactoring work in progress: do not use any of the source code until a official release has been drafted.

## Installation

- Clone this repository
- Go to the directory where you cloned it
- Run `pip install .`

## CLI

The package also has a command line interface bound to `radardef`:

```
usage: radardef [-h] [-p] [-v] {convert,format,download} ...

Radar data tool box

positional arguments:
  {convert,format,download}
                        Avalible command line interfaces
    convert             Convert the target files to a supported format
    format              Returns the source format of the file
    download            Download data files from the given radar (Only Eiscat is supported for now)

optional arguments:
  -h, --help            show this help message and exit
  -p, --profiler        Run profiler
  -v, --verbose         Increase output verbosity
```

## Contributing

Please refer to the style and contribution guidelines documented in the
[IRF Software Contribution Guide](https://danielk.developer.irf.se/software_contribution_guide/).
Generally external code-contributions are made trough a "Fork-and-pull"
workflow, while internal contributions follow the branching strategy outlined
in the contribution guide.
