mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-23 10:04:18 -08:00
* Fixes #18 - Addresses potential architecture on geoplatform.gov * Add changes * Adding commuinity input into processing * Add changes * Add ADR for Hosting * Update from PR review Co-authored-by: GitHub Action <action@github.com> Co-authored-by: Shelby Switzer <shelby.switzer@cms.hhs.gov>
39 lines
No EOL
1.1 KiB
Text
39 lines
No EOL
1.1 KiB
Text
graph LR
|
|
subgraph c["Community"]
|
|
input["Community Input"]
|
|
end
|
|
|
|
subgraph ds["Data Selection"]
|
|
input --> Intake
|
|
input --> Evolution
|
|
input --> Voting
|
|
Intake --> Evolution --> Voting
|
|
end
|
|
|
|
subgraph s["Geoplatform.gov"]
|
|
subgraph dp["Data Pipeline (Justice40 Repo)"]
|
|
Voting --> a["Approved Datasets"]
|
|
a --> Properties
|
|
a --> Geometries
|
|
Properties --> Processing
|
|
Geometries --> Processing
|
|
input --> Processing
|
|
end
|
|
subgraph Server
|
|
Processing --> GeoJSON
|
|
GeoJSON --> db[("Feature Database")]
|
|
db --> tileserv["Tile Server"]
|
|
end
|
|
subgraph j40["Justice40 Client"]
|
|
tileserv --> vl
|
|
ts["Tile Styling"] --> vl["Justice40 Visualization Library"]
|
|
vl --> fe["Justice40 Static Site Frontend"]
|
|
end
|
|
end
|
|
|
|
subgraph oc["Other Clients"]
|
|
tileserv -- API --> 3p["Third Party Apps"]
|
|
GeoJSON -- API --> 3p
|
|
db -- API --> 3p
|
|
end
|
|
|