Skip to content

Commit a4da109

Browse files
committed
re-consolidate portals.qmd
1 parent 14a8326 commit a4da109

File tree

4 files changed

+86
-94
lines changed

4 files changed

+86
-94
lines changed

_quarto.yml

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ book:
3030
- api.qmd
3131
- db.qmd
3232
- portals.qmd
33-
- portals_a.qmd
34-
- portals_b.qmd
3533
- refs.qmd
3634

3735
bibliography: ["refs/packages.bib"]

portals.qmd

+86
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,92 @@ title: "Portals"
66

77
CalCOFI data is available through various portals, each serving different purposes and user needs. This document outlines the main access points and their characteristics.
88

9+
## Data Flow
10+
11+
While it would be ideal for CalCOFI data to be available through a single portal, each portal has its strengths and limitations. The following diagram illustrates one possible realization of data flow between CalCOFI data and the portals: from raw data to the integrated database to portals and meta-portals.
12+
13+
```{mermaid}
14+
%%{init: {
15+
'theme': 'base',
16+
'themeVariables': {
17+
'primaryColor': '#E0E7FF',
18+
'primaryTextColor': '#312E81',
19+
'primaryBorderColor': '#6366F1',
20+
'lineColor': '#818CF8',
21+
'secondaryColor': '#FEF3C7',
22+
'tertiaryColor': '#ECFDF5'
23+
}
24+
}}%%
25+
26+
graph TD
27+
%% nodes with styles
28+
raw([raw data]):::source
29+
db[(database)]:::database
30+
31+
subgraph calcofi[CalCOFI.io]
32+
web[calcofi.org]:::website
33+
api[APIs]:::api
34+
lib[library]:::code
35+
app[apps]:::code
36+
flow[workflows]:::code
37+
end
38+
39+
subgraph portals[Portals]
40+
edi[EDI]:::portal
41+
obis[OBIS]:::portal
42+
erddap[ERDDAP]:::portal
43+
ncei[NCEI]:::portal
44+
end
45+
46+
subgraph meta[Meta-Portals]
47+
odis[ODIS]:::metaportal
48+
datagov[data.gov]:::metaportal
49+
end
50+
51+
%% edges
52+
raw --> db
53+
db --> api
54+
db --> web
55+
api --> lib
56+
api --> app
57+
api --> flow
58+
flow --> portals
59+
portals -->|sitemap| odis
60+
portals --> datagov
61+
62+
%% Custom styles
63+
classDef source fill:#E0E7FF,stroke:#6366F1,stroke-width:2px
64+
classDef database fill:#FEF3C7,stroke:#D97706,stroke-width:2px
65+
classDef website fill:#F3E8FF,stroke:#9333EA,stroke-width:2px
66+
classDef api fill:#E0E7FF,stroke:#6366F1,stroke-width:2px
67+
classDef code fill:#DBEAFE,stroke:#3B82F6,stroke-width:2px
68+
classDef portal fill:#F0FDF4,stroke:#22C55E,stroke-width:2px
69+
classDef metaportal fill:#FEF2F2,stroke:#DC2626,stroke-width:2px
70+
71+
%% Style subgraphs
72+
style calcofi fill:#F8FAFC,stroke:#CBD5E1,stroke-width:2px
73+
style portals fill:#F8FAFC,stroke:#CBD5E1,stroke-width:2px
74+
style meta fill:#F8FAFC,stroke:#CBD5E1,stroke-width:2px
75+
```
76+
77+
In practice, CalCOFI is a partnership with various contributing members, so the authoritative dataset might flow differently, such as from EDI to the database to the other portals. The other portals, such as OBIS or ERDDAP, serve different audiences or purposes. The meta-portals like ODIS and Data.gov then index these portals to provide broader discovery of CalCOFI datasets.
78+
79+
## Portals
80+
81+
| Portal | Full Archive | Versioning | DOI issued | Query by xyt | Query by taxa | Multiple formats | API Access |
82+
|----|----|----|----|----|----|----|----|
83+
| **EDI** | :green_circle: | :green_circle: | :green_circle: | :yellow_circle: | :yellow_circle: | :red_circle: | :yellow_circle: |
84+
| **NCEI** | :green_circle: | :green_circle: | :green_circle: | :red_circle: | :red_circle: | :red_circle: | :yellow_circle: |
85+
| **OBIS** | :yellow_circle: | :yellow_circle: | :yellow_circle: | :green_circle: | :green_circle: | :yellow_circle: | :green_circle: |
86+
| **ERDDAP** | :yellow_circle: | :red_circle: | :red_circle: | :green_circle: | :yellow_circle: | :green_circle: | :green_circle: |
87+
88+
<!-- TODO: get emojis to show in PDF -->
89+
90+
------------------------------------------------------------------------
91+
92+
† Capability: :red_circle: none; :yellow_circle: partial; :green_circle: full
93+
94+
995
### EDI (Environmental Data Initiative)
1096

1197
- Complete dataset archives using DataOne software and EML metadata

portals_a.qmd

-73
This file was deleted.

portals_b.qmd

-19
This file was deleted.

0 commit comments

Comments
 (0)