Metadata-Version: 2.1
Name: s1etad
Version: 0.2.0
Summary: Reader for Sentinel-1 Extended Timing Annotation Dataset
Home-page: https://gitlab.com/nuno.miranda/s1-etad
License: MIT License
Project-URL: Bug Tracker, https://gitlab.com/nuno.miranda/s1-etad/-/issues
Project-URL: Documentation, https://s1etad.readthedocs.io
Project-URL: Source Code, https://gitlab.com/nuno.miranda/s1-etad
Project-URL: Changelog, https://gitlab.com/nuno.miranda/s1-etad/-/blob/master/CHANGELOG.rst
Keywords: sentinel,copernicus,esa,remote-sensing,satellite-imagery
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
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: Topic :: Scientific/Engineering
Requires-Python: >=3.6
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: lxml
Requires-Dist: netCDF4
Requires-Dist: pandas
Requires-Dist: python-dateutil
Requires-Dist: shapely
Requires-Dist: simplekml
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: nbsphinx ; extra == 'docs'

s1etad Python package
======================

.. image:: https://img.shields.io/readthedocs/s1etad/latest.svg
    :target: http://s1etad.readthedocs.org/
    :alt: Documentation Status


:copyright: 2020 Nuno Mirada, Antonio Valentino


.. contents

About
-----

The ``s1etad`` Python package provides tools for easy access to
Sentinel-1 Extended Timing Annotation Datasets.

The current version of the package is based on the Product Format
Specification Document (ETAD-DLR-PS-0014) Issue 1.1.

Main features provided are:

* open and navigate all the S1-ETAD elements:

  - product (|Sentinel1Etad| class)
  - swaths (|Sentinel1EtadSwath| class)
  - bursts (|Sentinel1EtadBurst| class)

* inspect metadata
* perform queries on bursts (by time, swath name, product name or any
  combination) using the |Sentinel1Etad.burst_catalogue|
* easy iteration
* read corrections
* perform correction mosaic: de-bursting and swath stitching (a basic
  algorithm is currently implemented)
* get footprints
* generate simple KML files of the product
* integration with Jupyter_ environments


.. _Jupyter: https://jupyter.org


Project links
-------------

:download: https://pypi.org/project/s1etad
:documentation: https://s1etad.readthedocs.io
:sources: https://gitlab.com/nuno.miranda/s1-etad
:issues: https://gitlab.com/nuno.miranda/s1-etad/-/issues


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

* `Python <https://www.python.org>`_ >= 3.6
* `numpy <https://numpy.org>`_
* `scipy <https://scipy.org>`_
* `lxml <https://lxml.de>`_
* `netCDF4 <http://github.com/Unidata/netcdf4-python>`_
* `pandas <https://pandas.pydata.org>`_
* `python-dateutil <https://dateutil.readthedocs.io>`_
* `shapely <https://github.com/Toblerity/Shapely>`_
* `simplekml <https://pypi.org/project/simplekml>`_


Installation
------------

To install the ``s1etad`` package simpy run the following command::

  $ python3 -m pip install s1etad


License
-------

The s1etad package is distributed unthe the terms of the MIT License.

See ``LICENSE.txt`` for mare details.


.. substitutions
.. |Sentinel1Etad| replace:: ``Sentinel1Etad``
.. |Sentinel1EtadSwath| replace:: ``Sentinel1EtadSwath``
.. |Sentinel1EtadBurst| replace:: ``Sentinel1EtadBurst``
.. |Sentinel1Etad.burst_catalogue| replace:: ``Sentinel1Etad.burst_catalogue``


