Construction enginner need programing guidance

This page summarizes the projects mentioned and recommended in the original post on /r/django

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • django-with-microk8s

    A simple demonstration of how a django-based website can be set up for local development with microk8s

  • You have two possible directions to go with your client side in-browser visualizations if you're going to build a web app yourself instead of using Dash (which I've never used and looks $$$$$). What you choose will depend on the use case and your desired skill set. You can either render images / html server side and then display it in the browser, or you can pipe all of the data through to the front end and then use a javascript framework to render the visualizations. Given you have already created visualizations using plotly, I suspect the server side render-and-display approach is the way to go for you. As a side note, if it takes a while to process the .ifc files, you may need to make the whole process asynchronous, with upload/display/download steps on different pages, and some kind of task queue in the background (in which case I recommend celery). I've put together a github repo with a basic django environment with the intention to help people who are new to django get started, feel free to try it and let me know whether it's helpful: https://github.com/bluemoo/django-with-microk8s

  • django-chartjs

    Django Class Based Views to generate Ajax charts js parameters.

  • There is also kind of a third way, which might be a lot less work for you. Things like Django ChartJS work inside Django to render charts on the browser. It's basically a wrapper around that client-side work, so you don't have to learn much JavaScript, but won't end up being as flexible.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • Chart.js

    Simple HTML5 Charts using the <canvas> tag

  • Most professional projects would take a client-side approach, because you get a lot better interactivity with it and because it takes load off of the server and puts it on the client, where it's "free" compute time. If you go with a client-side approach, you could use things like ChartJS or AG-Grid. I don't know what's really considered best, because I don't do many data visualization projects.

  • ag-Grid

    The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript.

  • Most professional projects would take a client-side approach, because you get a lot better interactivity with it and because it takes load off of the server and puts it on the client, where it's "free" compute time. If you go with a client-side approach, you could use things like ChartJS or AG-Grid. I don't know what's really considered best, because I don't do many data visualization projects.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts