Metadata-Version: 2.1
Name: etrs-itrs
Version: 0.1
Summary: A python tool to convert ETRS to ITRF coordinates.
Home-page: https://github.com/brentjens/etrs-itrs
Author: Michiel Brentjens
Author-email: brentjens@astron.nl
License: Apache License 2.0
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: No Input/Output (Daemon)
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Astronomy
Requires-Python: >=3.6
Description-Content-Type: text/plain
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: importlib-metadata >=0.12 ; python_version < "3.8"

Readme
======

``etrsitrs`` is a Python package that implements datum transformations
to and from the ETRF2000 reference frame of the ETRS89 system. It
implements the transformations described in EUREF memo *Specifications
for reference frame fixing in the analysis of a EUREF GPS campaign* by
Boucher and Altamimi (2011).

Requirements
------------

The following packages and tools are required:

numpy
    All computations.

nose
    Running the unit tests.

coverage
    Computing code coverage of the unit tests.

numpydoc
    Building documentation.

sphinx
    Building documentation.

pylint
    Static code analysis (optional).


Documentation
-------------

The documentation is built when running the test suite. Documentation
is also provided pre-built in the following directories:

html
    doc/_build/html/index.html

PDF
    doc/_build/latex/etrsitrs.pdf


Test suite
----------

The test suite is run with the command::

    user@host: ~/etrs-itrs/$ ./run-tests.sh

This requires the ``nose`` and ``coverage`` packages, as well as the
``nosetests`` script. It also builds the documentation and does
static code analysis if ``pylint`` is present. 

