Skip to content

Commit

Permalink
stage-in-out
Browse files Browse the repository at this point in the history
  • Loading branch information
fabricebrito committed Oct 31, 2023
1 parent 10a10db commit 758bbc2
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions docs/cwl-workflow/stage-in-out.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,28 +33,28 @@ graph TB
style AA stroke:#f66,stroke-width:3px
style BB stroke:#f66,stroke-width:3px
subgraph stage-in
A[STAC Item] -- STAC Item URL --> AA[Stage-in]
AA[Stage-in] -- catalog.json/item.json/assets blue, red, nir ... --> AB[(local storage)]
A[STAC Item] -- STAC Item URL --> AA[Stage-in]
AA[Stage-in] -- catalog.json/item.json/assets blue, red, nir ... --> AB[(local storage)]
end
subgraph Process STAC item
AB[(storage)] -- Staged STAC Catalog --> B
AB[(storage)] -- Staged STAC Catalog --> C
AB[(storage)] -- Staged STAC Catalog --> F
AB[(storage)] -- Staged STAC Catalog --> B
AB[(storage)] -- Staged STAC Catalog --> C
AB[(storage)] -- Staged STAC Catalog --> F
subgraph scatter on bands
B["crop(green)"];
C["crop(nir)"];
B["crop(green)"];
C["crop(nir)"];
end
B["crop(green)"] -.-> D[Normalized difference];
C["crop(nir)"] -.-> D[Normalized difference];
D -.-> E[Otsu threshold]
B["crop(green)"] -.-> D[Normalized difference];
C["crop(nir)"] -.-> D[Normalized difference];
D -.-> E[Otsu threshold]
end
E -.-> F[Create STAC Catalog]
F -.-> G[(storage)]
E -.-> F[Create STAC Catalog]
F -.-> G[(storage)]
subgraph stage-out
G -- "catalog.json/item.json/asset otsu.tif" --> BB[Stage-out]
BB --> H[(Remote
storage)]
G -- "catalog.json/item.json/asset otsu.tif" --> BB[Stage-out]
BB --> H[("Remote
storage")]
end
```

0 comments on commit 758bbc2

Please sign in to comment.