From 4b4800f04d0185c259154612f77dd5759dd094d0 Mon Sep 17 00:00:00 2001 From: Mike McCann Date: Tue, 10 Feb 2026 13:32:21 -0800 Subject: [PATCH 1/2] Replace ASCII data flow diagram with a Mermaid diagram. --- LRAUV_WORKFLOW.md | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/LRAUV_WORKFLOW.md b/LRAUV_WORKFLOW.md index 730ebda..e1f1300 100644 --- a/LRAUV_WORKFLOW.md +++ b/LRAUV_WORKFLOW.md @@ -2,7 +2,38 @@ The sequence of steps to process LRAUV data is as follows: - nc42netcdfs.py → combine.py → align.py → resample.py → archive.py → plot.py +```mermaid +flowchart LR + Z[(Original log
.nc4 file)] + A[nc42netcdfs.py] + B[(\_Group\_*
.nc files)] + C[combine.py] + D[(_combined.nc4)] + E[align.py] + F[(_align.nc4)] + G[resample.py] + H[(_nS.nc)] + I[archive.py] + J[(archived files)] + + Z --> A + A --> B + B --> C + C --> D + D --> E + E --> F + F --> G + G --> H + H --> I + I --> J + + style Z fill:#e1f5ff + style B fill:#e1f5ff + style D fill:#e1f5ff + style F fill:#e1f5ff + style H fill:#e1f5ff + style J fill:#e1f5ff +``` Details of each step are described in the respective scripts and in the description of output netCDF files below. The output file directory structure From 32fec6fea5228de76444034332b797cd0f0a9712 Mon Sep 17 00:00:00 2001 From: Mike McCann Date: Tue, 10 Feb 2026 15:02:54 -0800 Subject: [PATCH 2/2] Add /mbari/LRAUV directory. --- LRAUV_WORKFLOW.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LRAUV_WORKFLOW.md b/LRAUV_WORKFLOW.md index e1f1300..22a2e9e 100644 --- a/LRAUV_WORKFLOW.md +++ b/LRAUV_WORKFLOW.md @@ -4,7 +4,7 @@ The sequence of steps to process LRAUV data is as follows: ```mermaid flowchart LR - Z[(Original log
.nc4 file)] + Z[(Original log
.nc4 file from
/mbari/LRAUV/)] A[nc42netcdfs.py] B[(\_Group\_*
.nc files)] C[combine.py] @@ -14,7 +14,7 @@ flowchart LR G[resample.py] H[(_nS.nc)] I[archive.py] - J[(archived files)] + J[(archived files in
/mbari/LRAUV/)] Z --> A A --> B