Commit e47f1430 authored by Cresson Remi's avatar Cresson Remi
Browse files

Merge branch '8-install_instructions' into 'develop'

Resolve "Additional info for download stuff"

Closes #8

See merge request !56
1 merge request!56Resolve "Additional info for download stuff"
Pipeline #47720 passed with stages
in 4 minutes and 25 seconds
Showing with 15 additions and 2 deletions
+15 -2
...@@ -8,6 +8,14 @@ Currently, supported sensors are: ...@@ -8,6 +8,14 @@ Currently, supported sensors are:
- Sentinel-2 (Theia, Level 2) - Sentinel-2 (Theia, Level 2)
- Sentinel-2 (Theia, Level 3) - Sentinel-2 (Theia, Level 3)
## Installation
To install the latest version:
```
pip install https://gitlab.irstea.fr/umr-tetis/scenes/-/archive/develop/scenes-develop.zip --upgrade
```
## Generic features ## Generic features
`Scene` instances have generic methods and attributes. `Scene` instances have generic methods and attributes.
......
...@@ -483,7 +483,6 @@ class Sentinel2TheiaScene(Sentinel2SceneBase): ...@@ -483,7 +483,6 @@ class Sentinel2TheiaScene(Sentinel2SceneBase):
) )
class Sentinel22AScene(Sentinel2TheiaScene): class Sentinel22AScene(Sentinel2TheiaScene):
""" """
Sentinel-2 level 2A scene class. Sentinel-2 level 2A scene class.
......
...@@ -4,6 +4,9 @@ This module enables various operations from STAC catalogs. ...@@ -4,6 +4,9 @@ This module enables various operations from STAC catalogs.
# Spot-6/7 DRS from Dinamis (experimental) # Spot-6/7 DRS from Dinamis (experimental)
```python ```python
import dinamis_sdk
from stac_client import Client
api = Client.open( api = Client.open(
'https://stacapi-dinamis.apps.okd.crocc.meso.umontpellier.fr', 'https://stacapi-dinamis.apps.okd.crocc.meso.umontpellier.fr',
modifier=dinamis_sdk.sign_inplace, modifier=dinamis_sdk.sign_inplace,
...@@ -23,6 +26,9 @@ for item in res.items(): ...@@ -23,6 +26,9 @@ for item in res.items():
# Sentinel-2 images from Microsoft planetary computer # Sentinel-2 images from Microsoft planetary computer
```python ```python
import planetary_computer
from stac_client import Client
api = Client.open( api = Client.open(
'https://planetarycomputer.microsoft.com/api/stac/v1', 'https://planetarycomputer.microsoft.com/api/stac/v1',
modifier=planetary_computer.sign_inplace, modifier=planetary_computer.sign_inplace,
......
...@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as fh: ...@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setuptools.setup( setuptools.setup(
name="scenes", name="scenes",
version="1.6.3", version="1.6.4",
author="Rémi Cresson", author="Rémi Cresson",
author_email="remi.cresson@inrae.fr", author_email="remi.cresson@inrae.fr",
description="Library to ease the processing of remote sensing products", description="Library to ease the processing of remote sensing products",
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment