Skip to content

JasonSKK/construction-site-data-sonvis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Construction site data SonVis

Vehicle data: “Synthetical data based on measurements from the research project Störningsfri Stad, Linköpings University, funded by VINNOVA.”

Sound, particle, temperature, humidity data: “Data from measurements from the research project Testbed Kungsgatan, Linköping University, funded by Norrköping municipality´s fund for Research and Development”

./const_sonvis.png

Dependencies

  • SuperCollider (sclang has to be in $PATH or to be an alias). Alternatively you can hard-code the path in the ../src/interface.py line 320 e.g.
'/Applications/SuperCollider.app/Contents/MacOS/sclang sonification.scd', shell=True,
  • SuperCollider Extensions:
  • Python 3.8.5
  • pip ( package manager) curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python3 get-pip.py
  • matplotlib pip install matplotlib
  • pandas pip install pandas
  • bokeh pip install bokeh
  • panel pip install panel
  • python-osc pip install python-osc
  • python-dateutil pip install python-dateutil

To run the project: cd to the src directory and do python3 interface.py

Note: I have alias-ed python3 to python command. So if your python --version shows python2 then it is needed to change the min-max function from python to python3 in the sonification.scd ../src/sonification.scd file (line 37)

com =  ("python3"+(~path+/+"minmax.py").standardizePath+(~path+/+file)+col).unixCmdGetStdOutLines;

Note: Make sure that “which python3”.unixCmdGetStdOutLines shows the same path as in shell. Otherwise, change line 37 in the ../src/sonification.scd. Hard-code the absolute python3 path. e.g.

("/usr/local/anaconda3/bin/python3"+(~path+/+"minmax.py").standardizePath+(~path+/+file)+col).unixCmdGetStdOutLines;
  • All used Python packages (for troubleshooting in case I forgot a dependency):
import datetime as dt
import panel as pn
import param  # for FormatDateRangeSlider
import subprocess  # to run SC
import threading  # stop iteration cycle when kill button pressed
#from pythonosc import udp_client
from bokeh.models import Slider, CheckboxGroup, CustomJS, Label
import os
import numpy as np
import pandas as pd
import time
import datetime
from dateutil import parser
from pythonosc import udp_client
import subprocess
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import random
import sys
from bokeh.plotting import figure
from pythonosc.osc_server import AsyncIOOSCUDPServer
from pythonosc.dispatcher import Dispatcher
import asyncio

About

LiU Spring 2022

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published