Update Meeting_29_01_2025 authored by Stephan Kindermann's avatar Stephan Kindermann
......@@ -23,8 +23,26 @@
-
# Discussion
discussion figure:
discussion figures:
![stac-ing1](uploads/0956b11e3638e119bd7f621611484d44/stac-ing1.jpg)
```python
from diagrams import Diagram, Cluster
from diagrams.aws.compute import EC2
from diagrams.aws.database import RDS
from diagrams.aws.network import ELB
with Diagram("Web Service", show=False) as diag:
with Cluster("STAC Catalogs"):
cat1 = RDS("ESGF EAST STAC Catalog")
cat2 = RDS("DKRZ proj Catalog")
cat3 = RDS("EERIE Catalog")
cat4 = RDS("WW Catalog")
cat5 = RDS("DKRZ NN Catalog, e.g. DestinE")
ELB("STAC MetaCat") >> [cat1,cat2,cat3,cat4,cat5]
diag
```
# Action Items
\ No newline at end of file