Metadata-Version: 2.1
Name: drb-topics
Version: 1.0.0
Summary: Data Request Broker topics package
Author: GAEL Systems
Author-email: drb-python@gael.fr
License: LGPLv3
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: all
Provides-Extra: sentinel
Provides-Extra: safe
Provides-Extra: sentinel1
Provides-Extra: sentinel2
Provides-Extra: sentinel3
Provides-Extra: sentinel5p
Provides-Extra: landsat8
Provides-Extra: geojson
License-File: LICENCE.txt

# topics

# DRB Topics
**_drb-topics_** is a Python plugin for **DRB**, to help the installations
of drb topics.

## Installation
```shell
pip install drb-topics[OPTIONAL]
```

## Topic
Here the list of all the topics downloadable with this project.

| name       | category | package              |
|:-----------|:---------|:---------------------|
| safe       | SENTINEL | drb-topic-safe       |
| sentinel1  | SENTINEL | drb-topic-sentinel1  |
| sentinel2  | SENTINEL | drb-topic-sentinel2  |
| sentinel3  | SENTINEL | drb-topic-sentinel3  |
| sentinel5p | SENTINEL | drb-topic-sentinel5p |
| landsat8   | NONE     | drb-topic-landsat8   |
| geojson    | NONE     | drb-topic-geojson    |

You can download a topic with his name like:
```shell
pip install drb-topics[geojson]
```
to only download the topic geojson

To download all the sentinel topic:
```shell
pip install drb-topics[sentinel]
```

To download all the topics:
```shell
pip install drb-topics[all]
```
