A list of medical software or devices which are designed to be used with orthodontic data and collect or manipulate data that could be of interest to another software. This list focuses on the level of interoperability (the ability for the software to be able to connect with another software) that a specific software or device has.
This information is temporarily parked on Github, until it becomes a wikipedia article, which all interested parties can directly modify and correct and keep updated.
If you are vendor and find information on this repository to be unaccetable or incorrect, go ahead and submit a PR as described at the end of this document. We would like to ultimately publish this page on Wikipedia, s.t. vendors have direct access and can keep this up to date.
This repository maintains a structured list of orthodontic software products, their features, and interoperability levels. Data is stored in human-readable YAML format, and the system generates:
- HTML Website: A multipage, responsive site hosted on GitHub Pages for easy browsing, with custom CSS styling.
- MediaWiki File: A single file ready for upload to Wikipedia.
Each software entry is stored in its own file in the _software/ directory. Templating uses Jinja2 for modularity (layouts, includes), similar to Jekyll but lightweight.
- Nix: For managing the development environment. Install from nixos.org.
- Alternatively, ensure Python 3, Jinja2, PyYAML, and Pandoc are installed manually.
-
Clone the repository:
git clone https://github.com/yourusername/orthodontic-software-list.git cd orthodontic-software-list -
Enter the Nix shell (recommended):
nix-shell
This provides all necessary dependencies.
Run the build script to generate HTML and MediaWiki outputs:
python build.py- HTML Output: Generated in
_site/(multipage site). - Wiki Output:
wikipediaarticle.wiki(single file for Wikipedia).
-
Create or edit a file in
_software/(e.g.,newsoftware.md). -
Use YAML frontmatter for structured data:
--- developer: "Company Name" product: "Software Name" version: "" description: "Brief description of the software." dicom_import_filesystem: "Yes" dicom_import_network: "No" dicom_import_bulk: "Partial" dicom_export_filesystem: "Yes" dicom_export_network: "Yes (DIMSE)" dicom_export_bulk: "No" dicom_conformance: "Available at URL" hl7_fhir: "FHIR: Encounter, Appointments" i14y_friendly: "Yes" updated: "2025-01-18" reference: "Company website" --- # Software Name Additional markdown content if needed.
-
Rebuild with
python build.py.
- GitHub Pages: Automatic deployment via GitHub Actions (pushes to
gh-pagesbranch on pushes tomain). - Wikipedia: Upload
wikipediaarticle.wikito the relevant Wikipedia page.
_software/: YAML data files (one per software).templates/: Jinja2 templates for HTML and Wiki generation.original_article/: Original wiki page and extraction script (historical).build.py: Main build script.shell.nix: Nix environment configuration.output/: Generated outputs (Wiki file, not committed)._site/: Generated HTML site (not committed).
- Fork the repository.
- Add or update software data in
_software/. - Run
python build.pyand test outputs. - Submit a pull request.
For questions, open an issue on GitHub.