diff --git a/docs/techdoc/overview/HOTComponentDiagram.odg b/docs/techdoc/overview/HOTComponentDiagram.odg new file mode 100644 index 0000000..cb37c8f Binary files /dev/null and b/docs/techdoc/overview/HOTComponentDiagram.odg differ diff --git a/docs/techdoc/overview/HOTComponentDiagram.png b/docs/techdoc/overview/HOTComponentDiagram.png new file mode 100644 index 0000000..e8ba090 Binary files /dev/null and b/docs/techdoc/overview/HOTComponentDiagram.png differ diff --git a/docs/techdoc/overview/HOTConceptualDiagram.odg b/docs/techdoc/overview/HOTConceptualDiagram.odg new file mode 100644 index 0000000..98bc4c6 Binary files /dev/null and b/docs/techdoc/overview/HOTConceptualDiagram.odg differ diff --git a/docs/techdoc/overview/HOTConceptualDiagram.png b/docs/techdoc/overview/HOTConceptualDiagram.png new file mode 100644 index 0000000..2ccffc2 Binary files /dev/null and b/docs/techdoc/overview/HOTConceptualDiagram.png differ diff --git a/docs/techdoc/overview/HOTInformationFlow.odg b/docs/techdoc/overview/HOTInformationFlow.odg new file mode 100644 index 0000000..057678c Binary files /dev/null and b/docs/techdoc/overview/HOTInformationFlow.odg differ diff --git a/docs/techdoc/overview/HOTInformationFlow.png b/docs/techdoc/overview/HOTInformationFlow.png new file mode 100644 index 0000000..5e90ad2 Binary files /dev/null and b/docs/techdoc/overview/HOTInformationFlow.png differ diff --git a/docs/techdoc/overview/HOTOverarchingBlockDiagram.odg b/docs/techdoc/overview/HOTOverarchingBlockDiagram.odg new file mode 100644 index 0000000..e96c04b Binary files /dev/null and b/docs/techdoc/overview/HOTOverarchingBlockDiagram.odg differ diff --git a/docs/techdoc/overview/HOTOverarchingBlockDiagram.png b/docs/techdoc/overview/HOTOverarchingBlockDiagram.png new file mode 100644 index 0000000..e5bef60 Binary files /dev/null and b/docs/techdoc/overview/HOTOverarchingBlockDiagram.png differ diff --git a/docs/techdoc/overview/HOTProcesses.odg b/docs/techdoc/overview/HOTProcesses.odg new file mode 100644 index 0000000..9c8df0b Binary files /dev/null and b/docs/techdoc/overview/HOTProcesses.odg differ diff --git a/docs/techdoc/overview/HOTProcesses.png b/docs/techdoc/overview/HOTProcesses.png new file mode 100644 index 0000000..cdaf1d5 Binary files /dev/null and b/docs/techdoc/overview/HOTProcesses.png differ diff --git a/docs/techdoc/overview/HOTSolutionUser.odg b/docs/techdoc/overview/HOTSolutionUser.odg new file mode 100644 index 0000000..c3d3e82 Binary files /dev/null and b/docs/techdoc/overview/HOTSolutionUser.odg differ diff --git a/docs/techdoc/overview/HOTSolutionUser.png b/docs/techdoc/overview/HOTSolutionUser.png new file mode 100644 index 0000000..118537b Binary files /dev/null and b/docs/techdoc/overview/HOTSolutionUser.png differ diff --git a/docs/techdoc/overview/HOT_SolutionUser.drawio.svg b/docs/techdoc/overview/HOT_SolutionUser.drawio.svg new file mode 100644 index 0000000..ce50d50 --- /dev/null +++ b/docs/techdoc/overview/HOT_SolutionUser.drawio.svg @@ -0,0 +1,4 @@ + + + +
Volunteers
Volunteers
Activation Team Member
Activation Team Member
  • Receive Disaster Notifications
  • Plan and Track Response
  • Launch Mapping Project
  • Highlight Mapping Area of Interest
Receive Disaster NotificationsPla...
Solution User View
HOTSM Architecture
18-Aug-2023
Solution User View...
Mapper
Mapper
  • Selects Tasks
  • Completes Tasks
  • Launch Map Editor
Selects TasksCompletes TasksLaunc...
Internal
Internal
External
External
Direct
Direct
Direct
Direct
Indirect
Indirect
Indirect
Indirect
Validator
Validator
  • Selects Tasks
  • Completes Tasks
  • Approves Maps
Selects TasksCompletes TasksAppro...
Partners Team
Partners Team
  • Engage Partners
  • Manage and Report on Donations
Engage PartnersManage and Report...
Engineering
Engineering
  • Build Tools
  • Support Tools
Build ToolsSupport Tools
Someone?
Someone?
  • Convert Data Between Formats
  • Export data to data sharing partners
Convert Data Between FormatsExpor...
Field Mapping Project Manager
Field Mapping Project Manager
  • Launch Mapping Project
  • Highlight Mapping Area of Interest
  • Split Tasks by Feature
  • Manually Adjust Task Sizes
Launch Mapping ProjectHighlight M...
Partners Red Cross, US Aid, etc. 
Partners Red Cross, US Aid, et...
  • Fund Programs
  • Extract Data
Fund ProgramsExtract Data
Anyone
Anyone
  • Extract Data
Extract Data
Field Mapper
Field Mapper
  • Uses QR Code to Load Task Assignment
  • Load Parameters into Mobile Mapping App
  • Map Roads and Buildings
  • Capture Building Information
Uses QR Code to Load Task Assignm...
Text is not SVG - cannot display
\ No newline at end of file diff --git a/docs/techdoc/overview/Makefile b/docs/techdoc/overview/Makefile new file mode 100644 index 0000000..2b7667a --- /dev/null +++ b/docs/techdoc/overview/Makefile @@ -0,0 +1,33 @@ + + +DRAW := $(wildcard *.odg) +PNGS := $(DRAW:.odg=.png) +DOCS := $(wildcard *.odt) +PDFS := $(DOCS:.odt=.pdf) + +# Automate the building of pngs and pdfs from the libreoffice draw +# source files, insted of having to commit both to git after +# any changes. +all: pngs pdfs + +pngs: $(PNGS) + +pdfs: $(PDFS) + +apidoc: + -@doxygen + +%.png: %.odg + @echo "Generating $@ file for use in Markdown files" + -libreoffice --draw --headless --convert-to png "$<" + # -@mv *Profile.png images/ + +%.pdf: %.odt + @echo "Generating $@ file for use in Markdown files" + -libreoffice --draw --headless --convert-to pdf "$<" + # -@mv *Profile.png images + +clean: + -$(RM) *.png *.pdf + +force: