Skip to content

Commit

Permalink
app mermaid
Browse files Browse the repository at this point in the history
  • Loading branch information
fabricebrito committed Oct 31, 2023
1 parent d4cf96c commit ec6476b
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion docs/app/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,29 @@ graph TB
A[STAC Items] --> B
A[STAC Items] --> C
subgraph Process STAC item
B[["crop(green)"]] --> D[Normalized difference];
B["crop(green)"] --> D[Normalized difference];
C["crop(nir)"] --> D[Normalized difference];
D --> E[Otsu threshold]
end
E --> F[Create STAC]
```


``` mermaid
graph TB
A[STAC Item] --> B
A[STAC Item] --> C
subgraph Process STAC item
subgraph scatter on band
B["crop(green)"] --> D[Normalized difference];
C["crop(nir)"] --> D[Normalized difference];
end
D --> E[Otsu threshold]
end
E --> F[Create STAC Catalog]
```


The application can be used in two modes:

- take a list of Sentinel-2 STAC items references, applies the crop over the area of interest for the radiometric bands green and NIR, the normalized difference, the Ostu threshold and finaly creates a STAC catalog and items for the generated results.
Expand Down

0 comments on commit ec6476b

Please sign in to comment.