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

DOC: add applications doc

1 merge request!36Replace pydoc
Showing with 25 additions and 0 deletions
+25 -0
#!/usr/bin/env python3
"""
This application enables to search existing Spot-6/7 products from different locations, and save a pickle object
containing all the `scene.spot.Spot67Scene` instances
``` command-line
drs_spot67_import --root_dirs /ortho_drs/2018/ /ortho_drs/2019 --out_pickle collection
```
"""
import argparse
from scenes import save_scenes
from scenes.spot import get_spot67_scenes
......
#!/usr/bin/env python3
"""
This application enables to download all Sentinel-2 images overlapping a reference raster, and acquired at a specific
date, from the Theia land data center.
The Theia credential have to be provided.
``` command-line
s2_download --refimage raster.tif --theia_cfg ~/cfg.txt --download_dir /tmp --year 2022 --month 12 --day 1
```
"""
import argparse
from scenes import TheiaDownloader, raster
import datetime
......
#!/usr/bin/env python3
"""
This application enables to save a collection of Sentinel-2 image into a pickel object.
"""
import argparse
from scenes import save_scenes
from scenes.sentinel import get_local_scenes
......
#!/usr/bin/env python3
"""
This application enables to perform a spatial query over a collection of image, from the specific ROI (vector or raster)
"""
import argparse
from scenes import load_scenes, Index, raster, vector
......
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