From a118753e2575c48ff180b4813fdd1cd61ba06677 Mon Sep 17 00:00:00 2001 From: Virginia Dooley Date: Thu, 21 Sep 2023 12:28:06 +0100 Subject: [PATCH] WIP sopn process diagram --- ynr/apps/sopn_parsing/sopn_processing.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ynr/apps/sopn_parsing/sopn_processing.md diff --git a/ynr/apps/sopn_parsing/sopn_processing.md b/ynr/apps/sopn_parsing/sopn_processing.md new file mode 100644 index 000000000..a4f38c090 --- /dev/null +++ b/ynr/apps/sopn_parsing/sopn_processing.md @@ -0,0 +1,9 @@ +```mermaid +graph TD + A[Start] --> B[Process 1 Prepare the SOPN file for upload] + B --> C[Process 2 If the SOPN file is in an acceptable format, then extract the pages] + C --> D[Process 3 Once the pages are extracted, start page matching to ensure that any tables that are split across pages are matched correctly] + D --> E[Process 4 If the page matching is successful, then the relevant pages are combined into a single file and uploaded to the database] + E --> F[Process 5 Start table extraction and parsing] + G --> H[End] +```