Commit 1e805ad6 authored by Jonathan  Minz's avatar Jonathan Minz
Browse files

Edit CF-Compliance-Checker.md

parent 8ddaa2db
Loading
Loading
Loading
Loading
+11 −10
Original line number Diff line number Diff line
@@ -21,17 +21,18 @@ It uses the [CF-Checker](https://github.com/cedadev/cf-checker) utility (`cfchec

```mermaid
flowchart TD
    A[Parent Directory] --> B[Find NetCDF files in each subdir]
    B -->|Default| C[First file only]
    B -->|--all flag| C2[All files]
    C --> D[Run cfchecks on each file]
    A["Parent Directory"] --> B["Find NetCDF files in each subdir"]
    B -->|Default| C["First file only"]
    B -->|--all flag| C2["All files"]
    C --> D["Run cfchecks on each file"]
    C2 --> D
    D --> E[Parse CF-Checker summary (Errors, Warnings, Info)]
    E --> F[cf_compliance_details.log (per-file details)]
    E --> G[cf_compliance_summary.log (summary table, incl. Folder column)]
    G --> H[Optional CSV Export (timestamped)]
    G --> I[Optional Excel Export (timestamped)]
```    
    D --> E["Parse CF-Checker summary: Errors, Warnings, Info"]
    E --> F["cf_compliance_details.log (per-file details)"]
    E --> G["cf_compliance_summary.log (summary table with Folder column)"]
    G --> H["Optional CSV Export (timestamped)"]
    G --> I["Optional Excel Export (timestamped)"]

   


---