Skip to content
GitLab
    • Explore Projects Groups Topics Snippets
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Register
  • Sign in
  • scenes scenes
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Graph
    • Compare revisions
  • Issues 9
    • Issues 9
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Terraform modules
  • Monitor
    • Monitor
    • Incidents
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar

En prévision de l'arrivée de la forge institutionnelle INRAE, nous vous invitons à créer vos nouveaux projets sur la forge MIA.

  • umr-tetisumr-tetis
  • scenesscenes
  • Merge requests
  • !41
An error occurred while fetching the assigned milestone of the selected merge_request.

remove imagery class

  • Review changes

  • Download
  • Patches
  • Plain diff
Merged Cresson Remi requested to merge 18-suppr_imagery into develop 3 years ago
  • Overview 0
  • Commits 7
  • Pipelines 6
  • Changes 16

Closes #18 (closed)

Edited 3 years ago by Cresson Remi
Compare
  • version 5
    67b54060
    3 years ago

  • version 4
    83a1f8e5
    3 years ago

  • version 3
    dfcce20d
    3 years ago

  • version 2
    80847c55
    3 years ago

  • version 1
    81159508
    3 years ago

  • develop (base)

and
  • latest version
    74e323ed
    7 commits, 3 years ago

  • version 5
    67b54060
    6 commits, 3 years ago

  • version 4
    83a1f8e5
    4 commits, 3 years ago

  • version 3
    dfcce20d
    3 commits, 3 years ago

  • version 2
    80847c55
    2 commits, 3 years ago

  • version 1
    81159508
    1 commit, 3 years ago

16 files
+ 476
− 420

    Preferences

    File browser
    Compare changes
apps/__init__.py 0 → 100644
+ 4
− 0
  • View file @ 74e323ed

  • Edit in single-file editor

  • Open in Web IDE

# -*- coding: utf-8 -*-
"""
This module contains some applications to work with scenes
"""
apps/drs_spot67_import.py
+ 3
− 1
  • View file @ 74e323ed

  • Edit in single-file editor

  • Open in Web IDE


@@ -4,7 +4,9 @@ This application enables to search existing Spot-6/7 products from different loc
containing all the `scene.spot.Spot67Scene` instances
``` command-line
drs_spot67_import --root_dirs /ortho_drs/2018/ /ortho_drs/2019 --out_pickle collection
drs_spot67_import
--root_dirs /ortho_drs/2018/ /ortho_drs/2019
--out_pickle collection
```
"""
apps/s2_download.py
+ 16
− 1
  • View file @ 74e323ed

  • Edit in single-file editor

  • Open in Web IDE


@@ -5,9 +5,24 @@ This application enables to download all Sentinel-2 images overlapping a referen
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
s2_download
--refimage raster.tif
--theia_cfg ~/cfg.txt
--download_dir /tmp
--year 2022 --month 12 --day 1
```
With `~/cfg.txt`:
```
serveur = https://theia.cnes.fr/atdistrib
resto = resto2
token_type = text
login_theia = remi.cresson@irstea.fr
password_theia = thisisnotmyrealpassword
```
"""
import sys
import argparse
apps/s2_import.py
+ 7
− 0
  • View file @ 74e323ed

  • Edit in single-file editor

  • Open in Web IDE


#!/usr/bin/env python3
"""
This application enables to save a collection of Sentinel-2 image into a pickle object.
```
s2_import
--root_dirs /path/to/S2_3A/T31TEJ /path/to/S2_3A/T31TEK
--out_pickle s2_collection
```
"""
import sys
import argparse
apps/search.py
+ 16
− 0
  • View file @ 74e323ed

  • Edit in single-file editor

  • Open in Web IDE


#!/usr/bin/env python3
"""
This application enables to perform a spatial query over a collection of image, from the specific ROI (vector or raster)
With a vector:
```
search.py
--pickle_file s2_collection
--roi toto.gpkg
```
With a raster:
```
search.py
--pickle_file s2_collection
--roi toto.tif
```
"""
import sys
import argparse
0 Assignees
None
Assign to
0 Reviewers
None
Request review from
Labels
0
None
0
None
    Assign labels
  • Manage project labels

Milestone
No milestone
None
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
0
0 Participants
Reference:
Source branch: 18-suppr_imagery

Menu

Explore Projects Groups Topics Snippets